/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/benchmarks/bench_bundle.py

  • Committer: John Arbash Meinel
  • Date: 2008-07-09 21:42:24 UTC
  • mto: This revision was merged to the branch mainline in revision 3543.
  • Revision ID: john@arbash-meinel.com-20080709214224-r75k87r6a01pfc3h
Restore a real weave merge to 'bzr merge --weave'.

To do so efficiently, we only add the simple LCAs to the final weave
object, unless we run into complexities with the merge graph.
This gives the same effective result as adding all the texts,
with the advantage of not having to extract all of them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""Tests for bzr bundle performance."""
18
18
 
32
32
 
33
33
class BundleBenchmark(Benchmark):
34
34
    """Benchmarks for bzr bundle performance and bzr merge with a bundle."""
35
 
 
 
35
   
36
36
    def test_create_bundle_known_kernel_like_tree(self):
37
37
        """Create a bundle for a kernel sized tree with no ignored, unknowns,
38
38
        or added and one commit.
39
 
        """
 
39
        """ 
40
40
        self.make_kernel_like_committed_tree()
41
41
        self.time(self.run_bzr, ['bundle', '--revision', '..-1'])
42
42
 
43
43
    def test_create_bundle_many_commit_tree (self):
44
 
        """Create a bundle for a tree with many commits but no changes."""
 
44
        """Create a bundle for a tree with many commits but no changes.""" 
45
45
        self.make_many_commit_tree()
46
46
        self.time(self.run_bzr, ['bundle', '--revision', '..-1'])
47
47
 
48
48
    def test_create_bundle_heavily_merged_tree(self):
49
 
        """Create a bundle for a heavily merged tree."""
 
49
        """Create a bundle for a heavily merged tree.""" 
50
50
        self.make_heavily_merged_tree()
51
51
        self.time(self.run_bzr, ['bundle', '--revision', '..-1'])
52
 
 
 
52
        
53
53
    def test_apply_bundle_known_kernel_like_tree(self):
54
54
        """Create a bundle for a kernel sized tree with no ignored, unknowns,
55
55
        or added and one commit.
56
 
        """
 
56
        """ 
57
57
        tree = self.make_kernel_like_committed_tree('tree')
58
58
 
59
59
        f = open('bundle', 'wb')
66
66
        tree2 = self.make_branch_and_tree('branch_a')
67
67
        os.chdir('branch_a')
68
68
        self.time(self.run_bzr, ['merge', '../bundle'])
69
 
 
 
69
 
70
70
 
71
71
class BundleLibraryLevelWriteBenchmark(Benchmark):
72
72
    """ Benchmarks for the write_bundle library function. """
183
183
 
184
184
 
185
185
if __name__ == '__main__':
186
 
    # USE the following if you want to regenerate the above test functions
 
186
    # USE the following if you want to regenerate the above test functions 
187
187
    for treesize, treesize_h in [(5, "small"), (100, "moderate"),
188
188
                                 (1000, "big")]:
189
189
        for bundlefiles, bundlefiles_h in [(5, "few"), (100, "some")]:
190
190
            if bundlefiles > treesize:
191
191
                continue
192
192
            for num_revisions in [1, 100]:
193
 
                if (num_revisions >= 100 and
 
193
                if (num_revisions >= 100 and 
194
194
                        (bundlefiles >= 100 or treesize >= 1000)):
195
195
                    # Skip the 100x100x? tests.
196
196
                    # And the 100x?x1000