summaryrefslogtreecommitdiffstats
path: root/roles/openshift_logging/filter_plugins/test
blob: 3ad956cca9d5195fb35405b53983fc43b370ea2b (plain)
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
import unittest
from openshift_logging import walk

class TestFilterMethods(unittest.TestCase):


    def test_walk_find_key(self):
        source = {'foo': {'bar.xyz': 'myvalue'}}
        self.assertEquals(walk(source,'foo#bar.xyz', 123, delimiter='#'), 'myvalue')


    def test_walk_return_default(self):
        source = {'foo': {'bar.xyz': 'myvalue'}}
        self.assertEquals(walk(source,'foo#bar.abc', 123, delimiter='#'), 123)


    def test_walk_limit_max_depth(self):
        source = {'foo': {'bar.xyz': 'myvalue'}}
        self.assertEquals(walk(source,'foo#bar.abc#dontfindme', 123, delimiter='#'), 123)

    def test_complex_hash(self):
        source = {
            'elasticsearch': {
                'configmaps': {
                    'logging-elasticsearch': {
                        'elasticsearch.yml':  "a string value"
                    } 
                }
            }
        } 
        self.assertEquals(walk(source,'elasticsearch#configmaps#logging-elasticsearch#elasticsearch.yml', 123, delimiter='#'), "a string value")

if __name__ == '__main__':
    unittest.main()