run_tests_util_test.py 23.1 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
#
# Copyright 2009 Google Inc. All Rights Reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
#     * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
#     * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

31
"""Tests for run_tests_util.py test runner script."""
32
33
34
35

__author__ = 'vladl@google.com (Vlad Losev)'

import os
36
37
import re
import sets
38
39
import unittest

40
import run_tests_util
41

42

43
44
45
GTEST_DBG_DIR = 'scons/build/dbg/gtest/scons'
GTEST_OPT_DIR = 'scons/build/opt/gtest/scons'
GTEST_OTHER_DIR = 'scons/build/other/gtest/scons'
46
47


48
49
50
def AddExeExtension(path):
  """Appends .exe to the path on Windows or Cygwin."""

51
  if run_tests_util.IS_WINDOWS or run_tests_util.IS_CYGWIN:
52
53
54
55
    return path + '.exe'
  else:
    return path

56
57
58
59
60
61
62
63
64

class FakePath(object):
  """A fake os.path module for testing."""

  def __init__(self, current_dir=os.getcwd(), known_paths=None):
    self.current_dir = current_dir
    self.tree = {}
    self.path_separator = os.sep

65
66
    # known_paths contains either absolute or relative paths. Relative paths
    # are absolutized with self.current_dir.
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
    if known_paths:
      self._AddPaths(known_paths)

  def _AddPath(self, path):
    ends_with_slash = path.endswith('/')
    path = self.abspath(path)
    if ends_with_slash:
      path += self.path_separator
    name_list = path.split(self.path_separator)
    tree = self.tree
    for name in name_list[:-1]:
      if not name:
        continue
      if name in tree:
        tree = tree[name]
      else:
        tree[name] = {}
        tree = tree[name]

    name = name_list[-1]
    if name:
      if name in tree:
        assert tree[name] == 1
      else:
        tree[name] = 1

  def _AddPaths(self, paths):
    for path in paths:
      self._AddPath(path)

  def PathElement(self, path):
    """Returns an internal representation of directory tree entry for path."""
    tree = self.tree
    name_list = self.abspath(path).split(self.path_separator)
    for name in name_list:
      if not name:
        continue
      tree = tree.get(name, None)
      if tree is None:
        break

    return tree

110
111
  # Silences pylint warning about using standard names.
  # pylint: disable-msg=C6409
112
113
114
  def normpath(self, path):
    return os.path.normpath(path)

115
  def abspath(self, path):
116
    return self.normpath(os.path.join(self.current_dir, path))
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143

  def isfile(self, path):
    return self.PathElement(self.abspath(path)) == 1

  def isdir(self, path):
    return type(self.PathElement(self.abspath(path))) == type(dict())

  def basename(self, path):
    return os.path.basename(path)

  def dirname(self, path):
    return os.path.dirname(path)

  def join(self, *kargs):
    return os.path.join(*kargs)


class FakeOs(object):
  """A fake os module for testing."""
  P_WAIT = os.P_WAIT

  def __init__(self, fake_path_module):
    self.path = fake_path_module

    # Some methods/attributes are delegated to the real os module.
    self.environ = os.environ

144
  # pylint: disable-msg=C6409
145
146
147
148
  def listdir(self, path):
    assert self.path.isdir(path)
    return self.path.PathElement(path).iterkeys()

149
  def spawnv(self, wait, executable, *kargs):
150
151
152
153
154
155
156
    assert wait == FakeOs.P_WAIT
    return self.spawn_impl(executable, kargs)


class GetTestsToRunTest(unittest.TestCase):
  """Exercises TestRunner.GetTestsToRun."""

157
158
159
160
161
162
163
  def NormalizeGetTestsToRunResults(self, results):
    """Normalizes path data returned from GetTestsToRun for comparison."""

    def NormalizePythonTestPair(pair):
      """Normalizes path data in the (directory, python_script) pair."""

      return (os.path.normpath(pair[0]), os.path.normpath(pair[1]))
164

165
166
    def NormalizeBinaryTestPair(pair):
      """Normalizes path data in the (directory, binary_executable) pair."""
167

168
      directory, executable = map(os.path.normpath, pair)
169

170
171
172
      # On Windows and Cygwin, the test file names have the .exe extension, but
      # they can be invoked either by name or by name+extension. Our test must
      # accommodate both situations.
173
      if run_tests_util.IS_WINDOWS or run_tests_util.IS_CYGWIN:
174
175
        executable = re.sub(r'\.exe$', '', executable)
      return (directory, executable)
176

177
178
179
180
181
182
183
184
185
186
    python_tests = sets.Set(map(NormalizePythonTestPair, results[0]))
    binary_tests = sets.Set(map(NormalizeBinaryTestPair, results[1]))
    return (python_tests, binary_tests)

  def AssertResultsEqual(self, results, expected):
    """Asserts results returned by GetTestsToRun equal to expected results."""

    self.assertEqual(self.NormalizeGetTestsToRunResults(results),
                     self.NormalizeGetTestsToRunResults(expected),
                     'Incorrect set of tests returned:\n%s\nexpected:\n%s' %
187
188
189
190
                     (results, expected))

  def setUp(self):
    self.fake_os = FakeOs(FakePath(
191
        current_dir=os.path.abspath(os.path.dirname(run_tests_util.__file__)),
192
193
194
        known_paths=[AddExeExtension(GTEST_DBG_DIR + '/gtest_unittest'),
                     AddExeExtension(GTEST_OPT_DIR + '/gtest_unittest'),
                     'test/gtest_color_test.py']))
195
    self.fake_configurations = ['dbg', 'opt']
196
197
198
    self.test_runner = run_tests_util.TestRunner(script_dir='.',
                                                 injected_os=self.fake_os,
                                                 injected_subprocess=None)
199
200
201
202
203
204
205
206
207
208
209
210

  def testBinaryTestsOnly(self):
    """Exercises GetTestsToRun with parameters designating binary tests only."""

    # A default build.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['gtest_unittest'],
            '',
            False,
            available_configurations=self.fake_configurations),
        ([],
211
         [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]))
212
213
214
215

    # An explicitly specified directory.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
216
            [GTEST_DBG_DIR, 'gtest_unittest'],
217
218
219
220
            '',
            False,
            available_configurations=self.fake_configurations),
        ([],
221
         [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]))
222
223
224
225
226
227
228
229
230

    # A particular configuration.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['gtest_unittest'],
            'other',
            False,
            available_configurations=self.fake_configurations),
        ([],
231
         [(GTEST_OTHER_DIR, GTEST_OTHER_DIR + '/gtest_unittest')]))
232
233
234
235
236
237
238
239
240

    # All available configurations
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['gtest_unittest'],
            'all',
            False,
            available_configurations=self.fake_configurations),
        ([],
241
242
         [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest'),
          (GTEST_OPT_DIR, GTEST_OPT_DIR + '/gtest_unittest')]))
243
244
245
246
247
248
249
250
251

    # All built configurations (unbuilt don't cause failure).
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['gtest_unittest'],
            '',
            True,
            available_configurations=self.fake_configurations + ['unbuilt']),
        ([],
252
253
         [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest'),
          (GTEST_OPT_DIR, GTEST_OPT_DIR + '/gtest_unittest')]))
254
255
256
257

    # A combination of an explicit directory and a configuration.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
258
            [GTEST_DBG_DIR, 'gtest_unittest'],
259
260
261
262
            'opt',
            False,
            available_configurations=self.fake_configurations),
        ([],
263
264
         [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest'),
          (GTEST_OPT_DIR, GTEST_OPT_DIR + '/gtest_unittest')]))
265
266
267
268

    # Same test specified in an explicit directory and via a configuration.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
269
            [GTEST_DBG_DIR, 'gtest_unittest'],
270
271
272
273
            'dbg',
            False,
            available_configurations=self.fake_configurations),
        ([],
274
         [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]))
275
276
277
278

    # All built configurations + explicit directory + explicit configuration.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
279
            [GTEST_DBG_DIR, 'gtest_unittest'],
280
281
282
283
            'opt',
            True,
            available_configurations=self.fake_configurations),
        ([],
284
285
         [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest'),
          (GTEST_OPT_DIR, GTEST_OPT_DIR + '/gtest_unittest')]))
286
287
288
289
290
291
292
293
294
295
296

  def testPythonTestsOnly(self):
    """Exercises GetTestsToRun with parameters designating Python tests only."""

    # A default build.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['gtest_color_test.py'],
            '',
            False,
            available_configurations=self.fake_configurations),
297
        ([(GTEST_DBG_DIR, 'test/gtest_color_test.py')],
298
299
300
301
302
         []))

    # An explicitly specified directory.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
303
            [GTEST_DBG_DIR, 'test/gtest_color_test.py'],
304
305
306
            '',
            False,
            available_configurations=self.fake_configurations),
307
        ([(GTEST_DBG_DIR, 'test/gtest_color_test.py')],
308
309
310
311
312
313
314
315
316
         []))

    # A particular configuration.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['gtest_color_test.py'],
            'other',
            False,
            available_configurations=self.fake_configurations),
317
        ([(GTEST_OTHER_DIR, 'test/gtest_color_test.py')],
318
319
320
321
322
323
324
325
326
         []))

    # All available configurations
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['test/gtest_color_test.py'],
            'all',
            False,
            available_configurations=self.fake_configurations),
327
328
        ([(GTEST_DBG_DIR, 'test/gtest_color_test.py'),
          (GTEST_OPT_DIR, 'test/gtest_color_test.py')],
329
330
331
332
333
334
335
336
337
         []))

    # All built configurations (unbuilt don't cause failure).
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['gtest_color_test.py'],
            '',
            True,
            available_configurations=self.fake_configurations + ['unbuilt']),
338
339
        ([(GTEST_DBG_DIR, 'test/gtest_color_test.py'),
          (GTEST_OPT_DIR, 'test/gtest_color_test.py')],
340
341
342
343
344
         []))

    # A combination of an explicit directory and a configuration.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
345
            [GTEST_DBG_DIR, 'gtest_color_test.py'],
346
347
348
            'opt',
            False,
            available_configurations=self.fake_configurations),
349
350
        ([(GTEST_DBG_DIR, 'test/gtest_color_test.py'),
          (GTEST_OPT_DIR, 'test/gtest_color_test.py')],
351
352
353
354
355
         []))

    # Same test specified in an explicit directory and via a configuration.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
356
            [GTEST_DBG_DIR, 'gtest_color_test.py'],
357
358
359
            'dbg',
            False,
            available_configurations=self.fake_configurations),
360
        ([(GTEST_DBG_DIR, 'test/gtest_color_test.py')],
361
362
363
364
365
         []))

    # All built configurations + explicit directory + explicit configuration.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
366
            [GTEST_DBG_DIR, 'gtest_color_test.py'],
367
368
369
            'opt',
            True,
            available_configurations=self.fake_configurations),
370
371
        ([(GTEST_DBG_DIR, 'test/gtest_color_test.py'),
          (GTEST_OPT_DIR, 'test/gtest_color_test.py')],
372
373
374
375
376
377
378
379
380
381
382
383
384
385
         []))

  def testCombinationOfBinaryAndPythonTests(self):
    """Exercises GetTestsToRun with mixed binary/Python tests."""

    # Use only default configuration for this test.

    # Neither binary nor Python tests are specified so find all.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            [],
            '',
            False,
            available_configurations=self.fake_configurations),
386
387
        ([(GTEST_DBG_DIR, 'test/gtest_color_test.py')],
         [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]))
388
389
390
391
392
393
394
395

    # Specifying both binary and Python tests.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['gtest_unittest', 'gtest_color_test.py'],
            '',
            False,
            available_configurations=self.fake_configurations),
396
397
        ([(GTEST_DBG_DIR, 'test/gtest_color_test.py')],
         [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]))
398
399
400
401
402
403
404
405
406

    # Specifying binary tests suppresses Python tests.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['gtest_unittest'],
            '',
            False,
            available_configurations=self.fake_configurations),
        ([],
407
         [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]))
408
409
410
411
412
413
414
415

   # Specifying Python tests suppresses binary tests.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['gtest_color_test.py'],
            '',
            False,
            available_configurations=self.fake_configurations),
416
        ([(GTEST_DBG_DIR, 'test/gtest_color_test.py')],
417
418
419
420
421
422
         []))

  def testIgnoresNonTestFiles(self):
    """Verifies that GetTestsToRun ignores non-test files in the filesystem."""

    self.fake_os = FakeOs(FakePath(
423
        current_dir=os.path.abspath(os.path.dirname(run_tests_util.__file__)),
424
425
        known_paths=[AddExeExtension(GTEST_DBG_DIR + '/gtest_nontest'),
                     'test/']))
426
427
428
    self.test_runner = run_tests_util.TestRunner(script_dir='.',
                                                 injected_os=self.fake_os,
                                                 injected_subprocess=None)
429
430
431
432
433
434
435
436
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            [],
            '',
            True,
            available_configurations=self.fake_configurations),
        ([], []))

437
438
439
440
441
442
443
  def testWorksFromDifferentDir(self):
    """Exercises GetTestsToRun from a directory different from run_test.py's."""

    # Here we simulate an test script in directory /d/ called from the
    # directory /a/b/c/.
    self.fake_os = FakeOs(FakePath(
        current_dir=os.path.abspath('/a/b/c'),
444
445
        known_paths=[
            '/a/b/c/',
446
447
            AddExeExtension('/d/' + GTEST_DBG_DIR + '/gtest_unittest'),
            AddExeExtension('/d/' + GTEST_OPT_DIR + '/gtest_unittest'),
448
            '/d/test/gtest_color_test.py']))
449
    self.fake_configurations = ['dbg', 'opt']
450
451
452
    self.test_runner = run_tests_util.TestRunner(script_dir='/d/',
                                                 injected_os=self.fake_os,
                                                 injected_subprocess=None)
453
454
455
456
457
458
459
460
    # A binary test.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['gtest_unittest'],
            '',
            False,
            available_configurations=self.fake_configurations),
        ([],
461
         [('/d/' + GTEST_DBG_DIR, '/d/' + GTEST_DBG_DIR + '/gtest_unittest')]))
462
463
464
465
466
467
468
469

    # A Python test.
    self.AssertResultsEqual(
        self.test_runner.GetTestsToRun(
            ['gtest_color_test.py'],
            '',
            False,
            available_configurations=self.fake_configurations),
470
        ([('/d/' + GTEST_DBG_DIR, '/d/test/gtest_color_test.py')], []))
471

472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
  def testNonTestBinary(self):
    """Exercises GetTestsToRun with a non-test parameter."""

    self.assert_(
        not self.test_runner.GetTestsToRun(
            ['gtest_unittest_not_really'],
            '',
            False,
            available_configurations=self.fake_configurations))

  def testNonExistingPythonTest(self):
    """Exercises GetTestsToRun with a non-existent Python test parameter."""

    self.assert_(
        not self.test_runner.GetTestsToRun(
            ['nonexistent_test.py'],
            '',
            False,
            available_configurations=self.fake_configurations))

492
493
  if run_tests_util.IS_WINDOWS or run_tests_util.IS_CYGWIN:

494
495
496
497
    def testDoesNotPickNonExeFilesOnWindows(self):
      """Verifies that GetTestsToRun does not find _test files on Windows."""

      self.fake_os = FakeOs(FakePath(
498
          current_dir=os.path.abspath(os.path.dirname(run_tests_util.__file__)),
499
          known_paths=['/d/' + GTEST_DBG_DIR + '/gtest_test', 'test/']))
500
501
502
      self.test_runner = run_tests_util.TestRunner(script_dir='.',
                                                   injected_os=self.fake_os,
                                                   injected_subprocess=None)
503
504
505
506
507
508
509
510
      self.AssertResultsEqual(
          self.test_runner.GetTestsToRun(
              [],
              '',
              True,
              available_configurations=self.fake_configurations),
          ([], []))

511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528

class RunTestsTest(unittest.TestCase):
  """Exercises TestRunner.RunTests."""

  def SpawnSuccess(self, unused_executable, unused_argv):
    """Fakes test success by returning 0 as an exit code."""

    self.num_spawn_calls += 1
    return 0

  def SpawnFailure(self, unused_executable, unused_argv):
    """Fakes test success by returning 1 as an exit code."""

    self.num_spawn_calls += 1
    return 1

  def setUp(self):
    self.fake_os = FakeOs(FakePath(
529
        current_dir=os.path.abspath(os.path.dirname(run_tests_util.__file__)),
530
        known_paths=[
531
532
            AddExeExtension(GTEST_DBG_DIR + '/gtest_unittest'),
            AddExeExtension(GTEST_OPT_DIR + '/gtest_unittest'),
533
            'test/gtest_color_test.py']))
534
    self.fake_configurations = ['dbg', 'opt']
535
536
537
538
    self.test_runner = run_tests_util.TestRunner(
        script_dir=os.path.dirname(__file__) or '.',
        injected_os=self.fake_os,
        injected_subprocess=None)
539
540
541
542
543
544
545
546
    self.num_spawn_calls = 0  # A number of calls to spawn.

  def testRunPythonTestSuccess(self):
    """Exercises RunTests to handle a Python test success."""

    self.fake_os.spawn_impl = self.SpawnSuccess
    self.assertEqual(
        self.test_runner.RunTests(
547
            [(GTEST_DBG_DIR, 'test/gtest_color_test.py')],
548
549
550
551
552
553
554
555
556
557
558
            []),
        0)
    self.assertEqual(self.num_spawn_calls, 1)

  def testRunBinaryTestSuccess(self):
    """Exercises RunTests to handle a binary test success."""

    self.fake_os.spawn_impl = self.SpawnSuccess
    self.assertEqual(
        self.test_runner.RunTests(
            [],
559
            [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]),
560
561
562
563
564
565
566
567
568
        0)
    self.assertEqual(self.num_spawn_calls, 1)

  def testRunPythonTestFauilure(self):
    """Exercises RunTests to handle a Python test failure."""

    self.fake_os.spawn_impl = self.SpawnFailure
    self.assertEqual(
        self.test_runner.RunTests(
569
            [(GTEST_DBG_DIR, 'test/gtest_color_test.py')],
570
571
572
573
574
575
576
577
578
579
580
            []),
        1)
    self.assertEqual(self.num_spawn_calls, 1)

  def testRunBinaryTestFailure(self):
    """Exercises RunTests to handle a binary test failure."""

    self.fake_os.spawn_impl = self.SpawnFailure
    self.assertEqual(
        self.test_runner.RunTests(
            [],
581
            [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]),
582
583
584
585
586
587
588
589
590
        1)
    self.assertEqual(self.num_spawn_calls, 1)

  def testCombinedTestSuccess(self):
    """Exercises RunTests to handle a success of both Python and binary test."""

    self.fake_os.spawn_impl = self.SpawnSuccess
    self.assertEqual(
        self.test_runner.RunTests(
591
592
            [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')],
            [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]),
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
        0)
    self.assertEqual(self.num_spawn_calls, 2)

  def testCombinedTestSuccessAndFailure(self):
    """Exercises RunTests to handle a success of both Python and binary test."""

    def SpawnImpl(executable, argv):
      self.num_spawn_calls += 1
      # Simulates failure of a Python test and success of a binary test.
      if '.py' in executable or '.py' in argv[0]:
        return 1
      else:
        return 0

    self.fake_os.spawn_impl = SpawnImpl
    self.assertEqual(
        self.test_runner.RunTests(
610
611
            [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')],
            [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]),
612
613
614
615
        0)
    self.assertEqual(self.num_spawn_calls, 2)


616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
class ParseArgsTest(unittest.TestCase):
  """Exercises ParseArgs."""

  def testNoOptions(self):
    options, args = run_tests_util.ParseArgs('gtest', argv=['script.py'])
    self.assertEqual(args, ['script.py'])
    self.assert_(options.configurations is None)
    self.assertFalse(options.built_configurations)

  def testOptionC(self):
    options, args = run_tests_util.ParseArgs(
        'gtest', argv=['script.py', '-c', 'dbg'])
    self.assertEqual(args, ['script.py'])
    self.assertEqual(options.configurations, 'dbg')
    self.assertFalse(options.built_configurations)

  def testOptionA(self):
    options, args = run_tests_util.ParseArgs('gtest', argv=['script.py', '-a'])
    self.assertEqual(args, ['script.py'])
    self.assertEqual(options.configurations, 'all')
    self.assertFalse(options.built_configurations)

  def testOptionB(self):
    options, args = run_tests_util.ParseArgs('gtest', argv=['script.py', '-b'])
    self.assertEqual(args, ['script.py'])
    self.assert_(options.configurations is None)
    self.assertTrue(options.built_configurations)

  def testOptionCAndOptionB(self):
    options, args = run_tests_util.ParseArgs(
        'gtest', argv=['script.py', '-c', 'dbg', '-b'])
    self.assertEqual(args, ['script.py'])
    self.assertEqual(options.configurations, 'dbg')
    self.assertTrue(options.built_configurations)

  def testOptionH(self):
    help_called = [False]

    # Suppresses lint warning on unused arguments.  These arguments are
    # required by optparse, even though they are unused.
    # pylint: disable-msg=W0613
    def VerifyHelp(option, opt, value, parser):
      help_called[0] = True

    # Verifies that -h causes the help callback to be called.
    help_called[0] = False
    _, args = run_tests_util.ParseArgs(
        'gtest', argv=['script.py', '-h'], help_callback=VerifyHelp)
    self.assertEqual(args, ['script.py'])
    self.assertTrue(help_called[0])

    # Verifies that --help causes the help callback to be called.
    help_called[0] = False
    _, args = run_tests_util.ParseArgs(
        'gtest', argv=['script.py', '--help'], help_callback=VerifyHelp)
    self.assertEqual(args, ['script.py'])
    self.assertTrue(help_called[0])


675
676
if __name__ == '__main__':
  unittest.main()