~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_source.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-06 06:48:25 UTC
  • mfrom: (4070.8.6 debug-config)
  • Revision ID: pqm@pqm.ubuntu.com-20090306064825-kbpwggw21dygeix6
(mbp) debug_flags configuration option

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#
15
15
# You should have received a copy of the GNU General Public License
16
16
# along with this program; if not, write to the Free Software
17
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
18
 
19
19
"""These tests are tests about the source code of bzrlib itself.
20
20
 
35
35
    )
36
36
import bzrlib.branch
37
37
from bzrlib.tests import (
38
 
    KnownFailure,
39
38
    TestCase,
40
39
    TestSkipped,
41
40
    )
110
109
                              % source_dir)
111
110
        return source_dir
112
111
 
113
 
    def get_source_files(self, extensions=None):
 
112
    def get_source_files(self):
114
113
        """Yield all source files for bzr and bzrlib
115
114
 
116
115
        :param our_files_only: If true, exclude files from included libraries
117
116
            or plugins.
118
117
        """
119
118
        bzrlib_dir = self.get_bzrlib_dir()
120
 
        if extensions is None:
121
 
            extensions = ('.py',)
122
119
 
123
120
        # This is the front-end 'bzr' script
124
121
        bzr_path = self.get_bzr_path()
129
126
                if d.endswith('.tmp'):
130
127
                    dirs.remove(d)
131
128
            for f in files:
132
 
                for extension in extensions:
133
 
                    if f.endswith(extension):
134
 
                        break
135
 
                else:
136
 
                    # Did not match the accepted extensions
 
129
                if not f.endswith('.py'):
137
130
                    continue
138
131
                yield osutils.pathjoin(root, f)
139
132
 
140
 
    def get_source_file_contents(self, extensions=None):
141
 
        for fname in self.get_source_files(extensions=extensions):
 
133
    def get_source_file_contents(self):
 
134
        for fname in self.get_source_files():
142
135
            f = open(fname, 'rb')
143
136
            try:
144
137
                text = f.read()
182
175
                          % filename)
183
176
 
184
177
    def test_copyright(self):
185
 
        """Test that all .py and .pyx files have a valid copyright statement"""
 
178
        """Test that all .py files have a valid copyright statement"""
 
179
        # These are files which contain a different copyright statement
 
180
        # and that is okay.
186
181
        incorrect = []
187
182
 
188
183
        copyright_re = re.compile('#\\s*copyright.*(?=\n)', re.I)
192
187
            r'.*Canonical Ltd' # And containing 'Canonical Ltd'
193
188
            )
194
189
 
195
 
        for fname, text in self.get_source_file_contents(
196
 
                extensions=('.py', '.pyx')):
 
190
        for fname, text in self.get_source_file_contents():
197
191
            if self.is_copyright_exception(fname):
198
192
                continue
199
193
            match = copyright_canonical_re.search(text)
228
222
            self.fail('\n'.join(help_text))
229
223
 
230
224
    def test_gpl(self):
231
 
        """Test that all .py and .pyx files have a GPL disclaimer."""
 
225
        """Test that all .py files have a GPL disclaimer"""
232
226
        incorrect = []
233
227
 
234
228
        gpl_txt = """
244
238
#
245
239
# You should have received a copy of the GNU General Public License
246
240
# along with this program; if not, write to the Free Software
247
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
241
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
248
242
"""
249
243
        gpl_re = re.compile(re.escape(gpl_txt), re.MULTILINE)
250
244
 
251
 
        for fname, text in self.get_source_file_contents(
252
 
                extensions=('.py', '.pyx')):
 
245
        for fname, text in self.get_source_file_contents():
253
246
            if self.is_license_exception(fname):
254
247
                continue
255
248
            if not gpl_re.search(text):
297
290
        illegal_newlines = {}
298
291
        long_lines = {}
299
292
        no_newline_at_eof = []
300
 
        for fname, text in self.get_source_file_contents(
301
 
                extensions=('.py', '.pyx')):
 
293
        for fname, text in self.get_source_file_contents():
302
294
            if not self.is_our_code(fname):
303
295
                continue
304
296
            lines = text.splitlines(True)
338
330
               '\n\n    %s'
339
331
               % ('\n    '.join(no_newline_at_eof)))
340
332
        if problems:
341
 
            raise KnownFailure("test_coding_style has failed")
342
333
            self.fail('\n\n'.join(problems))
343
334
 
344
335
    def test_no_asserts(self):