~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_selftest.py

  • Committer: Marius Kruger
  • Date: 2007-06-27 18:48:10 UTC
  • mfrom: (2557 +trunk)
  • mto: (2605.1.1 rm-renamed)
  • mto: This revision was merged to the branch mainline in revision 2609.
  • Revision ID: marius.kruger@enerweb.co.za-20070627184810-4jq1y5f20xafow9w
Merge with bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 Canonical Ltd
 
1
# Copyright (C) 2005, 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
34
34
                          TestUIFactory,
35
35
                          TestSkipped,
36
36
                          )
 
37
from bzrlib.symbol_versioning import (
 
38
    zero_eighteen,
 
39
    )
37
40
from bzrlib.tests.blackbox import ExternalBase
38
41
 
39
42
 
73
76
        TestCaseWithMemoryTransport.TEST_ROOT = None
74
77
        try:
75
78
            TestOptions.current_test = "test_transport_set_to_sftp"
76
 
            stdout = self.capture('selftest --transport=sftp test_transport_set_to_sftp')
77
 
            
 
79
            stdout = self.run_bzr(
 
80
                'selftest --transport=sftp test_transport_set_to_sftp')[0]
78
81
            self.assertContainsRe(stdout, 'Ran 1 test')
79
82
            self.assertEqual(old_transport, bzrlib.tests.default_transport)
80
83
 
81
84
            TestOptions.current_test = "test_transport_set_to_memory"
82
 
            stdout = self.capture('selftest --transport=memory test_transport_set_to_memory')
 
85
            stdout = self.run_bzr(
 
86
                'selftest --transport=memory test_transport_set_to_memory')[0]
83
87
            self.assertContainsRe(stdout, 'Ran 1 test')
84
88
            self.assertEqual(old_transport, bzrlib.tests.default_transport)
85
89
        finally:
90
94
 
91
95
class TestRunBzr(ExternalBase):
92
96
 
93
 
    def run_bzr_captured(self, argv, retcode=0, encoding=None, stdin=None,
 
97
    def _run_bzr_core(self, argv, retcode=0, encoding=None, stdin=None,
94
98
                         working_dir=None):
95
 
        """Override run_bzr_captured to test how it is invoked by run_bzr.
96
 
 
97
 
        We test how run_bzr_captured actually invokes bzr in another location.
 
99
        """Override _run_bzr_core to test how it is invoked by run_bzr.
 
100
 
 
101
        Attempts to run bzr from inside this class don't actually run it.
 
102
 
 
103
        We test how run_bzr actually invokes bzr in another location.
98
104
        Here we only need to test that it is run_bzr passes the right
99
 
        parameters to run_bzr_captured.
 
105
        parameters to run_bzr.
100
106
        """
101
 
        self.argv = argv
 
107
        self.argv = list(argv)
102
108
        self.retcode = retcode
103
109
        self.encoding = encoding
104
110
        self.stdin = stdin
106
112
        return '', ''
107
113
 
108
114
    def test_args(self):
109
 
        """Test that run_bzr passes args correctly to run_bzr_captured"""
 
115
        """Test that run_bzr passes args correctly to _run_bzr_core"""
 
116
        ## self.callDeprecated(
 
117
        ##         ['passing varargs to run_bzr was deprecated in version 0.18.'],
 
118
        ##         self.run_bzr,
 
119
        ##         'arg1', 'arg2', 'arg3', retcode=1)
110
120
        self.run_bzr('arg1', 'arg2', 'arg3', retcode=1)
111
 
        self.assertEqual(('arg1', 'arg2', 'arg3'), self.argv)
 
121
        self.assertEqual(['arg1', 'arg2', 'arg3'], self.argv)
112
122
 
113
123
    def test_encoding(self):
114
 
        """Test that run_bzr passes encoding to run_bzr_captured"""
115
 
        self.run_bzr('foo', 'bar')
 
124
        """Test that run_bzr passes encoding to _run_bzr_core"""
 
125
        self.run_bzr('foo bar')
116
126
        self.assertEqual(None, self.encoding)
117
 
        self.assertEqual(('foo', 'bar'), self.argv)
 
127
        self.assertEqual(['foo', 'bar'], self.argv)
118
128
 
119
 
        self.run_bzr('foo', 'bar', encoding='baz')
 
129
        self.run_bzr('foo bar', encoding='baz')
120
130
        self.assertEqual('baz', self.encoding)
121
 
        self.assertEqual(('foo', 'bar'), self.argv)
 
131
        self.assertEqual(['foo', 'bar'], self.argv)
122
132
 
123
133
    def test_retcode(self):
124
 
        """Test that run_bzr passes retcode to run_bzr_captured"""
 
134
        """Test that run_bzr passes retcode to _run_bzr_core"""
125
135
        # Default is retcode == 0
126
 
        self.run_bzr('foo', 'bar')
 
136
        self.run_bzr('foo bar')
127
137
        self.assertEqual(0, self.retcode)
128
 
        self.assertEqual(('foo', 'bar'), self.argv)
 
138
        self.assertEqual(['foo', 'bar'], self.argv)
129
139
 
130
 
        self.run_bzr('foo', 'bar', retcode=1)
 
140
        self.run_bzr('foo bar', retcode=1)
131
141
        self.assertEqual(1, self.retcode)
132
 
        self.assertEqual(('foo', 'bar'), self.argv)
 
142
        self.assertEqual(['foo', 'bar'], self.argv)
133
143
 
134
 
        self.run_bzr('foo', 'bar', retcode=None)
 
144
        self.run_bzr('foo bar', retcode=None)
135
145
        self.assertEqual(None, self.retcode)
136
 
        self.assertEqual(('foo', 'bar'), self.argv)
 
146
        self.assertEqual(['foo', 'bar'], self.argv)
137
147
 
138
 
        self.run_bzr('foo', 'bar', retcode=3)
 
148
        self.run_bzr(['foo', 'bar'], retcode=3)
139
149
        self.assertEqual(3, self.retcode)
140
 
        self.assertEqual(('foo', 'bar'), self.argv)
 
150
        self.assertEqual(['foo', 'bar'], self.argv)
141
151
 
142
152
    def test_stdin(self):
143
153
        # test that the stdin keyword to run_bzr is passed through to
144
 
        # run_bzr_captured as-is. We do this by overriding
145
 
        # run_bzr_captured in this class, and then calling run_bzr,
146
 
        # which is a convenience function for run_bzr_captured, so 
 
154
        # _run_bzr_core as-is. We do this by overriding
 
155
        # _run_bzr_core in this class, and then calling run_bzr,
 
156
        # which is a convenience function for _run_bzr_core, so 
147
157
        # should invoke it.
148
 
        self.run_bzr('foo', 'bar', stdin='gam')
 
158
        self.run_bzr('foo bar', stdin='gam')
149
159
        self.assertEqual('gam', self.stdin)
150
 
        self.assertEqual(('foo', 'bar'), self.argv)
 
160
        self.assertEqual(['foo', 'bar'], self.argv)
151
161
 
152
 
        self.run_bzr('foo', 'bar', stdin='zippy')
 
162
        self.run_bzr('foo bar', stdin='zippy')
153
163
        self.assertEqual('zippy', self.stdin)
154
 
        self.assertEqual(('foo', 'bar'), self.argv)
 
164
        self.assertEqual(['foo', 'bar'], self.argv)
155
165
 
156
166
    def test_working_dir(self):
157
 
        """Test that run_bzr passes working_dir to run_bzr_captured"""
158
 
        self.run_bzr('foo', 'bar')
 
167
        """Test that run_bzr passes working_dir to _run_bzr_core"""
 
168
        self.run_bzr('foo bar')
159
169
        self.assertEqual(None, self.working_dir)
160
 
        self.assertEqual(('foo', 'bar'), self.argv)
 
170
        self.assertEqual(['foo', 'bar'], self.argv)
161
171
 
162
 
        self.run_bzr('foo', 'bar', working_dir='baz')
 
172
        self.run_bzr('foo bar', working_dir='baz')
163
173
        self.assertEqual('baz', self.working_dir)
164
 
        self.assertEqual(('foo', 'bar'), self.argv)
 
174
        self.assertEqual(['foo', 'bar'], self.argv)
165
175
 
166
176
 
167
177
class TestBenchmarkTests(TestCaseWithTransport):
173
183
        old_root = TestCaseWithMemoryTransport.TEST_ROOT
174
184
        try:
175
185
            TestCaseWithMemoryTransport.TEST_ROOT = None
176
 
            out, err = self.run_bzr('selftest', '--benchmark', 'workingtree_implementations')
 
186
            out, err = self.run_bzr(['selftest', '--benchmark',
 
187
                'workingtree_implementations'])
177
188
        finally:
178
189
            TestCaseWithMemoryTransport.TEST_ROOT = old_root
179
190
        self.assertContainsRe(out, 'Ran 0 tests.*\n\nOK')
202
213
        return 0
203
214
 
204
215
    def test_stdin(self):
205
 
        # test that the stdin keyword to run_bzr_captured is passed through to
 
216
        # test that the stdin keyword to _run_bzr_core is passed through to
206
217
        # apply_redirected as a StringIO. We do this by overriding
207
 
        # apply_redirected in this class, and then calling run_bzr_captured,
 
218
        # apply_redirected in this class, and then calling _run_bzr_core,
208
219
        # which calls apply_redirected. 
209
 
        self.run_bzr_captured(['foo', 'bar'], stdin='gam')
 
220
        self.run_bzr(['foo', 'bar'], stdin='gam')
210
221
        self.assertEqual('gam', self.stdin.read())
211
222
        self.assertTrue(self.stdin is self.factory_stdin)
212
 
        self.run_bzr_captured(['foo', 'bar'], stdin='zippy')
 
223
        self.run_bzr(['foo', 'bar'], stdin='zippy')
213
224
        self.assertEqual('zippy', self.stdin.read())
214
225
        self.assertTrue(self.stdin is self.factory_stdin)
215
226
 
216
227
    def test_ui_factory(self):
217
 
        # each invocation of self.run_bzr_captured should get its
 
228
        # each invocation of self.run_bzr should get its
218
229
        # own UI factory, which is an instance of TestUIFactory,
219
230
        # with stdin, stdout and stderr attached to the stdin,
220
 
        # stdout and stderr of the invoked run_bzr_captured
 
231
        # stdout and stderr of the invoked run_bzr
221
232
        current_factory = bzrlib.ui.ui_factory
222
 
        self.run_bzr_captured(['foo'])
 
233
        self.run_bzr(['foo'])
223
234
        self.failIf(current_factory is self.factory)
224
235
        self.assertNotEqual(sys.stdout, self.factory.stdout)
225
236
        self.assertNotEqual(sys.stderr, self.factory.stderr)
232
243
        cwd = osutils.getcwd()
233
244
 
234
245
        # Default is to work in the current directory
235
 
        self.run_bzr_captured(['foo', 'bar'])
 
246
        self.run_bzr(['foo', 'bar'])
236
247
        self.assertEqual(cwd, self.working_dir)
237
248
 
238
 
        self.run_bzr_captured(['foo', 'bar'], working_dir=None)
 
249
        self.run_bzr(['foo', 'bar'], working_dir=None)
239
250
        self.assertEqual(cwd, self.working_dir)
240
251
 
241
252
        # The function should be run in the alternative directory
242
253
        # but afterwards the current working dir shouldn't be changed
243
 
        self.run_bzr_captured(['foo', 'bar'], working_dir='one')
 
254
        self.run_bzr(['foo', 'bar'], working_dir='one')
244
255
        self.assertNotEqual(cwd, self.working_dir)
245
256
        self.assertEndsWith(self.working_dir, 'one')
246
257
        self.assertEqual(cwd, osutils.getcwd())
247
258
 
248
 
        self.run_bzr_captured(['foo', 'bar'], working_dir='two')
 
259
        self.run_bzr(['foo', 'bar'], working_dir='two')
249
260
        self.assertNotEqual(cwd, self.working_dir)
250
261
        self.assertEndsWith(self.working_dir, 'two')
251
262
        self.assertEqual(cwd, osutils.getcwd())
451
462
class TestRunBzrError(ExternalBase):
452
463
 
453
464
    def test_run_bzr_error(self):
454
 
        out, err = self.run_bzr_error(['^$'], 'rocks', retcode=0)
 
465
        out, err = self.run_bzr_error(['^$'], ['rocks'], retcode=0)
455
466
        self.assertEqual(out, 'It sure does!\n')
456
467
 
457
468
        out, err = self.run_bzr_error(["bzr: ERROR: foobarbaz is not versioned"],
458
 
                                      'file-id', 'foobarbaz')
 
469
                                      ['file-id', 'foobarbaz'])
459
470
 
460
471
 
461
472
class TestSelftestCleanOutput(TestCaseInTempDir):
480
491
                           'test9999.tmp','tests'],
481
492
                           before)
482
493
 
483
 
        out,err = self.run_bzr_captured(['selftest','--clean-output'],
 
494
        out, err = self.run_bzr(['selftest','--clean-output'],
484
495
                                        working_dir=root)
485
496
 
486
497
        self.assertEquals(['delete directory: test0000.tmp',
529
540
 
530
541
    def test_list_only(self):
531
542
        # check that bzr selftest --list-only works correctly
532
 
        out,err = self.run_bzr_captured(['selftest', 'selftest',
 
543
        out,err = self.run_bzr(['selftest', 'selftest',
533
544
            '--list-only'])
534
545
        self.assertEndsWith(err, 'tests passed\n')
535
546
        (header,body,footer) = self._parse_test_list(out.splitlines())
538
549
 
539
550
    def test_list_only_filtered(self):
540
551
        # check that a filtered --list-only works, both include and exclude
541
 
        out_all,err_all = self.run_bzr_captured(['selftest', '--list-only'])
 
552
        out_all,err_all = self.run_bzr(['selftest', '--list-only'])
542
553
        tests_all = self._parse_test_list(out_all.splitlines())[1]
543
 
        out_incl,err_incl = self.run_bzr_captured(['selftest', '--list-only',
 
554
        out_incl,err_incl = self.run_bzr(['selftest', '--list-only',
544
555
          'selftest'])
545
556
        tests_incl = self._parse_test_list(out_incl.splitlines())[1]
546
557
        self.assertSubset(tests_incl, tests_all)
547
 
        out_excl,err_excl = self.run_bzr_captured(['selftest', '--list-only',
 
558
        out_excl,err_excl = self.run_bzr(['selftest', '--list-only',
548
559
          '--exclude', 'selftest'])
549
560
        tests_excl = self._parse_test_list(out_excl.splitlines())[1]
550
561
        self.assertSubset(tests_excl, tests_all)
556
567
 
557
568
    def test_list_only_random(self):
558
569
        # check that --randomize works correctly
559
 
        out_all,err_all = self.run_bzr_captured(['selftest', '--list-only',
 
570
        out_all,err_all = self.run_bzr(['selftest', '--list-only',
560
571
            'selftest'])
561
572
        tests_all = self._parse_test_list(out_all.splitlines())[1]
562
573
        # XXX: It looks like there are some orders for generating tests that
563
574
        # fail as of 20070504 - maybe because of import order dependencies.
564
575
        # So unfortunately this will rarely intermittently fail at the moment.
565
576
        # -- mbp 20070504
566
 
        out_rand,err_rand = self.run_bzr_captured(['selftest', '--list-only',
 
577
        out_rand,err_rand = self.run_bzr(['selftest', '--list-only',
567
578
            'selftest', '--randomize', 'now'])
568
579
        (header_rand,tests_rand,dummy) = self._parse_test_list(
569
580
            out_rand.splitlines(), 2)
573
584
        seed_re = re.compile('Randomizing test order using seed (\w+)')
574
585
        match_obj = seed_re.search(header_rand[-1])
575
586
        seed = match_obj.group(1)
576
 
        out_rand2,err_rand2 = self.run_bzr_captured(['selftest', '--list-only',
 
587
        out_rand2,err_rand2 = self.run_bzr(['selftest', '--list-only',
577
588
            'selftest', '--randomize', seed])
578
589
        (header_rand2,tests_rand2,dummy) = self._parse_test_list(
579
590
            out_rand2.splitlines(), 2)