~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_transport.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-08-20 05:20:56 UTC
  • mfrom: (5380.3.3 doc)
  • Revision ID: pqm@pqm.ubuntu.com-20100820052056-gwad7dz2otckrjax
(mbp) Start whatsnew for 2.3; update ppa developer docs (Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2004, 2005, 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2005-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
52
52
    TestNotApplicable,
53
53
    multiply_tests,
54
54
    )
 
55
from bzrlib.tests import test_server
55
56
from bzrlib.tests.test_transport import TestTransportImplementation
56
57
from bzrlib.transport import (
57
58
    ConnectedTransport,
79
80
            permutations = get_transport_test_permutations(
80
81
                reduce(getattr, (module).split('.')[1:], __import__(module)))
81
82
            for (klass, server_factory) in permutations:
82
 
                scenario = (server_factory.__name__,
 
83
                scenario = ('%s,%s' % (klass.__name__, server_factory.__name__),
83
84
                    {"transport_class":klass,
84
85
                     "transport_server":server_factory})
85
86
                result.append(scenario)
170
171
        self.assertEqual(True, t.has_any(['b', 'b', 'b']))
171
172
 
172
173
    def test_has_root_works(self):
173
 
        from bzrlib.smart import server
174
 
        if self.transport_server is server.SmartTCPServer_for_testing:
 
174
        if self.transport_server is test_server.SmartTCPServer_for_testing:
175
175
            raise TestNotApplicable(
176
176
                "SmartTCPServer_for_testing intentionally does not allow "
177
177
                "access to /.")
1083
1083
        subdir.stat('./file')
1084
1084
        subdir.stat('.')
1085
1085
 
 
1086
    def test_hardlink(self):
 
1087
        from stat import ST_NLINK
 
1088
 
 
1089
        t = self.get_transport()
 
1090
 
 
1091
        source_name = "original_target"
 
1092
        link_name = "target_link"
 
1093
 
 
1094
        self.build_tree([source_name], transport=t)
 
1095
 
 
1096
        try:
 
1097
            t.hardlink(source_name, link_name)
 
1098
 
 
1099
            self.failUnless(t.has(source_name))
 
1100
            self.failUnless(t.has(link_name))
 
1101
 
 
1102
            st = t.stat(link_name)
 
1103
            self.failUnlessEqual(st[ST_NLINK], 2)
 
1104
        except TransportNotPossible:
 
1105
            raise TestSkipped("Transport %s does not support hardlinks." %
 
1106
                              self._server.__class__)
 
1107
 
 
1108
    def test_symlink(self):
 
1109
        from stat import S_ISLNK
 
1110
 
 
1111
        t = self.get_transport()
 
1112
 
 
1113
        source_name = "original_target"
 
1114
        link_name = "target_link"
 
1115
 
 
1116
        self.build_tree([source_name], transport=t)
 
1117
 
 
1118
        try:
 
1119
            t.symlink(source_name, link_name)
 
1120
 
 
1121
            self.failUnless(t.has(source_name))
 
1122
            self.failUnless(t.has(link_name))
 
1123
 
 
1124
            st = t.stat(link_name)
 
1125
            self.failUnless(S_ISLNK(st.st_mode),
 
1126
                "expected symlink, got mode %o" % st.st_mode)
 
1127
        except TransportNotPossible:
 
1128
            raise TestSkipped("Transport %s does not support symlinks." %
 
1129
                              self._server.__class__)
 
1130
        except IOError:
 
1131
            raise tests.KnownFailure("Paramiko fails to create symlinks during tests")
 
1132
 
1086
1133
    def test_list_dir(self):
1087
1134
        # TODO: Test list_dir, just try once, and if it throws, stop testing
1088
1135
        t = self.get_transport()
1497
1544
                 u'\u65e5', # Kanji person
1498
1545
                ]
1499
1546
 
 
1547
        no_unicode_support = getattr(self._server, 'no_unicode_support', False)
 
1548
        if no_unicode_support:
 
1549
            raise tests.KnownFailure("test server cannot handle unicode paths")
 
1550
 
1500
1551
        try:
1501
1552
            self.build_tree(files, transport=t, line_endings='binary')
1502
1553
        except UnicodeError:
1715
1766
        # also raise a special error
1716
1767
        self.assertListRaises((errors.ShortReadvError, errors.InvalidRange),
1717
1768
                              transport.readv, 'a', [(12,2)])
 
1769
 
 
1770
    def test_stat_symlink(self):
 
1771
        # if a transport points directly to a symlink (and supports symlinks
 
1772
        # at all) you can tell this.  helps with bug 32669.
 
1773
        t = self.get_transport()
 
1774
        try:
 
1775
            t.symlink('target', 'link')
 
1776
        except TransportNotPossible:
 
1777
            raise TestSkipped("symlinks not supported")
 
1778
        t2 = t.clone('link')
 
1779
        st = t2.stat('')
 
1780
        self.assertTrue(stat.S_ISLNK(st.st_mode))