~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/blackbox.py

  • Committer: Aaron Bentley
  • Date: 2005-08-10 17:39:16 UTC
  • mto: (1092.1.41) (1185.3.4) (974.1.47)
  • mto: This revision was merged to the branch mainline in revision 1110.
  • Revision ID: abentley@panoramicfeedback.com-20050810173916-77580019d21a0e82
Removed MergeTree.inventory

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
it's normally invoked.
27
27
"""
28
28
 
29
 
import sys
 
29
# this code was previously in testbzr
30
30
 
31
 
from bzrlib.selftest import InTempDir, BzrTestBase
 
31
from unittest import TestCase
 
32
from bzrlib.selftest import TestBase, InTempDir
32
33
 
33
34
 
34
35
 
35
36
class ExternalBase(InTempDir):
36
 
    def runbzr(self, args, retcode=0,backtick=False):
 
37
    def runbzr(self, args, retcode=0):
37
38
        try:
38
39
            import shutil
39
40
            from subprocess import call
43
44
 
44
45
        if isinstance(args, basestring):
45
46
            args = args.split()
46
 
 
47
 
        if backtick:
48
 
            return self.backtick(['python', self.BZRPATH,] + args,
49
 
                           retcode=retcode)
50
 
        else:
51
 
            return self.runcmd(['python', self.BZRPATH,] + args,
52
 
                           retcode=retcode)
53
 
 
54
 
 
55
 
 
56
 
class MvCommand(BzrTestBase):
57
 
    def runbzr(self):
58
 
        """Test two modes of operation for mv"""
59
 
        b = Branch('.', init=True)
60
 
        self.build_tree(['a', 'c', 'subdir/'])
61
 
        self.run_bzr('mv', 'a', 'b')
62
 
        self.run_bzr('mv', 'b', 'subdir')
63
 
        self.run_bzr('mv', 'subdir/b', 'a')
64
 
        self.run_bzr('mv', 'a', 'b', 'subdir')
65
 
        self.run_bzr('mv', 'subdir/a', 'subdir/newa')
66
 
 
67
 
 
68
 
 
69
 
class TestVersion(BzrTestBase):
70
 
    """Check output from version command and master option is reasonable"""
 
47
            
 
48
        return self.runcmd(['python', self.BZRPATH,] + args,
 
49
                           retcode=retcode)
 
50
 
 
51
 
 
52
 
 
53
class TestVersion(ExternalBase):
71
54
    def runTest(self):
72
55
        # output is intentionally passed through to stdout so that we
73
56
        # can see the version being tested
74
 
        from cStringIO import StringIO
75
 
        save_out = sys.stdout
76
 
        try:
77
 
            sys.stdout = tmp_out = StringIO()
78
 
            
79
 
            self.run_bzr('version')
80
 
        finally:
81
 
            sys.stdout = save_out
82
 
 
83
 
        output = tmp_out.getvalue()
84
 
        self.log('bzr version output:')
85
 
        self.log(output)
86
 
        
87
 
        self.assert_(output.startswith('bzr (bazaar-ng) '))
88
 
        self.assertNotEqual(output.index('Canonical'), -1)
89
 
 
90
 
        # make sure --version is consistent
91
 
        try:
92
 
            sys.stdout = tmp_out = StringIO()
93
 
            
94
 
            self.run_bzr('--version')
95
 
        finally:
96
 
            sys.stdout = save_out
97
 
 
98
 
        self.log('bzr --version output:')
99
 
        self.log(tmp_out.getvalue())
100
 
 
101
 
        self.assertEquals(output, tmp_out.getvalue())
102
 
 
103
 
 
104
 
        
 
57
        self.runbzr(['version'])
 
58
 
105
59
 
106
60
 
107
61
class HelpCommands(ExternalBase):
119
73
        self.runbzr(['init'])
120
74
 
121
75
 
 
76
 
122
77
class UserIdentity(ExternalBase):
123
78
    def runTest(self):
124
79
        # this should always identify something, if only "john@localhost"
125
80
        self.runbzr("whoami")
126
81
        self.runbzr("whoami --email")
127
 
 
128
 
        self.assertEquals(self.runbzr("whoami --email",
129
 
                                      backtick=True).count('@'), 1)
130
 
        
131
 
class UserIdentityBranch(ExternalBase):
132
 
    def runTest(self):
133
 
        # tests branch specific user identity
134
 
        self.runbzr('init')
135
 
        f = file('.bzr/email', 'wt')
136
 
        f.write('Branch Identity <branch@identi.ty>')
137
 
        f.close()
138
 
        whoami = self.runbzr("whoami",backtick=True)
139
 
        whoami_email = self.runbzr("whoami --email",backtick=True)
140
 
        self.assertTrue(whoami.startswith('Branch Identity <branch@identi.ty>'))
141
 
        self.assertTrue(whoami_email.startswith('branch@identi.ty'))
 
82
        self.assertEquals(self.backtick("bzr whoami --email").count('@'),
 
83
                          1)
142
84
 
143
85
 
144
86
class InvalidCommands(ExternalBase):
370
312
 
371
313
 
372
314
 
 
315
        chdir('..')
 
316
        chdir('..')
 
317
        progress('branch')
 
318
        assert os.path.exists('branch1')
 
319
        assert not os.path.exists('branch2')
 
320
        # Can't create a branch if it already exists
 
321
        runbzr('branch branch1', retcode=1)
 
322
        # Can't create a branch if its parent doesn't exist
 
323
        runbzr('branch /unlikely/to/exist', retcode=1)
 
324
        runbzr('branch branch1 branch2')
 
325
        assert exists('branch2')
 
326
        assert exists('branch2/sub1')
 
327
        assert exists('branch2/sub1/hello.txt')
 
328
        
 
329
        runbzr('branch --revision 0 branch1 branch3')
 
330
        assert not exists('branch3/sub1/hello.txt')
 
331
        runbzr('branch --revision 0..3 branch1 branch4', retcode=1)
 
332
 
 
333
        progress("pull")
 
334
        chdir('branch1')
 
335
        runbzr('pull', retcode=1)
 
336
        runbzr('pull ../branch2')
 
337
        chdir('.bzr')
 
338
        runbzr('pull')
 
339
        runbzr('commit --unchanged -m empty')
 
340
        runbzr('pull')
 
341
        chdir('../../branch2')
 
342
        runbzr('pull')
 
343
        runbzr('commit --unchanged -m empty')
 
344
        chdir('../branch1')
 
345
        runbzr('commit --unchanged -m empty')
 
346
        runbzr('pull', retcode=1)
 
347
        chdir ('..')
 
348
 
 
349
        progress('status after remove')
 
350
        mkdir('status-after-remove')
 
351
        # see mail from William Dodé, 2005-05-25
 
352
        # $ bzr init; touch a; bzr add a; bzr commit -m "add a"
 
353
        #     * looking for changes...
 
354
        #     added a
 
355
        #     * commited r1
 
356
        #     $ bzr remove a
 
357
        #     $ bzr status
 
358
        #     bzr: local variable 'kind' referenced before assignment
 
359
        #     at /vrac/python/bazaar-ng/bzrlib/diff.py:286 in compare_trees()
 
360
        #     see ~/.bzr.log for debug information
 
361
        chdir('status-after-remove')
 
362
        runbzr('init')
 
363
        file('a', 'w').write('foo')
 
364
        runbzr('add a')
 
365
        runbzr(['commit', '-m', 'add a'])
 
366
        runbzr('remove a')
 
367
        runbzr('status')
 
368
 
 
369
        chdir('..')
 
370
 
 
371
 
 
372
 
 
373
        progress("recursive and non-recursive add")
 
374
        mkdir('no-recurse')
 
375
        chdir('no-recurse')
 
376
        runbzr('init')
 
377
        mkdir('foo')
 
378
        fp = os.path.join('foo', 'test.txt')
 
379
        f = file(fp, 'w')
 
380
        f.write('hello!\n')
 
381
        f.close()
 
382
        runbzr('add --no-recurse foo')
 
383
        runbzr('file-id foo')
 
384
        runbzr('file-id ' + fp, 1)      # not versioned yet
 
385
        runbzr('commit -m add-dir-only')
 
386
 
 
387
        self.runbzr('file-id ' + fp, 1)      # still not versioned 
 
388
 
 
389
        self.runbzr('add foo')
 
390
        self.runbzr('file-id ' + fp)
 
391
        self.runbzr('commit -m add-sub-file')
 
392
 
 
393
        chdir('..')
 
394
 
 
395
 
 
396
 
373
397
class RevertCommand(ExternalBase):
374
398
    def runTest(self):
375
399
        self.runbzr('init')