33
32
# self.transport_server = MemoryServer
34
33
# self.make_kernel_like_tree(self.get_url())
35
34
tree = self.make_kernel_like_added_tree()
36
self.time(self.run_bzr, ['commit', '-m', 'first post'])
35
self.time(self.run_bzr, 'commit', '-m', 'first post')
38
37
def test_partial_commit_kernel_like_tree(self):
39
38
"""Commit of 1/8th of a fresh import of a clean kernel sized tree."""
40
39
tree = self.make_kernel_like_added_tree()
41
self.time(self.run_bzr, ['commit', '-m', 'first post', '1'])
40
self.time(self.run_bzr, 'commit', '-m', 'first post', '1')
43
42
def test_no_op_commit_in_kernel_like_tree(self):
44
43
"""Run commit --unchanged in a kernel sized tree"""
45
44
tree = self.make_kernel_like_committed_tree()
46
self.time(self.run_bzr, ['commit', '-m', 'no changes', '--unchanged'])
45
self.time(self.run_bzr, 'commit', '-m', 'no changes', '--unchanged')
48
47
def test_commit_one_in_kernel_like_tree(self):
49
48
"""Time committing a single change, when not directly specified"""
52
51
# working-tree is hardlinked, so replace a file and commit the change
53
52
os.remove('4/4/4/4')
54
53
open('4/4/4/4', 'wb').write('new contents\n')
55
self.time(self.run_bzr, ['commit', '-m', 'second'])
54
self.time(self.run_bzr, 'commit', '-m', 'second')
57
56
def test_partial_commit_one_in_kernel_like_tree(self):
58
57
"""Time committing a single change when it is directly specified"""
61
60
# working-tree is hardlinked, so replace a file and commit the change
62
61
os.remove('4/4/4/4')
63
62
open('4/4/4/4', 'wb').write('new contents\n')
64
self.time(self.run_bzr, ['commit', '-m', 'second', '4/4/4/4'])
63
self.time(self.run_bzr, 'commit', '-m', 'second', '4/4/4/4')
66
65
def make_simple_tree(self):
67
66
"""A small, simple tree. No caching needed"""
73
72
def test_cmd_commit(self):
74
73
"""Test execution of simple commit"""
75
74
tree = self.make_simple_tree()
76
self.time(self.run_bzr, ['commit', '-m', 'init simple tree'])
75
self.time(self.run_bzr, 'commit', '-m', 'init simple tree')
78
77
def test_cmd_commit_subprocess(self):
79
78
"""Text startup and execution of a simple commit."""