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