~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_interbranch/test_fetch.py

  • Committer: John Arbash Meinel
  • Date: 2011-05-11 11:35:28 UTC
  • mto: This revision was merged to the branch mainline in revision 5851.
  • Revision ID: john@arbash-meinel.com-20110511113528-qepibuwxicjrbb2h
Break compatibility with python <2.6.

This includes auditing the code for places where we were doing
explicit 'sys.version' checks and removing them as appropriate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2011 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 InterBranch.fetch."""
 
18
 
 
19
from bzrlib.revision import NULL_REVISION
 
20
from bzrlib.tests.per_interbranch import (
 
21
    TestCaseWithInterBranch,
 
22
    )
 
23
 
 
24
 
 
25
class TestInterBranchFetch(TestCaseWithInterBranch):
 
26
 
 
27
    def test_fetch_revisions(self):
 
28
        """Test fetch-revision operation."""
 
29
        wt = self.make_from_branch_and_tree('b1')
 
30
        b1 = wt.branch
 
31
        self.build_tree_contents([('b1/foo', 'hello')])
 
32
        wt.add(['foo'], ['foo-id'])
 
33
        wt.commit('lala!', rev_id='revision-1', allow_pointless=False)
 
34
 
 
35
        b2 = self.make_to_branch('b2')
 
36
        b2.fetch(b1)
 
37
 
 
38
        # fetch does not update the last revision
 
39
        self.assertEquals(NULL_REVISION, b2.last_revision())
 
40
 
 
41
        rev = b2.repository.get_revision('revision-1')
 
42
        tree = b2.repository.revision_tree('revision-1')
 
43
        tree.lock_read()
 
44
        self.addCleanup(tree.unlock)
 
45
        self.assertEqual(tree.get_file_text('foo-id'), 'hello')
 
46
 
 
47