/usr/share/pyshared/obnamlib/pluginmgr_tests.py is in obnam 1.6.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | # Copyright (C) 2009 Lars Wirzenius <liw@liw.fi>
#
# 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 3 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, see <http://www.gnu.org/licenses/>.
import unittest
from pluginmgr import Plugin, PluginManager
class PluginTests(unittest.TestCase):
def setUp(self):
self.plugin = Plugin()
def test_name_is_class_name(self):
self.assertEqual(self.plugin.name, 'Plugin')
def test_description_is_empty_string(self):
self.assertEqual(self.plugin.description, '')
def test_version_is_zeroes(self):
self.assertEqual(self.plugin.version, '0.0.0')
def test_required_application_version_is_zeroes(self):
self.assertEqual(self.plugin.required_application_version, '0.0.0')
def test_enable_raises_exception(self):
self.assertRaises(Exception, self.plugin.enable)
def test_disable_raises_exception(self):
self.assertRaises(Exception, self.plugin.disable)
def test_enable_wrapper_calls_enable(self):
self.plugin.enable = lambda: setattr(self, 'enabled', True)
self.plugin.enable_wrapper()
self.assert_(self.enabled, True)
def test_disable_wrapper_calls_disable(self):
self.plugin.disable = lambda: setattr(self, 'disabled', True)
self.plugin.disable_wrapper()
self.assert_(self.disabled, True)
class PluginManagerInitialStateTests(unittest.TestCase):
def setUp(self):
self.pm = PluginManager()
def test_locations_is_empty_list(self):
self.assertEqual(self.pm.locations, [])
def test_plugins_is_empty_list(self):
self.assertEqual(self.pm.plugins, [])
def test_application_version_is_zeroes(self):
self.assertEqual(self.pm.application_version, '0.0.0')
def test_plugin_files_is_empty(self):
self.assertEqual(self.pm.plugin_files, [])
def test_plugin_arguments_is_empty(self):
self.assertEqual(self.pm.plugin_arguments, [])
def test_plugin_keyword_arguments_is_empty(self):
self.assertEqual(self.pm.plugin_keyword_arguments, {})
class PluginManagerTests(unittest.TestCase):
def setUp(self):
self.pm = PluginManager()
self.pm.locations = ['test-plugins', 'not-exist']
self.pm.plugin_arguments = ('fooarg',)
self.pm.plugin_keyword_arguments = { 'bar': 'bararg' }
self.files = sorted(['test-plugins/hello_plugin.py',
'test-plugins/aaa_hello_plugin.py',
'test-plugins/oldhello_plugin.py',
'test-plugins/wrongversion_plugin.py'])
def test_finds_the_right_plugin_files(self):
self.assertEqual(self.pm.find_plugin_files(), self.files)
def test_plugin_files_attribute_implicitly_searches(self):
self.assertEqual(self.pm.plugin_files, self.files)
def test_loads_hello_plugin(self):
plugins = self.pm.load_plugins()
self.assertEqual(len(plugins), 1)
self.assertEqual(plugins[0].name, 'Hello')
def test_plugins_attribute_implicitly_searches(self):
self.assertEqual(len(self.pm.plugins), 1)
self.assertEqual(self.pm.plugins[0].name, 'Hello')
def test_initializes_hello_with_correct_args(self):
plugin = self.pm['Hello']
self.assertEqual(plugin.foo, 'fooarg')
self.assertEqual(plugin.bar, 'bararg')
def test_raises_keyerror_for_unknown_plugin(self):
self.assertRaises(KeyError, self.pm.__getitem__, 'Hithere')
def test_enable_plugins_enables_all_plugins(self):
enabled = set()
for plugin in self.pm.plugins:
plugin.enable = lambda: enabled.add(plugin)
self.pm.enable_plugins()
self.assertEqual(enabled, set(self.pm.plugins))
def test_disable_plugins_disables_all_plugins(self):
disabled = set()
for plugin in self.pm.plugins:
plugin.disable = lambda: disabled.add(plugin)
self.pm.disable_plugins()
self.assertEqual(disabled, set(self.pm.plugins))
class PluginManagerCompatibleApplicationVersionTests(unittest.TestCase):
def setUp(self):
self.pm = PluginManager()
self.pm.application_version = '1.2.3'
def test_rejects_zero(self):
self.assertFalse(self.pm.compatible_version('0'))
def test_rejects_two(self):
self.assertFalse(self.pm.compatible_version('2'))
def test_rejects_one_two_four(self):
self.assertFalse(self.pm.compatible_version('1.2.4'))
def test_accepts_one(self):
self.assert_(self.pm.compatible_version('1'))
def test_accepts_one_two_three(self):
self.assert_(self.pm.compatible_version('1.2.3'))
|