~bzr-pqm/bzr/bzr.dev

5557.1.15 by John Arbash Meinel
Merge bzr.dev 5597 to resolve NEWS, aka bzr-2.3.txt
1
# Copyright (C) 2009, 2010, 2011 Canonical Ltd
4454.3.1 by John Arbash Meinel
Initial api for Annotator.
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 (
4454.3.77 by John Arbash Meinel
Add support for compatibility with old '_break_annotation_tie' function.
20
    annotate,
4454.3.1 by John Arbash Meinel
Initial api for Annotator.
21
    errors,
4454.3.27 by John Arbash Meinel
Simplify the test__annotator tests by avoiding having a real repository.
22
    knit,
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
23
    revision,
4454.3.1 by John Arbash Meinel
Initial api for Annotator.
24
    tests,
25
    )
26
27
28
def load_tests(standard_tests, module, loader):
29
    """Parameterize tests for all versions of groupcompress."""
4913.3.1 by John Arbash Meinel
Implement a permute_for_extension helper.
30
    suite, _ = tests.permute_tests_for_extension(standard_tests, loader,
31
        'bzrlib._annotator_py', 'bzrlib._annotator_pyx')
4913.3.3 by John Arbash Meinel
Typo in test__annotator. Now 'selftest --list' matches as expected
32
    return suite
4454.3.1 by John Arbash Meinel
Initial api for Annotator.
33
34
35
class TestAnnotator(tests.TestCaseWithMemoryTransport):
36
37
    module = None # Set by load_tests
38
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
39
    fa_key = ('f-id', 'a-id')
40
    fb_key = ('f-id', 'b-id')
41
    fc_key = ('f-id', 'c-id')
42
    fd_key = ('f-id', 'd-id')
4454.3.12 by John Arbash Meinel
Finish fleshing out the ability to determine a revision after conflicts.
43
    fe_key = ('f-id', 'e-id')
44
    ff_key = ('f-id', 'f-id')
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
45
4454.3.66 by John Arbash Meinel
Implement no-graph support for the Python version.
46
    def make_no_graph_texts(self):
47
        factory = knit.make_pack_factory(False, False, 2)
48
        self.vf = factory(self.get_transport())
49
        self.ann = self.module.Annotator(self.vf)
50
        self.vf.add_lines(self.fa_key, (), ['simple\n', 'content\n'])
51
        self.vf.add_lines(self.fb_key, (), ['simple\n', 'new content\n'])
52
4454.3.2 by John Arbash Meinel
Start moving bits into helper functions. Add tests for multiple revs.
53
    def make_simple_text(self):
4454.3.27 by John Arbash Meinel
Simplify the test__annotator tests by avoiding having a real repository.
54
        # TODO: all we really need is a VersionedFile instance, we'd like to
55
        #       avoid creating all the intermediate stuff
56
        factory = knit.make_pack_factory(True, True, 2)
57
        self.vf = factory(self.get_transport())
4454.3.18 by John Arbash Meinel
Start tracking the number of children that need a given text.
58
        # This assumes nothing special happens during __init__, which may be
59
        # valid
60
        self.ann = self.module.Annotator(self.vf)
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
61
        #  A    'simple|content|'
62
        #  |
63
        #  B    'simple|new content|'
4454.3.27 by John Arbash Meinel
Simplify the test__annotator tests by avoiding having a real repository.
64
        self.vf.add_lines(self.fa_key, [], ['simple\n', 'content\n'])
65
        self.vf.add_lines(self.fb_key, [self.fa_key],
66
                          ['simple\n', 'new content\n'])
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
67
68
    def make_merge_text(self):
69
        self.make_simple_text()
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
70
        #  A    'simple|content|'
71
        #  |\
72
        #  B |  'simple|new content|'
73
        #  | |
74
        #  | C  'simple|from c|content|'
75
        #  |/
76
        #  D    'simple|from c|new content|introduced in merge|'
4454.3.27 by John Arbash Meinel
Simplify the test__annotator tests by avoiding having a real repository.
77
        self.vf.add_lines(self.fc_key, [self.fa_key],
78
                          ['simple\n', 'from c\n', 'content\n'])
79
        self.vf.add_lines(self.fd_key, [self.fb_key, self.fc_key],
80
                          ['simple\n', 'from c\n', 'new content\n',
81
                           'introduced in merge\n'])
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
82
83
    def make_common_merge_text(self):
84
        """Both sides of the merge will have introduced a line."""
85
        self.make_simple_text()
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
86
        #  A    'simple|content|'
87
        #  |\
88
        #  B |  'simple|new content|'
89
        #  | |
90
        #  | C  'simple|new content|'
91
        #  |/
92
        #  D    'simple|new content|'
4454.3.27 by John Arbash Meinel
Simplify the test__annotator tests by avoiding having a real repository.
93
        self.vf.add_lines(self.fc_key, [self.fa_key],
94
                          ['simple\n', 'new content\n'])
95
        self.vf.add_lines(self.fd_key, [self.fb_key, self.fc_key],
96
                          ['simple\n', 'new content\n'])
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
97
4454.3.12 by John Arbash Meinel
Finish fleshing out the ability to determine a revision after conflicts.
98
    def make_many_way_common_merge_text(self):
99
        self.make_simple_text()
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
100
        #  A-.    'simple|content|'
101
        #  |\ \
102
        #  B | |  'simple|new content|'
103
        #  | | |
104
        #  | C |  'simple|new content|'
105
        #  |/  |
106
        #  D   |  'simple|new content|'
107
        #  |   |
108
        #  |   E  'simple|new content|'
109
        #  |  /
110
        #  F-'    'simple|new content|'
4454.3.27 by John Arbash Meinel
Simplify the test__annotator tests by avoiding having a real repository.
111
        self.vf.add_lines(self.fc_key, [self.fa_key],
112
                          ['simple\n', 'new content\n'])
113
        self.vf.add_lines(self.fd_key, [self.fb_key, self.fc_key],
114
                          ['simple\n', 'new content\n'])
115
        self.vf.add_lines(self.fe_key, [self.fa_key],
116
                          ['simple\n', 'new content\n'])
117
        self.vf.add_lines(self.ff_key, [self.fd_key, self.fe_key],
118
                          ['simple\n', 'new content\n'])
4454.3.12 by John Arbash Meinel
Finish fleshing out the ability to determine a revision after conflicts.
119
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
120
    def make_merge_and_restored_text(self):
121
        self.make_simple_text()
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
122
        #  A    'simple|content|'
123
        #  |\
124
        #  B |  'simple|new content|'
125
        #  | |
126
        #  C |  'simple|content|' # reverted to A
127
        #   \|
128
        #    D  'simple|content|'
4454.3.27 by John Arbash Meinel
Simplify the test__annotator tests by avoiding having a real repository.
129
        # c reverts back to 'a' for the new content line
130
        self.vf.add_lines(self.fc_key, [self.fb_key],
131
                          ['simple\n', 'content\n'])
132
        # d merges 'a' and 'c', to find both claim last modified
133
        self.vf.add_lines(self.fd_key, [self.fa_key, self.fc_key],
134
                          ['simple\n', 'content\n'])
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
135
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
136
    def assertAnnotateEqual(self, expected_annotation, key, exp_text=None):
137
        annotation, lines = self.ann.annotate(key)
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
138
        self.assertEqual(expected_annotation, annotation)
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
139
        if exp_text is None:
140
            record = self.vf.get_record_stream([key], 'unordered', True).next()
141
            exp_text = record.get_bytes_as('fulltext')
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
142
        self.assertEqualDiff(exp_text, ''.join(lines))
4454.3.1 by John Arbash Meinel
Initial api for Annotator.
143
144
    def test_annotate_missing(self):
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
145
        self.make_simple_text()
4454.3.1 by John Arbash Meinel
Initial api for Annotator.
146
        self.assertRaises(errors.RevisionNotPresent,
4454.3.18 by John Arbash Meinel
Start tracking the number of children that need a given text.
147
                          self.ann.annotate, ('not', 'present'))
4454.3.1 by John Arbash Meinel
Initial api for Annotator.
148
149
    def test_annotate_simple(self):
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
150
        self.make_simple_text()
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
151
        self.assertAnnotateEqual([(self.fa_key,)]*2, self.fa_key)
152
        self.assertAnnotateEqual([(self.fa_key,), (self.fb_key,)], self.fb_key)
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
153
154
    def test_annotate_merge_text(self):
155
        self.make_merge_text()
156
        self.assertAnnotateEqual([(self.fa_key,), (self.fc_key,),
157
                                  (self.fb_key,), (self.fd_key,)],
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
158
                                 self.fd_key)
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
159
160
    def test_annotate_common_merge_text(self):
161
        self.make_common_merge_text()
162
        self.assertAnnotateEqual([(self.fa_key,), (self.fb_key, self.fc_key)],
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
163
                                 self.fd_key)
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
164
4454.3.12 by John Arbash Meinel
Finish fleshing out the ability to determine a revision after conflicts.
165
    def test_annotate_many_way_common_merge_text(self):
166
        self.make_many_way_common_merge_text()
167
        self.assertAnnotateEqual([(self.fa_key,),
168
                                  (self.fb_key, self.fc_key, self.fe_key)],
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
169
                                 self.ff_key)
4454.3.12 by John Arbash Meinel
Finish fleshing out the ability to determine a revision after conflicts.
170
4454.3.4 by John Arbash Meinel
New work on how to resolve conflict lines.
171
    def test_annotate_merge_and_restored(self):
172
        self.make_merge_and_restored_text()
173
        self.assertAnnotateEqual([(self.fa_key,), (self.fa_key, self.fc_key)],
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
174
                                 self.fd_key)
4454.3.10 by John Arbash Meinel
Start working on 'annotate_flat' which conforms to the original spec.
175
176
    def test_annotate_flat_simple(self):
177
        self.make_simple_text()
178
        self.assertEqual([(self.fa_key, 'simple\n'),
179
                          (self.fa_key, 'content\n'),
4454.3.18 by John Arbash Meinel
Start tracking the number of children that need a given text.
180
                         ], self.ann.annotate_flat(self.fa_key))
4454.3.10 by John Arbash Meinel
Start working on 'annotate_flat' which conforms to the original spec.
181
        self.assertEqual([(self.fa_key, 'simple\n'),
182
                          (self.fb_key, 'new content\n'),
4454.3.18 by John Arbash Meinel
Start tracking the number of children that need a given text.
183
                         ], self.ann.annotate_flat(self.fb_key))
4454.3.12 by John Arbash Meinel
Finish fleshing out the ability to determine a revision after conflicts.
184
185
    def test_annotate_flat_merge_and_restored_text(self):
186
        self.make_merge_and_restored_text()
187
        # fc is a simple dominator of fa
188
        self.assertEqual([(self.fa_key, 'simple\n'),
189
                          (self.fc_key, 'content\n'),
4454.3.18 by John Arbash Meinel
Start tracking the number of children that need a given text.
190
                         ], self.ann.annotate_flat(self.fd_key))
4454.3.12 by John Arbash Meinel
Finish fleshing out the ability to determine a revision after conflicts.
191
192
    def test_annotate_common_merge_text(self):
193
        self.make_common_merge_text()
194
        # there is no common point, so we just pick the lexicographical lowest
195
        # and 'b-id' comes before 'c-id'
196
        self.assertEqual([(self.fa_key, 'simple\n'),
197
                          (self.fb_key, 'new content\n'),
4454.3.18 by John Arbash Meinel
Start tracking the number of children that need a given text.
198
                         ], self.ann.annotate_flat(self.fd_key))
4454.3.12 by John Arbash Meinel
Finish fleshing out the ability to determine a revision after conflicts.
199
200
    def test_annotate_many_way_common_merge_text(self):
201
        self.make_many_way_common_merge_text()
4454.3.14 by John Arbash Meinel
Had a slightly bogus test.
202
        self.assertEqual([(self.fa_key, 'simple\n'),
203
                         (self.fb_key, 'new content\n')],
4454.3.18 by John Arbash Meinel
Start tracking the number of children that need a given text.
204
                         self.ann.annotate_flat(self.ff_key))
205
4454.3.77 by John Arbash Meinel
Add support for compatibility with old '_break_annotation_tie' function.
206
    def test_annotate_flat_respects_break_ann_tie(self):
207
        tiebreaker = annotate._break_annotation_tie
208
        try:
209
            calls = []
210
            def custom_tiebreaker(annotated_lines):
211
                self.assertEqual(2, len(annotated_lines))
212
                left = annotated_lines[0]
213
                self.assertEqual(2, len(left))
214
                self.assertEqual('new content\n', left[1])
215
                right = annotated_lines[1]
216
                self.assertEqual(2, len(right))
217
                self.assertEqual('new content\n', right[1])
218
                calls.append((left[0], right[0]))
219
                # Our custom tiebreaker takes the *largest* value, rather than
220
                # the *smallest* value
221
                if left[0] < right[0]:
222
                    return right
223
                else:
224
                    return left
225
            annotate._break_annotation_tie = custom_tiebreaker
226
            self.make_many_way_common_merge_text()
227
            self.assertEqual([(self.fa_key, 'simple\n'),
228
                             (self.fe_key, 'new content\n')],
229
                             self.ann.annotate_flat(self.ff_key))
230
            self.assertEqual([(self.fe_key, self.fc_key),
231
                              (self.fe_key, self.fb_key)], calls)
232
        finally:
233
            annotate._break_annotation_tie = tiebreaker
234
4454.3.18 by John Arbash Meinel
Start tracking the number of children that need a given text.
235
4454.3.19 by John Arbash Meinel
Have _record_annotation start to remove texts when they are no longer needed.
236
    def test_needed_keys_simple(self):
4454.3.18 by John Arbash Meinel
Start tracking the number of children that need a given text.
237
        self.make_simple_text()
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
238
        keys, ann_keys = self.ann._get_needed_keys(self.fb_key)
4454.3.18 by John Arbash Meinel
Start tracking the number of children that need a given text.
239
        self.assertEqual([self.fa_key, self.fb_key], sorted(keys))
240
        self.assertEqual({self.fa_key: 1, self.fb_key: 1},
241
                         self.ann._num_needed_children)
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
242
        self.assertEqual(set(), ann_keys)
4454.3.19 by John Arbash Meinel
Have _record_annotation start to remove texts when they are no longer needed.
243
244
    def test_needed_keys_many(self):
245
        self.make_many_way_common_merge_text()
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
246
        keys, ann_keys = self.ann._get_needed_keys(self.ff_key)
4454.3.19 by John Arbash Meinel
Have _record_annotation start to remove texts when they are no longer needed.
247
        self.assertEqual([self.fa_key, self.fb_key, self.fc_key,
248
                          self.fd_key, self.fe_key, self.ff_key,
249
                         ], sorted(keys))
250
        self.assertEqual({self.fa_key: 3,
251
                          self.fb_key: 1,
252
                          self.fc_key: 1,
253
                          self.fd_key: 1,
254
                          self.fe_key: 1,
255
                          self.ff_key: 1,
256
                         }, self.ann._num_needed_children)
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
257
        self.assertEqual(set(), ann_keys)
258
259
    def test_needed_keys_with_special_text(self):
260
        self.make_many_way_common_merge_text()
261
        spec_key = ('f-id', revision.CURRENT_REVISION)
262
        spec_text = 'simple\nnew content\nlocally modified\n'
263
        self.ann.add_special_text(spec_key, [self.fd_key, self.fe_key],
264
                                  spec_text)
265
        keys, ann_keys = self.ann._get_needed_keys(spec_key)
266
        self.assertEqual([self.fa_key, self.fb_key, self.fc_key,
267
                          self.fd_key, self.fe_key,
268
                         ], sorted(keys))
269
        self.assertEqual([spec_key], sorted(ann_keys))
4454.3.19 by John Arbash Meinel
Have _record_annotation start to remove texts when they are no longer needed.
270
4454.3.62 by John Arbash Meinel
Add a test that shows when parent texts, etc, are present, we don't request again.
271
    def test_needed_keys_with_parent_texts(self):
272
        self.make_many_way_common_merge_text()
273
        # If 'D' and 'E' are already annotated, we don't need to extract all
274
        # the texts
275
        #  D   |  'simple|new content|'
276
        #  |   |
277
        #  |   E  'simple|new content|'
278
        #  |  /
279
        #  F-'    'simple|new content|'
280
        self.ann._parent_map[self.fd_key] = (self.fb_key, self.fc_key)
281
        self.ann._text_cache[self.fd_key] = ['simple\n', 'new content\n']
282
        self.ann._annotations_cache[self.fd_key] = [
283
            (self.fa_key,),
284
            (self.fb_key, self.fc_key),
285
            ]
286
        self.ann._parent_map[self.fe_key] = (self.fa_key,)
287
        self.ann._text_cache[self.fe_key] = ['simple\n', 'new content\n']
288
        self.ann._annotations_cache[self.fe_key] = [
289
            (self.fa_key,),
290
            (self.fe_key,),
291
            ]
292
        keys, ann_keys = self.ann._get_needed_keys(self.ff_key)
293
        self.assertEqual([self.ff_key], sorted(keys))
294
        self.assertEqual({self.fd_key: 1,
295
                          self.fe_key: 1,
296
                          self.ff_key: 1,
297
                         }, self.ann._num_needed_children)
298
        self.assertEqual([], sorted(ann_keys))
299
4454.3.19 by John Arbash Meinel
Have _record_annotation start to remove texts when they are no longer needed.
300
    def test_record_annotation_removes_texts(self):
301
        self.make_many_way_common_merge_text()
302
        # Populate the caches
303
        for x in self.ann._get_needed_texts(self.ff_key):
304
            continue
305
        self.assertEqual({self.fa_key: 3,
306
                          self.fb_key: 1,
307
                          self.fc_key: 1,
308
                          self.fd_key: 1,
309
                          self.fe_key: 1,
310
                          self.ff_key: 1,
311
                         }, self.ann._num_needed_children)
312
        self.assertEqual([self.fa_key, self.fb_key, self.fc_key,
313
                          self.fd_key, self.fe_key, self.ff_key,
314
                         ], sorted(self.ann._text_cache.keys()))
4454.3.22 by John Arbash Meinel
Need to record the other annotations before we can record this,
315
        self.ann._record_annotation(self.fa_key, [], [])
4454.3.19 by John Arbash Meinel
Have _record_annotation start to remove texts when they are no longer needed.
316
        self.ann._record_annotation(self.fb_key, [self.fa_key], [])
317
        self.assertEqual({self.fa_key: 2,
318
                          self.fb_key: 1,
319
                          self.fc_key: 1,
320
                          self.fd_key: 1,
321
                          self.fe_key: 1,
322
                          self.ff_key: 1,
323
                         }, self.ann._num_needed_children)
324
        self.assertTrue(self.fa_key in self.ann._text_cache)
4454.3.21 by John Arbash Meinel
Assert that entries in the annotation cache also get cleaned up.
325
        self.assertTrue(self.fa_key in self.ann._annotations_cache)
4454.3.22 by John Arbash Meinel
Need to record the other annotations before we can record this,
326
        self.ann._record_annotation(self.fc_key, [self.fa_key], [])
4454.3.19 by John Arbash Meinel
Have _record_annotation start to remove texts when they are no longer needed.
327
        self.ann._record_annotation(self.fd_key, [self.fb_key, self.fc_key], [])
4454.3.22 by John Arbash Meinel
Need to record the other annotations before we can record this,
328
        self.assertEqual({self.fa_key: 1,
4454.3.19 by John Arbash Meinel
Have _record_annotation start to remove texts when they are no longer needed.
329
                          self.fb_key: 0,
330
                          self.fc_key: 0,
331
                          self.fd_key: 1,
332
                          self.fe_key: 1,
333
                          self.ff_key: 1,
334
                         }, self.ann._num_needed_children)
335
        self.assertTrue(self.fa_key in self.ann._text_cache)
4454.3.21 by John Arbash Meinel
Assert that entries in the annotation cache also get cleaned up.
336
        self.assertTrue(self.fa_key in self.ann._annotations_cache)
4454.3.19 by John Arbash Meinel
Have _record_annotation start to remove texts when they are no longer needed.
337
        self.assertFalse(self.fb_key in self.ann._text_cache)
4454.3.22 by John Arbash Meinel
Need to record the other annotations before we can record this,
338
        self.assertFalse(self.fb_key in self.ann._annotations_cache)
4454.3.19 by John Arbash Meinel
Have _record_annotation start to remove texts when they are no longer needed.
339
        self.assertFalse(self.fc_key in self.ann._text_cache)
4454.3.22 by John Arbash Meinel
Need to record the other annotations before we can record this,
340
        self.assertFalse(self.fc_key in self.ann._annotations_cache)
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
341
342
    def test_annotate_special_text(self):
343
        # Things like WT and PreviewTree want to annotate an arbitrary text
344
        # ('current:') so we need a way to add that to the group of files to be
345
        # annotated.
346
        self.make_many_way_common_merge_text()
347
        #  A-.    'simple|content|'
348
        #  |\ \
349
        #  B | |  'simple|new content|'
350
        #  | | |
351
        #  | C |  'simple|new content|'
352
        #  |/  |
353
        #  D   |  'simple|new content|'
354
        #  |   |
355
        #  |   E  'simple|new content|'
356
        #  |  /
357
        #  SPEC   'simple|new content|locally modified|'
358
        spec_key = ('f-id', revision.CURRENT_REVISION)
359
        spec_text = 'simple\nnew content\nlocally modified\n'
360
        self.ann.add_special_text(spec_key, [self.fd_key, self.fe_key],
361
                                  spec_text)
362
        self.assertAnnotateEqual([(self.fa_key,),
363
                                  (self.fb_key, self.fc_key, self.fe_key),
4454.3.66 by John Arbash Meinel
Implement no-graph support for the Python version.
364
                                  (spec_key,),
4454.3.61 by John Arbash Meinel
Start implementing an Annotator.add_special_text functionality.
365
                                 ], spec_key,
366
                                 exp_text=spec_text)
4454.3.66 by John Arbash Meinel
Implement no-graph support for the Python version.
367
368
    def test_no_graph(self):
369
        self.make_no_graph_texts()
370
        self.assertAnnotateEqual([(self.fa_key,),
371
                                  (self.fa_key,),
372
                                 ], self.fa_key)
373
        self.assertAnnotateEqual([(self.fb_key,),
374
                                  (self.fb_key,),
375
                                 ], self.fb_key)