~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Martin Packman
  • Date: 2012-01-05 10:37:58 UTC
  • mto: This revision was merged to the branch mainline in revision 6427.
  • Revision ID: martin.packman@canonical.com-20120105103758-wzftnmsip5iv9n2g
Revert addition of get_message_encoding function

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.assertThat(self.hpss_calls, ContainsNoVfsCalls)