56
55
from bzrlib.trace import mutter
57
56
from bzrlib.tests.TestUtil import TestLoader, TestSuite
58
57
from bzrlib.tests.treeshape import build_tree_contents
59
from bzrlib.workingtree import WorkingTree
58
from bzrlib.workingtree import WorkingTree, WorkingTreeFormat2
61
60
default_transport = LocalRelpathServer
82
81
import bzrlib.tests.blackbox
83
82
import bzrlib.tests.branch_implementations
83
import bzrlib.tests.bzrdir_implementations
84
import bzrlib.tests.repository_implementations
85
import bzrlib.tests.workingtree_implementations
88
bzrlib.tests.blackbox,
86
89
bzrlib.tests.branch_implementations,
90
bzrlib.tests.bzrdir_implementations,
91
bzrlib.tests.repository_implementations,
92
bzrlib.tests.workingtree_implementations,
259
265
charjunk=lambda x: False)
260
266
return ''.join(difflines)
262
def assertEqualDiff(self, a, b):
268
def assertEqualDiff(self, a, b, message=None):
263
269
"""Assert two texts are equal, if not raise an exception.
265
271
This is intended for use with multi-line strings where it can
268
274
# TODO: perhaps override assertEquals to call this for strings?
271
raise AssertionError("texts not equal:\n" +
278
message = "texts not equal:\n"
279
raise AssertionError(message +
272
280
self._ndiff_strings(a, b))
282
def assertEqualMode(self, mode, mode_test):
283
self.assertEqual(mode, mode_test,
284
'mode mismatch %o != %o' % (mode, mode_test))
274
286
def assertStartsWith(self, s, prefix):
275
287
if not s.startswith(prefix):
276
288
raise AssertionError('string %r does not start with %r' % (s, prefix))
613
625
elif line_endings == 'native':
616
raise BzrError('Invalid line ending request %r' % (line_endings,))
628
raise errors.BzrError('Invalid line ending request %r' % (line_endings,))
617
629
content = "contents of %s%s" % (name, end)
618
630
transport.put(urlescape(name), StringIO(content))
663
675
relpath provides for clients to get a path relative to the base url.
664
676
These should only be downwards relative, not upwards.
678
base = self.get_readonly_server().get_url()
679
if relpath is not None:
680
if not base.endswith('/'):
682
base = base + relpath
685
def get_readonly_server(self):
686
"""Get the server instance for the readonly transport
688
This is useful for some tests with specific servers to do diagnostics.
666
690
if self.__readonly_server is None:
667
691
if self.transport_readonly_server is None:
668
692
# readonly decorator requested
674
698
self.__readonly_server = self.transport_readonly_server()
675
699
self.__readonly_server.setUp()
676
700
self.addCleanup(self.__readonly_server.tearDown)
677
base = self.__readonly_server.get_url()
678
if relpath is not None:
679
if not base.endswith('/'):
681
base = base + relpath
701
return self.__readonly_server
703
def get_server(self):
704
"""Get the read/write server instance.
706
This is useful for some tests with specific servers that need
709
if self.__server is None:
710
self.__server = self.transport_server()
711
self.__server.setUp()
712
self.addCleanup(self.__server.tearDown)
684
715
def get_url(self, relpath=None):
685
716
"""Get a URL for the readwrite transport.
689
720
relpath provides for clients to get a path relative to the base url.
690
721
These should only be downwards relative, not upwards.
692
if self.__server is None:
693
self.__server = self.transport_server()
694
self.__server.setUp()
695
self.addCleanup(self.__server.tearDown)
696
base = self.__server.get_url()
723
base = self.get_server().get_url()
697
724
if relpath is not None and relpath != '.':
698
725
if not base.endswith('/'):
699
726
base = base + '/'
703
730
def make_branch(self, relpath):
704
731
"""Create a branch on the transport at relpath."""
732
repo = self.make_repository(relpath)
733
return repo.bzrdir.create_branch()
735
def make_bzrdir(self, relpath):
706
737
url = self.get_url(relpath)
707
segments = relpath.split('/')
738
segments = url.split('/')
708
739
if segments and segments[-1] not in ('', '.'):
709
parent = self.get_url('/'.join(segments[:-1]))
740
parent = '/'.join(segments[:-1])
710
741
t = bzrlib.transport.get_transport(parent)
712
743
t.mkdir(segments[-1])
744
except errors.FileExists:
715
return bzrlib.branch.Branch.create(url)
716
except UninitializableFormat:
746
return bzrlib.bzrdir.BzrDir.create(url)
747
except errors.UninitializableFormat:
717
748
raise TestSkipped("Format %s is not initializable.")
750
def make_repository(self, relpath, shared=False):
751
"""Create a repository on our default transport at relpath."""
752
made_control = self.make_bzrdir(relpath)
753
return made_control.create_repository(shared=shared)
719
755
def make_branch_and_tree(self, relpath):
720
756
"""Create a branch on the transport and a tree locally.
722
758
Returns the tree.
760
# TODO: always use the local disk path for the working tree,
761
# this obviously requires a format that supports branch references
762
# so check for that by checking bzrdir.BzrDirFormat.get_default_format()
724
764
b = self.make_branch(relpath)
725
return WorkingTree.create(b, relpath)
766
return b.bzrdir.create_workingtree()
767
except errors.NotLocalUrl:
768
# new formats - catch No tree error and create
769
# a branch reference and a checkout.
770
# old formats at that point - raise TestSkipped.
772
return WorkingTreeFormat2().initialize(bzrdir.BzrDir.open(relpath))
728
775
class ChrootedTestCase(TestCaseWithTransport):
810
857
'bzrlib.tests.test_bad_files',
811
858
'bzrlib.tests.test_basis_inventory',
812
859
'bzrlib.tests.test_branch',
860
'bzrlib.tests.test_bzrdir',
813
861
'bzrlib.tests.test_command',
814
862
'bzrlib.tests.test_commit',
815
863
'bzrlib.tests.test_commit_merge',
816
864
'bzrlib.tests.test_config',
817
865
'bzrlib.tests.test_conflicts',
866
'bzrlib.tests.test_decorators',
818
867
'bzrlib.tests.test_diff',
819
'bzrlib.tests.test_decorators',
868
'bzrlib.tests.test_doc_generate',
869
'bzrlib.tests.test_errors',
820
870
'bzrlib.tests.test_fetch',
821
'bzrlib.tests.test_fileid_involved',
822
871
'bzrlib.tests.test_gpg',
823
872
'bzrlib.tests.test_graph',
824
873
'bzrlib.tests.test_hashcache',
835
884
'bzrlib.tests.test_nonascii',
836
885
'bzrlib.tests.test_options',
837
886
'bzrlib.tests.test_osutils',
838
'bzrlib.tests.test_parent',
839
887
'bzrlib.tests.test_permissions',
840
888
'bzrlib.tests.test_plugins',
889
'bzrlib.tests.test_repository',
841
890
'bzrlib.tests.test_revision',
842
891
'bzrlib.tests.test_revisionnamespaces',
843
892
'bzrlib.tests.test_revprops',