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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
# Copyright (C) 2005-2011 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 test feature dependencies.
"""
from bzrlib import (
symbol_versioning,
tests,
)
from bzrlib.tests import (
features,
)
class TestFeature(tests.TestCase):
def test_caching(self):
"""Feature._probe is called by the feature at most once."""
class InstrumentedFeature(features.Feature):
def __init__(self):
super(InstrumentedFeature, self).__init__()
self.calls = []
def _probe(self):
self.calls.append('_probe')
return False
feature = InstrumentedFeature()
feature.available()
self.assertEqual(['_probe'], feature.calls)
feature.available()
self.assertEqual(['_probe'], feature.calls)
def test_named_str(self):
"""Feature.__str__ should thunk to feature_name()."""
class NamedFeature(features.Feature):
def feature_name(self):
return 'symlinks'
feature = NamedFeature()
self.assertEqual('symlinks', str(feature))
def test_default_str(self):
"""Feature.__str__ should default to __class__.__name__."""
class NamedFeature(features.Feature):
pass
feature = NamedFeature()
self.assertEqual('NamedFeature', str(feature))
class TestUnavailableFeature(tests.TestCase):
def test_access_feature(self):
feature = features.Feature()
exception = tests.UnavailableFeature(feature)
self.assertIs(feature, exception.args[0])
# Although this was deprecated a long time ago, please keep it here because
# it's really just a test fixture for test-feature deprecation.
simple_thunk_feature = features._CompatabilityThunkFeature(
symbol_versioning.deprecated_in((2, 1, 0)),
'bzrlib.tests.test_features',
'simple_thunk_feature',
'UnicodeFilenameFeature',
replacement_module='bzrlib.tests.features')
class Test_CompatibilityFeature(tests.TestCase):
def test_does_thunk(self):
res = self.callDeprecated(
['bzrlib.tests.test_features.simple_thunk_feature '
'was deprecated in version 2.1.0. '
'Use bzrlib.tests.features.UnicodeFilenameFeature instead.'],
simple_thunk_feature.available)
self.assertEqual(features.UnicodeFilenameFeature.available(), res)
class TestModuleAvailableFeature(tests.TestCase):
def test_available_module(self):
feature = features.ModuleAvailableFeature('bzrlib.tests')
self.assertEqual('bzrlib.tests', feature.module_name)
self.assertEqual('bzrlib.tests', str(feature))
self.assertTrue(feature.available())
self.assertIs(tests, feature.module)
def test_unavailable_module(self):
feature = features.ModuleAvailableFeature(
'bzrlib.no_such_module_exists')
self.assertEqual('bzrlib.no_such_module_exists', str(feature))
self.assertFalse(feature.available())
self.assertIs(None, feature.module)
class TestUnicodeFilenameFeature(tests.TestCase):
def test_probe_passes(self):
"""UnicodeFilenameFeature._probe passes."""
# We can't test much more than that because the behaviour depends
# on the platform.
features.UnicodeFilenameFeature._probe()
|