blob: e8a26e2d8dc90147e696bd12bbe2a92353fea929 (
plain) (
blame)
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
|
#!/usr/bin/env python
import unittest
from sos.plugins import Plugin
class GlobalOptionTest(unittest.TestCase):
def setUp(self):
self.commons = {
'sysroot': '/',
'global_plugin_options': {
'test_option': 'foobar',
'baz': None,
'empty_global': True
},
}
self.plugin = Plugin(self.commons)
self.plugin.opt_names = ['baz', 'empty']
self.plugin.opt_parms = [{'enabled': False}, {'enabled': None}]
def test_simple_lookup(self):
self.assertEquals(self.plugin.get_option('test_option'), 'foobar')
def test_multi_lookup(self):
self.assertEquals(self.plugin.get_option(('not_there', 'test_option')), 'foobar')
def test_cascade(self):
self.assertEquals(self.plugin.get_option(('baz')), False)
def test_none_should_cascade(self):
self.assertEquals(self.plugin.get_option(('empty', 'empty_global')), True)
if __name__ == "__main__":
unittest.main()
# vim: set et ts=4 sw=4 :
|