~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test__annotator.py

  • Committer: John Arbash Meinel
  • Date: 2009-06-17 19:38:58 UTC
  • mto: This revision was merged to the branch mainline in revision 4522.
  • Revision ID: john@arbash-meinel.com-20090617193858-y7qy0zhsxeoewoyd
Initial api for Annotator.

Currently just a thunk around the other annotation code.
But it defines the api as returning multiple possible sources
for each line. And separates the annotations into a separate
list from the actual lines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2009 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""Tests for Annotators."""
 
18
 
 
19
from bzrlib import (
 
20
    errors,
 
21
    _annotator_py,
 
22
    tests,
 
23
    )
 
24
 
 
25
 
 
26
def load_tests(standard_tests, module, loader):
 
27
    """Parameterize tests for all versions of groupcompress."""
 
28
    scenarios = [
 
29
        ('python', {'module': _annotator_py}),
 
30
    ]
 
31
    suite = loader.suiteClass()
 
32
    if CompiledAnnotator.available():
 
33
        from bzrlib import _annotator_pyx
 
34
        scenarios.append(('C', {'module': _annotator_pyx}))
 
35
    else:
 
36
        # the compiled module isn't available, so we add a failing test
 
37
        class FailWithoutFeature(tests.TestCase):
 
38
            def test_fail(self):
 
39
                self.requireFeature(CompiledAnnotator)
 
40
        suite.addTest(loader.loadTestsFromTestCase(FailWithoutFeature))
 
41
    result = tests.multiply_tests(standard_tests, scenarios, suite)
 
42
    return result
 
43
 
 
44
 
 
45
class _CompiledAnnotator(tests.Feature):
 
46
 
 
47
    def _probe(self):
 
48
        try:
 
49
            import bzrlib._annotator_pyx
 
50
        except ImportError:
 
51
            return False
 
52
        return True
 
53
 
 
54
    def feature_name(self):
 
55
        return 'bzrlib._annotator_pyx'
 
56
 
 
57
CompiledAnnotator = _CompiledAnnotator()
 
58
 
 
59
 
 
60
class TestAnnotator(tests.TestCaseWithMemoryTransport):
 
61
 
 
62
    module = None # Set by load_tests
 
63
 
 
64
    def make_single_text(self):
 
65
        repo = self.make_repository('repo')
 
66
        repo.lock_write()
 
67
        self.addCleanup(repo.unlock)
 
68
        vf = repo.texts
 
69
        repo.start_write_group()
 
70
        vf.add_lines(('f-id', 'a-id'), (), ['simple\n', 'content\n'])
 
71
        repo.commit_write_group()
 
72
        return vf
 
73
 
 
74
    def test_annotate_missing(self):
 
75
        vf = self.make_single_text()
 
76
        ann = self.module.Annotator(vf)
 
77
        self.assertRaises(errors.RevisionNotPresent,
 
78
                          ann.annotate, ('not', 'present'))
 
79
 
 
80
    def test_annotate_simple(self):
 
81
        vf = self.make_single_text()
 
82
        ann = self.module.Annotator(vf)
 
83
        f_key = ('f-id', 'a-id')
 
84
        self.assertEqual(([(f_key,)]*2, ['simple\n', 'content\n']),
 
85
                         ann.annotate(f_key))