~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_basis_inventory.py

Merge from integration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2004, 2005 by 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
import os
 
18
 
 
19
from bzrlib.tests import TestCaseInTempDir
 
20
from bzrlib.branch import Branch
 
21
from bzrlib.xml5 import serializer_v5
 
22
 
 
23
 
 
24
class TestBasisInventory(TestCaseInTempDir):
 
25
 
 
26
    def test_create(self):
 
27
        # Make sure the basis file is created by a commit
 
28
        b = Branch.initialize(u'.')
 
29
        t = b.working_tree()
 
30
        open('a', 'wb').write('a\n')
 
31
        t.add('a')
 
32
        t.commit('a', rev_id='r1')
 
33
 
 
34
        self.failUnlessExists('.bzr/basis-inventory.r1')
 
35
 
 
36
        basis_inv_txt = t.read_basis_inventory('r1')
 
37
        basis_inv = serializer_v5.read_inventory_from_string(basis_inv_txt)
 
38
        #self.assertEquals('r1', basis_inv.revision_id)
 
39
        
 
40
        store_inv = b.get_inventory('r1')
 
41
        self.assertEquals(store_inv._byid, basis_inv._byid)
 
42
 
 
43
        open('b', 'wb').write('b\n')
 
44
        t.add('b')
 
45
        t.commit('b', rev_id='r2')
 
46
 
 
47
        self.failIfExists('.bzr/basis-inventory.r1')
 
48
        self.failUnlessExists('.bzr/basis-inventory.r2')
 
49
 
 
50
        basis_inv_txt = t.read_basis_inventory('r2')
 
51
        basis_inv = serializer_v5.read_inventory_from_string(basis_inv_txt)
 
52
        store_inv = b.get_inventory('r2')
 
53
 
 
54
        self.assertEquals(store_inv._byid, basis_inv._byid)
 
55