summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/test/unit/oc_version.py
blob: 67dea415b112ba3e3feba9b4d26412a4ceada6da (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
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
#!/usr/bin/env python2
'''
 Unit tests for oc version
'''
# To run
# python -m unittest version
#
# .
# Ran 1 test in 0.597s
#
# OK

import os
import sys
import unittest
import mock

# Removing invalid variable names for tests so that I can
# keep them brief
# pylint: disable=invalid-name,no-name-in-module
# Disable import-error b/c our libraries aren't loaded in jenkins
# pylint: disable=import-error,wrong-import-position
# place class in our python path
module_path = os.path.join('/'.join(os.path.realpath(__file__).split('/')[:-4]), 'library')  # noqa: E501
sys.path.insert(0, module_path)
from oc_version import OCVersion  # noqa: E402


class OCVersionTest(unittest.TestCase):
    '''
     Test class for OCVersion
    '''

    def setUp(self):
        ''' setup method will create a file and set to known configuration '''
        pass

    @mock.patch('oc_version.Utils.create_tmpfile_copy')
    @mock.patch('oc_version.OCVersion.openshift_cmd')
    def test_get(self, mock_openshift_cmd, mock_tmpfile_copy):
        ''' Testing a get '''
        params = {'kubeconfig': '/etc/origin/master/admin.kubeconfig',
                  'state': 'list',
                  'debug': False}

        mock_openshift_cmd.side_effect = [
            {"cmd": "oc version",
             "results": "oc v3.4.0.39\nkubernetes v1.4.0+776c994\n" +
                        "features: Basic-Auth GSSAPI Kerberos SPNEGO\n\n" +
                        "Server https://internal.api.opstest.openshift.com" +
                        "openshift v3.4.0.39\n" +
                        "kubernetes v1.4.0+776c994\n",
             "returncode": 0}
        ]

        mock_tmpfile_copy.side_effect = [
            '/tmp/mocked_kubeconfig',
        ]

        results = OCVersion.run_ansible(params)

        self.assertFalse(results['changed'])
        self.assertEqual(results['results']['oc_short'], '3.4')
        self.assertEqual(results['results']['oc_numeric'], '3.4.0.39')
        self.assertEqual(results['results']['kubernetes_numeric'], '1.4.0')

    def tearDown(self):
        '''TearDown method'''
        pass


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