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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Copyright (C) 2006 by 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Tests for repository commit builder."""
from bzrlib.errors import UnsupportedOperation
from bzrlib.repository import CommitBuilder
from bzrlib.tests.repository_implementations.test_repository import TestCaseWithRepository
class TestCommitBuilder(TestCaseWithRepository):
def test_get_commit_builder(self):
tree = self.make_branch_and_tree(".")
builder = tree.branch.get_commit_builder([])
self.assertIsInstance(builder, CommitBuilder)
def test_finish_inventory(self):
tree = self.make_branch_and_tree(".")
builder = tree.branch.get_commit_builder([])
builder.finish_inventory()
def test_commit_message(self):
tree = self.make_branch_and_tree(".")
builder = tree.branch.get_commit_builder([])
builder.finish_inventory()
rev_id = builder.commit('foo bar blah')
rev = tree.branch.repository.get_revision(rev_id)
self.assertEqual('foo bar blah', rev.message)
def test_commit_with_revision_id(self):
tree = self.make_branch_and_tree(".")
try:
builder = tree.branch.get_commit_builder([], revision_id="foo")
except UnsupportedOperation:
# This format doesn't support supplied revision ids
return
builder.finish_inventory()
self.assertEqual("foo", builder.commit('foo bar'))
self.assertTrue(tree.branch.repository.has_revision("foo"))
# the revision id must be set on the inventory when saving it. This does not
# precisely test that - a repository that wants to can add it on deserialisation,
# but thats all the current contract guarantees anyway.
self.assertEqual('foo', tree.branch.repository.get_inventory('foo').revision_id)
def test_commit(self):
tree = self.make_branch_and_tree(".")
builder = tree.branch.get_commit_builder([])
builder.finish_inventory()
rev_id = builder.commit('foo bar')
self.assertNotEqual(None, rev_id)
self.assertTrue(tree.branch.repository.has_revision(rev_id))
# the revision id must be set on the inventory when saving it. This does not
# precisely test that - a repository that wants to can add it on deserialisation,
# but thats all the current contract guarantees anyway.
self.assertEqual(rev_id, tree.branch.repository.get_inventory(rev_id).revision_id)
|