~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_pack.py

(gz) Remove bzrlib/util/elementtree/ package (Martin Packman)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
import os
20
20
 
21
21
from bzrlib import tests
 
22
from bzrlib.tests.matchers import ContainsNoVfsCalls
22
23
 
23
24
 
24
25
class TestPack(tests.TestCaseWithTransport):
83
84
 
84
85
        pack_names = transport.list_dir('repository/obsolete_packs')
85
86
        self.assertTrue(len(pack_names) == 0)
 
87
 
 
88
 
 
89
class TestSmartServerPack(tests.TestCaseWithTransport):
 
90
 
 
91
    def test_simple_pack(self):
 
92
        self.setup_smart_server_with_call_log()
 
93
        t = self.make_branch_and_tree('branch')
 
94
        self.build_tree_contents([('branch/foo', 'thecontents')])
 
95
        t.add("foo")
 
96
        t.commit("message")
 
97
        self.reset_smart_call_log()
 
98
        out, err = self.run_bzr(['pack', self.get_url('branch')])
 
99
        # This figure represent the amount of HPSS calls to perform this use
 
100
        # case. It is entirely ok to reduce this number if a test fails due to
 
101
        # rpc_count # being too low. If rpc_count increases, more network
 
102
        # roundtrips have become necessary for this use case. Please do not
 
103
        # adjust this number upwards without agreement from bzr's network
 
104
        # support maintainers.
 
105
        self.assertLength(6, self.hpss_calls)
 
106
        self.assertLength(1, self.hpss_connections)
 
107
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)