~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/benchmarks/bench_bundle.py

  • Committer: Marius Kruger
  • Date: 2010-07-10 21:28:56 UTC
  • mto: (5384.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5385.
  • Revision ID: marius.kruger@enerweb.co.za-20100710212856-uq4ji3go0u5se7hx
* Update documentation
* add NEWS

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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
"""Tests for bzr bundle performance."""
18
18
 
21
21
import shutil
22
22
 
23
23
from bzrlib import bzrdir
24
 
from bzrlib.add import smart_add
25
24
from bzrlib.benchmarks import Benchmark
26
25
from bzrlib.branch import Branch
27
26
from bzrlib.bundle.apply_bundle import install_bundle
33
32
 
34
33
class BundleBenchmark(Benchmark):
35
34
    """Benchmarks for bzr bundle performance and bzr merge with a bundle."""
36
 
   
 
35
 
37
36
    def test_create_bundle_known_kernel_like_tree(self):
38
37
        """Create a bundle for a kernel sized tree with no ignored, unknowns,
39
38
        or added and one commit.
40
 
        """ 
 
39
        """
41
40
        self.make_kernel_like_committed_tree()
42
 
        self.time(self.run_bzr, 'bundle', '--revision', '..-1')
 
41
        self.time(self.run_bzr, ['bundle', '--revision', '..-1'])
43
42
 
44
43
    def test_create_bundle_many_commit_tree (self):
45
 
        """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."""
46
45
        self.make_many_commit_tree()
47
 
        self.time(self.run_bzr, 'bundle', '--revision', '..-1')
 
46
        self.time(self.run_bzr, ['bundle', '--revision', '..-1'])
48
47
 
49
48
    def test_create_bundle_heavily_merged_tree(self):
50
 
        """Create a bundle for a heavily merged tree.""" 
 
49
        """Create a bundle for a heavily merged tree."""
51
50
        self.make_heavily_merged_tree()
52
 
        self.time(self.run_bzr, 'bundle', '--revision', '..-1')
53
 
        
 
51
        self.time(self.run_bzr, ['bundle', '--revision', '..-1'])
 
52
 
54
53
    def test_apply_bundle_known_kernel_like_tree(self):
55
54
        """Create a bundle for a kernel sized tree with no ignored, unknowns,
56
55
        or added and one commit.
57
 
        """ 
 
56
        """
58
57
        tree = self.make_kernel_like_committed_tree('tree')
59
58
 
60
59
        f = open('bundle', 'wb')
66
65
 
67
66
        tree2 = self.make_branch_and_tree('branch_a')
68
67
        os.chdir('branch_a')
69
 
        self.time(self.run_bzr, 'merge', '../bundle')
70
 
 
 
68
        self.time(self.run_bzr, ['merge', '../bundle'])
 
69
 
71
70
 
72
71
class BundleLibraryLevelWriteBenchmark(Benchmark):
73
72
    """ Benchmarks for the write_bundle library function. """
184
183
 
185
184
 
186
185
if __name__ == '__main__':
187
 
    # 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
188
187
    for treesize, treesize_h in [(5, "small"), (100, "moderate"),
189
188
                                 (1000, "big")]:
190
189
        for bundlefiles, bundlefiles_h in [(5, "few"), (100, "some")]:
191
190
            if bundlefiles > treesize:
192
191
                continue
193
192
            for num_revisions in [1, 100]:
194
 
                if (num_revisions >= 100 and 
 
193
                if (num_revisions >= 100 and
195
194
                        (bundlefiles >= 100 or treesize >= 1000)):
196
195
                    # Skip the 100x100x? tests.
197
196
                    # And the 100x?x1000