/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_source.py

merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2008 Canonical Ltd
2
2
#   Authors: Robert Collins <robert.collins@canonical.com>
 
3
#            and others
3
4
#
4
5
# This program is free software; you can redistribute it and/or modify
5
6
# it under the terms of the GNU General Public License as published by
13
14
#
14
15
# You should have received a copy of the GNU General Public License
15
16
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
18
 
18
19
"""These tests are tests about the source code of bzrlib itself.
19
20
 
22
23
 
23
24
# import system imports here
24
25
import os
 
26
import parser
25
27
import re
 
28
import symbol
26
29
import sys
 
30
import token
27
31
 
28
32
#import bzrlib specific imports here
29
33
from bzrlib import (
30
34
    osutils,
31
35
    )
32
36
import bzrlib.branch
33
 
from bzrlib.tests import TestCase, TestSkipped
 
37
from bzrlib.tests import (
 
38
    TestCase,
 
39
    TestSkipped,
 
40
    )
34
41
 
35
42
 
36
43
# Files which are listed here will be skipped when testing for Copyright (or
47
54
 
48
55
    def source_file_name(self, package):
49
56
        """Return the path of the .py file for package."""
 
57
        if getattr(sys, "frozen", None) is not None:
 
58
            raise TestSkipped("can't test sources in frozen distributions.")
50
59
        path = package.__file__
51
60
        if path[-1] in 'co':
52
61
            return path[:-1]
72
81
        # do not even think of increasing this number. If you think you need to
73
82
        # increase it, then you almost certainly are doing something wrong as
74
83
        # the relationship from working_tree to branch is one way.
75
 
        # Note that this is an exact equality so that when the number drops, 
 
84
        # Note that this is an exact equality so that when the number drops,
76
85
        #it is not given a buffer but rather has this test updated immediately.
77
86
        self.assertEqual(0, occurences)
78
87
 
80
89
        """Test that the number of uses of working_tree in branch is stable."""
81
90
        occurences = self.find_occurences('WorkingTree',
82
91
                                          self.source_file_name(bzrlib.branch))
83
 
        # do not even think of increasing this number. If you think you need to
 
92
        # Do not even think of increasing this number. If you think you need to
84
93
        # increase it, then you almost certainly are doing something wrong as
85
94
        # the relationship from working_tree to branch is one way.
86
 
        # This number should be 4 (import NoWorkingTree and WorkingTree, 
87
 
        # raise NoWorkingTree from working_tree(), and construct a working tree
88
 
        # there) but a merge that regressed this was done before this test was
89
 
        # written. Note that this is an exact equality so that when the number
90
 
        # drops, it is not given a buffer but rather this test updated
91
 
        # immediately.
92
 
        self.assertEqual(2, occurences)
 
95
        # As of 20070809, there are no longer any mentions at all.
 
96
        self.assertEqual(0, occurences)
93
97
 
94
98
 
95
99
class TestSource(TestSourceHelper):
105
109
                              % source_dir)
106
110
        return source_dir
107
111
 
108
 
    def get_source_files(self):
109
 
        """yield all source files for bzr and bzrlib"""
 
112
    def get_source_files(self, extensions=None):
 
113
        """Yield all source files for bzr and bzrlib
 
114
 
 
115
        :param our_files_only: If true, exclude files from included libraries
 
116
            or plugins.
 
117
        """
110
118
        bzrlib_dir = self.get_bzrlib_dir()
 
119
        if extensions is None:
 
120
            extensions = ('.py',)
111
121
 
112
122
        # This is the front-end 'bzr' script
113
123
        bzr_path = self.get_bzr_path()
118
128
                if d.endswith('.tmp'):
119
129
                    dirs.remove(d)
120
130
            for f in files:
121
 
                if not f.endswith('.py'):
 
131
                for extension in extensions:
 
132
                    if f.endswith(extension):
 
133
                        break
 
134
                else:
 
135
                    # Did not match the accepted extensions
122
136
                    continue
123
137
                yield osutils.pathjoin(root, f)
124
138
 
125
 
    def get_source_file_contents(self):
126
 
        for fname in self.get_source_files():
 
139
    def get_source_file_contents(self, extensions=None):
 
140
        for fname in self.get_source_files(extensions=extensions):
127
141
            f = open(fname, 'rb')
128
142
            try:
129
143
                text = f.read()
131
145
                f.close()
132
146
            yield fname, text
133
147
 
 
148
    def is_our_code(self, fname):
 
149
        """Return true if it's a "real" part of bzrlib rather than external code"""
 
150
        if '/util/' in fname or '/plugins/' in fname:
 
151
            return False
 
152
        else:
 
153
            return True
 
154
 
134
155
    def is_copyright_exception(self, fname):
135
156
        """Certain files are allowed to be different"""
136
 
        if '/util/' in fname or '/plugins/' in fname:
 
157
        if not self.is_our_code(fname):
137
158
            # We don't ask that external utilities or plugins be
138
159
            # (C) Canonical Ltd
139
160
            return True
140
 
 
141
161
        for exc in COPYRIGHT_EXCEPTIONS:
142
162
            if fname.endswith(exc):
143
163
                return True
144
 
 
145
164
        return False
146
165
 
147
166
    def is_license_exception(self, fname):
148
167
        """Certain files are allowed to be different"""
149
 
        if '/util/' in fname or '/plugins/' in fname:
150
 
            # We don't ask that external utilities or plugins be
151
 
            # (C) Canonical Ltd
 
168
        if not self.is_our_code(fname):
152
169
            return True
153
 
 
154
170
        for exc in LICENSE_EXCEPTIONS:
155
171
            if fname.endswith(exc):
156
172
                return True
157
 
 
158
173
        return False
159
174
 
160
175
    def test_tmpdir_not_in_source_files(self):
166
181
                          % filename)
167
182
 
168
183
    def test_copyright(self):
169
 
        """Test that all .py files have a valid copyright statement"""
170
 
        # These are files which contain a different copyright statement
171
 
        # and that is okay.
 
184
        """Test that all .py and .pyx files have a valid copyright statement"""
172
185
        incorrect = []
173
186
 
174
187
        copyright_re = re.compile('#\\s*copyright.*(?=\n)', re.I)
178
191
            r'.*Canonical Ltd' # And containing 'Canonical Ltd'
179
192
            )
180
193
 
181
 
        for fname, text in self.get_source_file_contents():
 
194
        for fname, text in self.get_source_file_contents(
 
195
                extensions=('.py', '.pyx')):
182
196
            if self.is_copyright_exception(fname):
183
197
                continue
184
198
            match = copyright_canonical_re.search(text)
213
227
            self.fail('\n'.join(help_text))
214
228
 
215
229
    def test_gpl(self):
216
 
        """Test that all .py files have a GPL disclaimer"""
 
230
        """Test that all .py and .pyx files have a GPL disclaimer."""
217
231
        incorrect = []
218
232
 
219
233
        gpl_txt = """
229
243
#
230
244
# You should have received a copy of the GNU General Public License
231
245
# along with this program; if not, write to the Free Software
232
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
246
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
233
247
"""
234
248
        gpl_re = re.compile(re.escape(gpl_txt), re.MULTILINE)
235
249
 
236
 
        for fname, text in self.get_source_file_contents():
 
250
        for fname, text in self.get_source_file_contents(
 
251
                extensions=('.py', '.pyx')):
237
252
            if self.is_license_exception(fname):
238
253
                continue
239
254
            if not gpl_re.search(text):
253
268
 
254
269
            self.fail('\n'.join(help_text))
255
270
 
256
 
    def test_no_tabs(self):
257
 
        """bzrlib source files should not contain any tab characters."""
258
 
        incorrect = []
259
 
 
 
271
    def _push_file(self, dict_, fname, line_no):
 
272
        if fname not in dict_:
 
273
            dict_[fname] = [line_no]
 
274
        else:
 
275
            dict_[fname].append(line_no)
 
276
 
 
277
    def _format_message(self, dict_, message):
 
278
        files = ["%s: %s" % (f, ', '.join([str(i+1) for i in lines]))
 
279
                for f, lines in dict_.items()]
 
280
        files.sort()
 
281
        return message + '\n\n    %s' % ('\n    '.join(files))
 
282
 
 
283
    def test_coding_style(self):
 
284
        """Check if bazaar code conforms to some coding style conventions.
 
285
 
 
286
        Currently we assert that the following is not present:
 
287
         * any tab characters
 
288
         * non-unix newlines
 
289
         * no newline at end of files
 
290
 
 
291
        Print how many files have
 
292
         * trailing white space
 
293
         * lines longer than 79 chars
 
294
        """
 
295
        tabs = {}
 
296
        trailing_ws = {}
 
297
        illegal_newlines = {}
 
298
        long_lines = {}
 
299
        no_newline_at_eof = []
 
300
        for fname, text in self.get_source_file_contents(
 
301
                extensions=('.py', '.pyx')):
 
302
            if not self.is_our_code(fname):
 
303
                continue
 
304
            lines = text.splitlines(True)
 
305
            last_line_no = len(lines) - 1
 
306
            for line_no, line in enumerate(lines):
 
307
                if '\t' in line:
 
308
                    self._push_file(tabs, fname, line_no)
 
309
                if not line.endswith('\n') or line.endswith('\r\n'):
 
310
                    if line_no != last_line_no: # not no_newline_at_eof
 
311
                        self._push_file(illegal_newlines, fname, line_no)
 
312
                if line.endswith(' \n'):
 
313
                    self._push_file(trailing_ws, fname, line_no)
 
314
                if len(line) > 80:
 
315
                    self._push_file(long_lines, fname, line_no)
 
316
            if not lines[-1].endswith('\n'):
 
317
                no_newline_at_eof.append(fname)
 
318
        problems = []
 
319
        if tabs:
 
320
            problems.append(self._format_message(tabs,
 
321
                'Tab characters were found in the following source files.'
 
322
                '\nThey should either be replaced by "\\t" or by spaces:'))
 
323
        if trailing_ws:
 
324
            print ("There are %i lines with trailing white space in %i files."
 
325
                % (sum([len(lines) for f, lines in trailing_ws.items()]),
 
326
                    len(trailing_ws)))
 
327
        if illegal_newlines:
 
328
            problems.append(self._format_message(illegal_newlines,
 
329
                'Non-unix newlines were found in the following source files:'))
 
330
        if long_lines:
 
331
            print ("There are %i lines longer than 79 characters in %i files."
 
332
                % (sum([len(lines) for f, lines in long_lines.items()]),
 
333
                    len(long_lines)))
 
334
        if no_newline_at_eof:
 
335
            no_newline_at_eof.sort()
 
336
            problems.append("The following source files doesn't have a "
 
337
                "newline at the end:"
 
338
               '\n\n    %s'
 
339
               % ('\n    '.join(no_newline_at_eof)))
 
340
        if problems:
 
341
            self.fail('\n\n'.join(problems))
 
342
 
 
343
    def test_no_asserts(self):
 
344
        """bzr shouldn't use the 'assert' statement."""
 
345
        # assert causes too much variation between -O and not, and tends to
 
346
        # give bad errors to the user
 
347
        def search(x):
 
348
            # scan down through x for assert statements, report any problems
 
349
            # this is a bit cheesy; it may get some false positives?
 
350
            if x[0] == symbol.assert_stmt:
 
351
                return True
 
352
            elif x[0] == token.NAME:
 
353
                # can't search further down
 
354
                return False
 
355
            for sub in x[1:]:
 
356
                if sub and search(sub):
 
357
                    return True
 
358
            return False
 
359
        badfiles = []
260
360
        for fname, text in self.get_source_file_contents():
261
 
            if '/util/' in fname or '/plugins/' in fname:
 
361
            if not self.is_our_code(fname):
262
362
                continue
263
 
            if '\t' in text:
264
 
                incorrect.append(fname)
265
 
 
266
 
        if incorrect:
267
 
            self.fail('Tab characters were found in the following source files.'
268
 
              '\nThey should either be replaced by "\\t" or by spaces:'
269
 
              '\n\n    %s'
270
 
              % ('\n    '.join(incorrect)))
 
363
            ast = parser.ast2tuple(parser.suite(''.join(text)))
 
364
            if search(ast):
 
365
                badfiles.append(fname)
 
366
        if badfiles:
 
367
            self.fail(
 
368
                "these files contain an assert statement and should not:\n%s"
 
369
                % '\n'.join(badfiles))