~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_revision.py

  • Committer: Matt Nordhoff
  • Date: 2009-04-04 02:50:01 UTC
  • mfrom: (4253 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4256.
  • Revision ID: mnordhoff@mattnordhoff.com-20090404025001-z1403k0tatmc8l91
Merge bzr.dev, fixing conflicts.

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
 
208
212
    def test_get_apparent_author(self):
209
213
        r = revision.Revision('1')
210
214
        r.committer = 'A'
211
 
        self.assertEqual('A', r.get_apparent_author())
212
 
        r.properties['author'] = 'B'
213
 
        self.assertEqual('B', r.get_apparent_author())
 
215
        author = self.applyDeprecated(
 
216
                symbol_versioning.deprecated_in((1, 13, 0)),
 
217
                r.get_apparent_author)
 
218
        self.assertEqual('A', author)
 
219
        r.properties['author'] = 'B'
 
220
        author = self.applyDeprecated(
 
221
                symbol_versioning.deprecated_in((1, 13, 0)),
 
222
                r.get_apparent_author)
 
223
        self.assertEqual('B', author)
 
224
        r.properties['authors'] = 'C\nD'
 
225
        author = self.applyDeprecated(
 
226
                symbol_versioning.deprecated_in((1, 13, 0)),
 
227
                r.get_apparent_author)
 
228
        self.assertEqual('C', author)
 
229
 
 
230
    def test_get_apparent_authors(self):
 
231
        r = revision.Revision('1')
 
232
        r.committer = 'A'
 
233
        self.assertEqual(['A'], r.get_apparent_authors())
 
234
        r.properties['author'] = 'B'
 
235
        self.assertEqual(['B'], r.get_apparent_authors())
 
236
        r.properties['authors'] = 'C\nD'
 
237
        self.assertEqual(['C', 'D'], r.get_apparent_authors())
 
238
 
 
239
 
 
240
class TestRevisionBugs(TestCase):
 
241
    """Tests for getting the bugs that a revision is linked to."""
 
242
 
 
243
    def test_no_bugs(self):
 
244
        r = revision.Revision('1')
 
245
        self.assertEqual([], list(r.iter_bugs()))
 
246
 
 
247
    def test_some_bugs(self):
 
248
        r = revision.Revision(
 
249
            '1', properties={
 
250
                'bugs': bugtracker.encode_fixes_bug_urls(
 
251
                    ['http://example.com/bugs/1',
 
252
                     'http://launchpad.net/bugs/1234'])})
 
253
        self.assertEqual(
 
254
            [('http://example.com/bugs/1', bugtracker.FIXED),
 
255
             ('http://launchpad.net/bugs/1234', bugtracker.FIXED)],
 
256
            list(r.iter_bugs()))
 
257
 
 
258
    def test_no_status(self):
 
259
        r = revision.Revision(
 
260
            '1', properties={'bugs': 'http://example.com/bugs/1'})
 
261
        self.assertRaises(InvalidLineInBugsProperty, list, r.iter_bugs())
 
262
 
 
263
    def test_too_much_information(self):
 
264
        r = revision.Revision(
 
265
            '1', properties={'bugs': 'http://example.com/bugs/1 fixed bar'})
 
266
        self.assertRaises(InvalidLineInBugsProperty, list, r.iter_bugs())
 
267
 
 
268
    def test_invalid_status(self):
 
269
        r = revision.Revision(
 
270
            '1', properties={'bugs': 'http://example.com/bugs/1 faxed'})
 
271
        self.assertRaises(InvalidBugStatus, list, r.iter_bugs())