~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/benchmarks/bench_commit.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-06-18 05:22:35 UTC
  • mfrom: (1551.15.27 Aaron's mergeable stuff)
  • Revision ID: pqm@pqm.ubuntu.com-20070618052235-mvns8j28szyzscy0
Turn list-weave into list-versionedfile

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
 
26
26
class CommitBenchmark(Benchmark):
27
 
    """Benchmarks for ``bzr commit``"""
28
27
 
29
28
    def test_commit_kernel_like_tree(self):
30
29
        """Commit of a fresh import of a clean kernel sized tree."""
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')
37
36
 
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')
42
41
 
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')
47
46
 
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')
56
55
 
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')
65
64
 
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')
77
76
 
78
77
    def test_cmd_commit_subprocess(self):
79
78
        """Text startup and execution of a simple commit."""