summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/test/unit/test_oc_user.py
blob: f7a17cc2cd86d035dc2d9bd3abfb0545daeb8b18 (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
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
#!/usr/bin/env python2
'''
 Unit tests for oc user
'''
# To run
# ./oc_user.py
#
# ..
# ----------------------------------------------------------------------
# Ran 2 tests in 0.003s
#
# 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
# 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_user import OCUser  # noqa: E402


class OCUserTest(unittest.TestCase):
    '''
     Test class for OCUser
    '''

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

    @mock.patch('oc_user.Utils.create_tmpfile_copy')
    @mock.patch('oc_user.OCUser._run')
    def test_state_list(self, mock_cmd, mock_tmpfile_copy):
        ''' Testing a user list '''
        params = {'username': 'testuser@email.com',
                  'state': 'list',
                  'kubeconfig': '/etc/origin/master/admin.kubeconfig',
                  'full_name': None,
                  'groups': [],
                  'debug': False}

        user = '''{
               "kind": "User",
               "apiVersion": "v1",
               "metadata": {
                   "name": "testuser@email.com",
                   "selfLink": "/oapi/v1/users/testuser@email.com",
                   "uid": "02fee6c9-f20d-11e6-b83b-12e1a7285e80",
                   "resourceVersion": "38566887",
                   "creationTimestamp": "2017-02-13T16:53:58Z"
               },
               "fullName": "Test User",
               "identities": null,
               "groups": null
           }'''

        mock_cmd.side_effect = [
            (0, user, ''),
        ]

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

        results = OCUser.run_ansible(params, False)

        self.assertFalse(results['changed'])
        self.assertTrue(results['results'][0]['metadata']['name'] == "testuser@email.com")

    @mock.patch('oc_user.Utils.create_tmpfile_copy')
    @mock.patch('oc_user.OCUser._run')
    def test_state_present(self, mock_cmd, mock_tmpfile_copy):
        ''' Testing a user list '''
        params = {'username': 'testuser@email.com',
                  'state': 'present',
                  'kubeconfig': '/etc/origin/master/admin.kubeconfig',
                  'full_name': 'Test User',
                  'groups': [],
                  'debug': False}

        created_user = '''{
                          "kind": "User",
                          "apiVersion": "v1",
                          "metadata": {
                              "name": "testuser@email.com",
                              "selfLink": "/oapi/v1/users/testuser@email.com",
                              "uid": "8d508039-f224-11e6-b83b-12e1a7285e80",
                              "resourceVersion": "38646241",
                              "creationTimestamp": "2017-02-13T19:42:28Z"
                          },
                          "fullName": "Test User",
                          "identities": null,
                          "groups": null
                      }'''

        mock_cmd.side_effect = [
            (1, '', 'Error from server: users "testuser@email.com" not found'),  # get
            (1, '', 'Error from server: users "testuser@email.com" not found'),  # get
            (0, 'user "testuser@email.com" created', ''),  # create
            (0, created_user, ''),  # get
        ]

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

        results = OCUser.run_ansible(params, False)

        self.assertTrue(results['changed'])
        self.assertTrue(results['results']['results'][0]['metadata']['name'] ==
                        "testuser@email.com")

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


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