1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright (C) 2007-2010 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Tests for interface conformance of inventories of trees."""
from breezy import (
tests,
)
from breezy.tests import (
per_tree,
)
from breezy.mutabletree import MutableTree
from breezy.tests import TestSkipped
from breezy.transform import _PreviewTree
from breezy.tests import (
features,
)
def get_entry(tree, path):
return next(tree.iter_entries_by_dir(specific_files=[path]))[1]
class TestTreeWithSymlinks(per_tree.TestCaseWithTree):
_test_needs_features = [features.SymlinkFeature]
def setUp(self):
super(TestTreeWithSymlinks, self).setUp()
self.tree = self.get_tree_with_subdirs_and_all_content_types()
self.tree.lock_read()
self.addCleanup(self.tree.unlock)
def test_symlink_target(self):
if isinstance(self.tree, (MutableTree, _PreviewTree)):
raise TestSkipped(
'symlinks not accurately represented in working trees and'
' preview trees')
entry = get_entry(self.tree, 'symlink')
self.assertEqual(entry.symlink_target, 'link-target')
def test_symlink_target_tree(self):
self.assertEqual('link-target',
self.tree.get_symlink_target('symlink'))
def test_kind_symlink(self):
self.assertEqual('symlink', self.tree.kind('symlink'))
self.assertIs(None, self.tree.get_file_size('symlink'))
def test_symlink(self):
entry = get_entry(self.tree, 'symlink')
self.assertEqual(entry.kind, 'symlink')
self.assertEqual(None, entry.text_size)
|