~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_revision.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-01 08:02:42 UTC
  • mfrom: (5390.3.3 faster-revert-593560)
  • Revision ID: pqm@pqm.ubuntu.com-20100901080242-esg62ody4frwmy66
(spiv) Avoid repeatedly calling self.target.all_file_ids() in
 InterTree.iter_changes. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
 
18
18
import os
19
19
import warnings
20
20
 
21
21
from bzrlib import (
 
22
    bugtracker,
22
23
    revision,
23
24
    symbol_versioning,
24
25
    )
25
26
from bzrlib.branch import Branch
26
 
from bzrlib.errors import NoSuchRevision
 
27
from bzrlib.errors import (
 
28
    InvalidBugStatus,
 
29
    InvalidLineInBugsProperty,
 
30
    NoSuchRevision,
 
31
    )
27
32
from bzrlib.deprecated_graph import Graph
28
33
from bzrlib.revision import (find_present_ancestors,
29
34
                             NULL_REVISION)
30
 
from bzrlib.symbol_versioning import one_three
31
35
from bzrlib.tests import TestCase, TestCaseWithTransport
32
36
from bzrlib.trace import mutter
33
37
from bzrlib.workingtree import WorkingTree
123
127
                       rev_id, branch.repository.get_ancestry(rev_id))
124
128
                result = sorted(branch.repository.get_ancestry(rev_id))
125
129
                self.assertEquals(result, [None] + sorted(anc))
126
 
    
 
130
 
127
131
 
128
132
class TestIntermediateRevisions(TestCaseWithTransport):
129
133
 
204
208
        self.assertEqual('a', r.get_summary())
205
209
        r.message = '\na\nb'
206
210
        self.assertEqual('a', r.get_summary())
 
211
        r.message = None
 
212
        self.assertEqual('', r.get_summary())
207
213
 
208
 
    def test_get_apparent_author(self):
 
214
    def test_get_apparent_authors(self):
209
215
        r = revision.Revision('1')
210
216
        r.committer = 'A'
211
 
        self.assertEqual('A', r.get_apparent_author())
 
217
        self.assertEqual(['A'], r.get_apparent_authors())
212
218
        r.properties['author'] = 'B'
213
 
        self.assertEqual('B', r.get_apparent_author())
 
219
        self.assertEqual(['B'], r.get_apparent_authors())
 
220
        r.properties['authors'] = 'C\nD'
 
221
        self.assertEqual(['C', 'D'], r.get_apparent_authors())
 
222
 
 
223
    def test_get_apparent_authors_no_committer(self):
 
224
        r = revision.Revision('1')
 
225
        self.assertEqual([], r.get_apparent_authors())
 
226
 
 
227
 
 
228
class TestRevisionBugs(TestCase):
 
229
    """Tests for getting the bugs that a revision is linked to."""
 
230
 
 
231
    def test_no_bugs(self):
 
232
        r = revision.Revision('1')
 
233
        self.assertEqual([], list(r.iter_bugs()))
 
234
 
 
235
    def test_some_bugs(self):
 
236
        r = revision.Revision(
 
237
            '1', properties={
 
238
                'bugs': bugtracker.encode_fixes_bug_urls(
 
239
                    ['http://example.com/bugs/1',
 
240
                     'http://launchpad.net/bugs/1234'])})
 
241
        self.assertEqual(
 
242
            [('http://example.com/bugs/1', bugtracker.FIXED),
 
243
             ('http://launchpad.net/bugs/1234', bugtracker.FIXED)],
 
244
            list(r.iter_bugs()))
 
245
 
 
246
    def test_no_status(self):
 
247
        r = revision.Revision(
 
248
            '1', properties={'bugs': 'http://example.com/bugs/1'})
 
249
        self.assertRaises(InvalidLineInBugsProperty, list, r.iter_bugs())
 
250
 
 
251
    def test_too_much_information(self):
 
252
        r = revision.Revision(
 
253
            '1', properties={'bugs': 'http://example.com/bugs/1 fixed bar'})
 
254
        self.assertRaises(InvalidLineInBugsProperty, list, r.iter_bugs())
 
255
 
 
256
    def test_invalid_status(self):
 
257
        r = revision.Revision(
 
258
            '1', properties={'bugs': 'http://example.com/bugs/1 faxed'})
 
259
        self.assertRaises(InvalidBugStatus, list, r.iter_bugs())