1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright (C) 2011 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Tests for InterBranch.fetch."""
from bzrlib.revision import NULL_REVISION
from bzrlib.tests.per_interbranch import (
TestCaseWithInterBranch,
)
class TestInterBranchFetch(TestCaseWithInterBranch):
def test_fetch_revisions(self):
"""Test fetch-revision operation."""
wt = self.make_from_branch_and_tree('b1')
b1 = wt.branch
self.build_tree_contents([('b1/foo', 'hello')])
wt.add(['foo'], ['foo-id'])
wt.commit('lala!', rev_id='revision-1', allow_pointless=False)
b2 = self.make_to_branch('b2')
b2.fetch(b1)
# fetch does not update the last revision
self.assertEquals(NULL_REVISION, b2.last_revision())
rev = b2.repository.get_revision('revision-1')
tree = b2.repository.revision_tree('revision-1')
tree.lock_read()
self.addCleanup(tree.unlock)
self.assertEqual(tree.get_file_text('foo-id'), 'hello')
|