/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_missing.py

  • Committer: John Arbash Meinel
  • Date: 2007-03-01 21:56:19 UTC
  • mto: (2255.7.84 dirstate)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: john@arbash-meinel.com-20070301215619-wpt6kz8yem3ypu1b
Update to dirstate locking.
Move all of WT4.lock_* functions locally, so that they can
properly interact and cleanup around when we lock/unlock the
dirstate file.
Change all Lock objects to be non-blocking. So that if someone
grabs a lock on the DirState we find out immediately, rather
than blocking.
Change WT4.unlock() so that if the dirstate is dirty, it will
save the contents even if it only has a read lock.
It does this by trying to take a write lock, if it fails
we just ignore it. If it succeeds, then we can flush to disk.
This is more important now that DirState tracks file changes.
It allows 'bzr status' to update the cached stat and sha values.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 by Canonical Ltd
2
 
 
 
1
# Copyright (C) 2005 Canonical Ltd
 
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
 
 
7
#
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
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
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
18
 
19
19
 
20
20
from bzrlib.builtins import merge
21
 
from bzrlib.missing import find_unmerged
 
21
from bzrlib.missing import find_unmerged, iter_log_data
22
22
from bzrlib.tests import TestCaseWithTransport
23
23
from bzrlib.workingtree import WorkingTree
24
24
 
35
35
        self.assertEqual(find_unmerged(original, puller), ([], []))
36
36
        original_tree.commit('a', rev_id='a')
37
37
        self.assertEqual(find_unmerged(original, puller), ([(1, u'a')], []))
38
 
        puller.pull(original)
 
38
        puller_tree.pull(original)
39
39
        self.assertEqual(find_unmerged(original, puller), ([], []))
40
 
        merger.pull(original)
 
40
        merger_tree.pull(original)
41
41
        original_tree.commit('b', rev_id='b')
42
42
        original_tree.commit('c', rev_id='c')
43
43
        self.assertEqual(find_unmerged(original, puller), ([(2, u'b'), 
44
44
                                                            (3, u'c')], []))
45
45
 
46
 
        puller.pull(original)
 
46
        puller_tree.pull(original)
47
47
        self.assertEqual(find_unmerged(original, puller), ([], []))
48
48
        self.assertEqual(find_unmerged(original, merger), ([(2, u'b'), 
49
49
                                                            (3, u'c')], []))
52
52
                                                            (3, u'c')], []))
53
53
        merger_tree.commit('d', rev_id='d')
54
54
        self.assertEqual(find_unmerged(original, merger), ([], [(2, 'd')]))
 
55
 
 
56
    def test_iter_log_data(self):
 
57
        base_tree = self.make_branch_and_tree('base')
 
58
        self.build_tree(['base/a'])
 
59
        base_tree.add(['a'], ['a-id'])
 
60
        base_tree.commit('add a', rev_id='b-1')
 
61
 
 
62
        child_tree = base_tree.bzrdir.sprout('child').open_workingtree()
 
63
 
 
64
        self.build_tree(['child/b'])
 
65
        child_tree.add(['b'], ['b-id'])
 
66
        child_tree.commit('adding b', rev_id='c-2')
 
67
 
 
68
        child_tree.remove(['a'])
 
69
        child_tree.commit('removing a', rev_id='c-3')
 
70
 
 
71
        self.build_tree_contents([('child/b', 'new contents for b\n')])
 
72
        child_tree.commit('modifying b', rev_id='c-4')
 
73
 
 
74
        child_tree.rename_one('b', 'c')
 
75
        child_tree.commit('rename b=>c', rev_id='c-5')
 
76
 
 
77
        base_extra, child_extra = find_unmerged(base_tree.branch,
 
78
                                                child_tree.branch)
 
79
        results = list(iter_log_data(base_extra, base_tree.branch.repository,
 
80
                                     verbose=True))
 
81
        self.assertEqual([], results)
 
82
 
 
83
        results = list(iter_log_data(child_extra, child_tree.branch.repository,
 
84
                                     verbose=True))
 
85
        self.assertEqual(4, len(results))
 
86
 
 
87
        r0,r1,r2,r3 = results
 
88
 
 
89
        self.assertEqual((2, 'c-2'), (r0[0], r0[1].revision_id))
 
90
        self.assertEqual((3, 'c-3'), (r1[0], r1[1].revision_id))
 
91
        self.assertEqual((4, 'c-4'), (r2[0], r2[1].revision_id))
 
92
        self.assertEqual((5, 'c-5'), (r3[0], r3[1].revision_id))
 
93
 
 
94
        delta0 = r0[2]
 
95
        self.assertNotEqual(None, delta0)
 
96
        self.assertEqual([('b', 'b-id', 'file')], delta0.added)
 
97
        self.assertEqual([], delta0.removed)
 
98
        self.assertEqual([], delta0.renamed)
 
99
        self.assertEqual([], delta0.modified)
 
100
 
 
101
        delta1 = r1[2]
 
102
        self.assertNotEqual(None, delta1)
 
103
        self.assertEqual([], delta1.added)
 
104
        self.assertEqual([('a', 'a-id', 'file')], delta1.removed)
 
105
        self.assertEqual([], delta1.renamed)
 
106
        self.assertEqual([], delta1.modified)
 
107
 
 
108
        delta2 = r2[2]
 
109
        self.assertNotEqual(None, delta2)
 
110
        self.assertEqual([], delta2.added)
 
111
        self.assertEqual([], delta2.removed)
 
112
        self.assertEqual([], delta2.renamed)
 
113
        self.assertEqual([('b', 'b-id', 'file', True, False)], delta2.modified)
 
114
 
 
115
        delta3 = r3[2]
 
116
        self.assertNotEqual(None, delta3)
 
117
        self.assertEqual([], delta3.added)
 
118
        self.assertEqual([], delta3.removed)
 
119
        self.assertEqual([('b', 'c', 'b-id', 'file', False, False)],
 
120
                         delta3.renamed)
 
121
        self.assertEqual([], delta3.modified)