~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-08-06 02:31:39 UTC
  • mfrom: (2665.1.2 stricter-run_bzr)
  • Revision ID: pqm@pqm.ubuntu.com-20070806023139-97nrt9mu4qihcdf3
(robertc) Merge Michael Hudson's run_bzr keyword usage fix. (Michael Hudson)

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