/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
608 by Martin Pool
- Split selftests out into a new module and start changing them
1
# Copyright (C) 2005 by Canonical Ltd
2
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
609 by Martin Pool
- cleanup test code
17
720 by Martin Pool
- start moving external tests into the testsuite framework
18
from unittest import TestResult, TestCase
719 by Martin Pool
- reorganize selftest code
19
727 by Martin Pool
- move more code to run external commands from testbzr to selftest
20
try:
21
    import shutil
22
    from subprocess import call, Popen, PIPE
23
except ImportError, e:
24
    sys.stderr.write("testbzr: sorry, this test suite requires the subprocess module\n"
25
                     "this is shipped with python2.4 and available separately for 2.3\n")
26
    raise
27
28
29
class CommandFailed(Exception):
30
    pass
31
721 by Martin Pool
- framework for running external commands from unittest suite
32
33
class TestBase(TestCase):
34
    """Base class for bzr test cases.
35
36
    Just defines some useful helper functions; doesn't actually test
37
    anything.
38
    """
727 by Martin Pool
- move more code to run external commands from testbzr to selftest
39
    
40
    # TODO: Special methods to invoke bzr, so that we can run it
41
    # through a specified Python intepreter
42
43
    OVERRIDE_PYTHON = None # to run with alternative python 'python'
44
    BZRPATH = 'bzr'
45
    
46
47
    def formcmd(self, cmd):
48
        if isinstance(cmd, basestring):
49
            cmd = cmd.split()
50
51
        if cmd[0] == 'bzr':
52
            cmd[0] = self.BZRPATH
53
            if self.OVERRIDE_PYTHON:
54
                cmd.insert(0, self.OVERRIDE_PYTHON)
55
56
        self.log('$ %r' % cmd)
57
58
        return cmd
59
60
61
    def runcmd(self, cmd, retcode=0):
62
        """Run one command and check the return code.
63
64
        Returns a tuple of (stdout,stderr) strings.
65
66
        If a single string is based, it is split into words.
67
        For commands that are not simple space-separated words, please
68
        pass a list instead."""
69
        cmd = self.formcmd(cmd)
70
71
        self.log('$ ' + ' '.join(cmd))
72
        actual_retcode = call(cmd, stdout=self.TEST_LOG, stderr=self.TEST_LOG)
73
74
        if retcode != actual_retcode:
75
            raise CommandFailed("test failed: %r returned %d, expected %d"
76
                                % (cmd, actual_retcode, retcode))
77
78
732 by Martin Pool
- move more tests into bzr selftest
79
    def backtick(self, cmd, retcode=0):
751 by Martin Pool
- new TestBase.build_tree helper method
80
        """Run a command and return its output"""
732 by Martin Pool
- move more tests into bzr selftest
81
        cmd = self.formcmd(cmd)
82
        child = Popen(cmd, stdout=PIPE, stderr=self.TEST_LOG)
83
        outd, errd = child.communicate()
84
        self.log(outd)
85
        actual_retcode = child.wait()
86
87
        outd = outd.replace('\r', '')
88
89
        if retcode != actual_retcode:
90
            raise CommandFailed("test failed: %r returned %d, expected %d"
91
                                % (cmd, actual_retcode, retcode))
92
93
        return outd
94
95
96
751 by Martin Pool
- new TestBase.build_tree helper method
97
    def build_tree(self, shape):
98
        """Build a test tree according to a pattern.
99
100
        shape is a sequence of file specifications.  If the final
101
        character is '/', a directory is created.
102
103
        This doesn't add anything to a branch.
104
        """
105
        # XXX: It's OK to just create them using forward slashes on windows?
106
        for name in shape:
107
            assert isinstance(name, basestring)
108
            if name[-1] == '/':
109
                os.mkdir(name[:-1])
110
            else:
111
                f = file(name, 'wt')
112
                print >>f, "contents of", name
113
                f.close()
114
721 by Martin Pool
- framework for running external commands from unittest suite
115
116
    def log(self, msg):
117
        """Log a message to a progress file"""
726 by Martin Pool
- more rearrangement of blackbox tests
118
        print >>self.TEST_LOG, msg
721 by Martin Pool
- framework for running external commands from unittest suite
119
               
120
732 by Martin Pool
- move more tests into bzr selftest
121
class InTempDir(TestBase):
122
    """Base class for tests run in a temporary branch."""
123
    def setUp(self):
124
        import os
735 by Martin Pool
- clean up code for running tests in selfcontained directories
125
        self.test_dir = os.path.join(self.TEST_ROOT, self.__class__.__name__)
126
        os.mkdir(self.test_dir)
127
        os.chdir(self.test_dir)
732 by Martin Pool
- move more tests into bzr selftest
128
        
129
    def tearDown(self):
130
        import os
735 by Martin Pool
- clean up code for running tests in selfcontained directories
131
        os.chdir(self.TEST_ROOT)
732 by Martin Pool
- move more tests into bzr selftest
132
133
134
721 by Martin Pool
- framework for running external commands from unittest suite
135
136
720 by Martin Pool
- start moving external tests into the testsuite framework
137
class _MyResult(TestResult):
721 by Martin Pool
- framework for running external commands from unittest suite
138
    """
139
    Custom TestResult.
140
141
    No special behaviour for now.
142
    """
745 by Martin Pool
- redirect stdout/stderr while running tests
143
    def __init__(self, out):
144
        self.out = out
145
        TestResult.__init__(self)
146
733 by Martin Pool
- show test names while running
147
    def startTest(self, test):
744 by Martin Pool
- show nicer descriptions while running tests
148
        # TODO: Maybe show test.shortDescription somewhere?
745 by Martin Pool
- redirect stdout/stderr while running tests
149
        print >>self.out, '%-60.60s' % test.id(),
733 by Martin Pool
- show test names while running
150
        TestResult.startTest(self, test)
151
152
    def stopTest(self, test):
153
        # print
154
        TestResult.stopTest(self, test)
155
156
157
    def addError(self, test, err):
745 by Martin Pool
- redirect stdout/stderr while running tests
158
        print >>self.out, 'ERROR'
733 by Martin Pool
- show test names while running
159
        TestResult.addError(self, test, err)
160
161
    def addFailure(self, test, err):
745 by Martin Pool
- redirect stdout/stderr while running tests
162
        print >>self.out, 'FAILURE'
733 by Martin Pool
- show test names while running
163
        TestResult.addFailure(self, test, err)
164
165
    def addSuccess(self, test):
745 by Martin Pool
- redirect stdout/stderr while running tests
166
        print >>self.out, 'OK'
733 by Martin Pool
- show test names while running
167
        TestResult.addSuccess(self, test)
719 by Martin Pool
- reorganize selftest code
168
169
720 by Martin Pool
- start moving external tests into the testsuite framework
170
608 by Martin Pool
- Split selftests out into a new module and start changing them
171
def selftest():
721 by Martin Pool
- framework for running external commands from unittest suite
172
    from unittest import TestLoader, TestSuite
173
    import bzrlib
723 by Martin Pool
- move whitebox/blackbox modules into bzrlib.selftest subdirectory
174
    import bzrlib.selftest.whitebox
175
    import bzrlib.selftest.blackbox
743 by Martin Pool
- new simple versioning test cases
176
    import bzrlib.selftest.versioning
721 by Martin Pool
- framework for running external commands from unittest suite
177
    from doctest import DocTestSuite
178
    import os
179
    import shutil
180
    import time
745 by Martin Pool
- redirect stdout/stderr while running tests
181
    import sys
721 by Martin Pool
- framework for running external commands from unittest suite
182
183
    _setup_test_log()
184
    _setup_test_dir()
744 by Martin Pool
- show nicer descriptions while running tests
185
    print
721 by Martin Pool
- framework for running external commands from unittest suite
186
187
    suite = TestSuite()
188
    tl = TestLoader()
189
743 by Martin Pool
- new simple versioning test cases
190
    for m in bzrlib.selftest.whitebox, \
191
            bzrlib.selftest.versioning:
721 by Martin Pool
- framework for running external commands from unittest suite
192
        suite.addTest(tl.loadTestsFromModule(m))
193
726 by Martin Pool
- more rearrangement of blackbox tests
194
    suite.addTest(bzrlib.selftest.blackbox.suite())
195
721 by Martin Pool
- framework for running external commands from unittest suite
196
    for m in bzrlib.store, bzrlib.inventory, bzrlib.branch, bzrlib.osutils, \
197
            bzrlib.commands:
198
        suite.addTest(DocTestSuite(m))
199
745 by Martin Pool
- redirect stdout/stderr while running tests
200
    # save stdout & stderr so there's no leakage from code-under-test
201
    real_stdout = sys.stdout
202
    real_stderr = sys.stderr
203
    sys.stdout = sys.stderr = TestBase.TEST_LOG
204
    try:
205
        result = _MyResult(real_stdout)
206
        suite.run(result)
207
    finally:
208
        sys.stdout = real_stdout
209
        sys.stderr = real_stderr
721 by Martin Pool
- framework for running external commands from unittest suite
210
211
    _show_results(result)
212
213
    return result.wasSuccessful()
214
215
745 by Martin Pool
- redirect stdout/stderr while running tests
216
217
721 by Martin Pool
- framework for running external commands from unittest suite
218
def _setup_test_log():
219
    import time
220
    import os
221
    
222
    log_filename = os.path.abspath('testbzr.log')
726 by Martin Pool
- more rearrangement of blackbox tests
223
    TestBase.TEST_LOG = open(log_filename, 'wt', buffering=1) # line buffered
721 by Martin Pool
- framework for running external commands from unittest suite
224
726 by Martin Pool
- more rearrangement of blackbox tests
225
    print >>TestBase.TEST_LOG, "bzr tests run at " + time.ctime()
721 by Martin Pool
- framework for running external commands from unittest suite
226
    print '%-30s %s' % ('test log', log_filename)
227
228
229
def _setup_test_dir():
230
    import os
231
    import shutil
232
    
726 by Martin Pool
- more rearrangement of blackbox tests
233
    TestBase.ORIG_DIR = os.getcwdu()
735 by Martin Pool
- clean up code for running tests in selfcontained directories
234
    TestBase.TEST_ROOT = os.path.abspath("testbzr.tmp")
235
236
    print '%-30s %s' % ('running tests in', TestBase.TEST_ROOT)
237
238
    if os.path.exists(TestBase.TEST_ROOT):
239
        shutil.rmtree(TestBase.TEST_ROOT)
240
    os.mkdir(TestBase.TEST_ROOT)
241
    os.chdir(TestBase.TEST_ROOT)
726 by Martin Pool
- more rearrangement of blackbox tests
242
243
    # make a fake bzr directory there to prevent any tests propagating
244
    # up onto the source directory's real branch
735 by Martin Pool
- clean up code for running tests in selfcontained directories
245
    os.mkdir(os.path.join(TestBase.TEST_ROOT, '.bzr'))
721 by Martin Pool
- framework for running external commands from unittest suite
246
247
    
248
249
def _show_results(result):
250
     for case, tb in result.errors:
251
         _show_test_failure('ERROR', case, tb)
252
253
     for case, tb in result.failures:
254
         _show_test_failure('FAILURE', case, tb)
255
         
256
     print
719 by Martin Pool
- reorganize selftest code
257
     print '%4d tests run' % result.testsRun
258
     print '%4d errors' % len(result.errors)
259
     print '%4d failures' % len(result.failures)
260
721 by Martin Pool
- framework for running external commands from unittest suite
261
262
263
def _show_test_failure(kind, case, tb):
264
     print (kind + '! ').ljust(60, '-')
265
     print case
748 by Martin Pool
- Fix typo
266
     desc = case.shortDescription()
744 by Martin Pool
- show nicer descriptions while running tests
267
     if desc:
268
         print '   (%s)' % desc
721 by Martin Pool
- framework for running external commands from unittest suite
269
     print tb
270
     print ''.ljust(60, '-')
271