123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- '''
- Unit tests for oc route
- '''
- import os
- import six
- 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_route import OCRoute, locate_oc_binary # noqa: E402
- class OCRouteTest(unittest.TestCase):
- '''
- Test class for OCRoute
- '''
- @mock.patch('oc_route.locate_oc_binary')
- @mock.patch('oc_route.Utils.create_tmpfile_copy')
- @mock.patch('oc_route.OCRoute._run')
- def test_list_route(self, mock_cmd, mock_tmpfile_copy, mock_oc_binary):
- ''' Testing getting a route '''
- # Arrange
- # run_ansible input parameters
- params = {
- 'kubeconfig': '/etc/origin/master/admin.kubeconfig',
- 'state': 'list',
- 'debug': False,
- 'name': 'test',
- 'namespace': 'default',
- 'tls_termination': 'passthrough',
- 'dest_cacert_path': None,
- 'cacert_path': None,
- 'cert_path': None,
- 'key_path': None,
- 'dest_cacert_content': None,
- 'cacert_content': None,
- 'cert_content': None,
- 'key_content': None,
- 'service_name': 'testservice',
- 'host': 'test.openshift.com',
- 'wildcard_policy': None,
- 'weight': None,
- 'port': None
- }
- route_result = '''{
- "kind": "Route",
- "apiVersion": "v1",
- "metadata": {
- "name": "test",
- "namespace": "default",
- "selfLink": "/oapi/v1/namespaces/default/routes/test",
- "uid": "1b127c67-ecd9-11e6-96eb-0e0d9bdacd26",
- "resourceVersion": "439182",
- "creationTimestamp": "2017-02-07T01:59:48Z"
- },
- "spec": {
- "host": "test.example",
- "to": {
- "kind": "Service",
- "name": "test",
- "weight": 100
- },
- "port": {
- "targetPort": 8443
- },
- "tls": {
- "termination": "passthrough"
- },
- "wildcardPolicy": "None"
- },
- "status": {
- "ingress": [
- {
- "host": "test.example",
- "routerName": "router",
- "conditions": [
- {
- "type": "Admitted",
- "status": "True",
- "lastTransitionTime": "2017-02-07T01:59:48Z"
- }
- ],
- "wildcardPolicy": "None"
- }
- ]
- }
- }'''
- # Return values of our mocked function call. These get returned once per call.
- mock_cmd.side_effect = [
- # First call to mock
- (0, route_result, ''),
- ]
- mock_oc_binary.side_effect = [
- 'oc'
- ]
- mock_tmpfile_copy.side_effect = [
- '/tmp/mock.kubeconfig',
- ]
- # Act
- results = OCRoute.run_ansible(params, False)
- # Assert
- self.assertFalse(results['changed'])
- self.assertEqual(results['state'], 'list')
- self.assertEqual(results['results'][0]['metadata']['name'], 'test')
- # Making sure our mock was called as we expected
- mock_cmd.assert_has_calls([
- mock.call(['oc', 'get', 'route', 'test', '-o', 'json', '-n', 'default'], None),
- ])
- @mock.patch('oc_route.locate_oc_binary')
- @mock.patch('oc_route.Utils.create_tmpfile_copy')
- @mock.patch('oc_route.Yedit._write')
- @mock.patch('oc_route.OCRoute._run')
- def test_create_route(self, mock_cmd, mock_write, mock_tmpfile_copy, mock_oc_binary):
- ''' Testing getting a route '''
- # Arrange
- # run_ansible input parameters
- params = {
- 'kubeconfig': '/etc/origin/master/admin.kubeconfig',
- 'state': 'present',
- 'debug': False,
- 'name': 'test',
- 'namespace': 'default',
- 'tls_termination': 'edge',
- 'dest_cacert_path': None,
- 'cacert_path': None,
- 'cert_path': None,
- 'key_path': None,
- 'dest_cacert_content': None,
- 'cacert_content': 'testing',
- 'cert_content': 'testing',
- 'key_content': 'testing',
- 'service_name': 'testservice',
- 'host': 'test.openshift.com',
- 'wildcard_policy': None,
- 'weight': None,
- 'port': None
- }
- route_result = '''{
- "apiVersion": "v1",
- "kind": "Route",
- "metadata": {
- "creationTimestamp": "2017-02-07T20:55:10Z",
- "name": "test",
- "namespace": "default",
- "resourceVersion": "517745",
- "selfLink": "/oapi/v1/namespaces/default/routes/test",
- "uid": "b6f25898-ed77-11e6-9755-0e737db1e63a"
- },
- "spec": {
- "host": "test.openshift.com",
- "tls": {
- "caCertificate": "testing",
- "certificate": "testing",
- "key": "testing",
- "termination": "edge"
- },
- "to": {
- "kind": "Service",
- "name": "testservice",
- "weight": 100
- },
- "wildcardPolicy": "None"
- },
- "status": {
- "ingress": [
- {
- "conditions": [
- {
- "lastTransitionTime": "2017-02-07T20:55:10Z",
- "status": "True",
- "type": "Admitted"
- }
- ],
- "host": "test.openshift.com",
- "routerName": "router",
- "wildcardPolicy": "None"
- }
- ]
- }
- }'''
- test_route = '''\
- kind: Route
- spec:
- tls:
- caCertificate: testing
- termination: edge
- certificate: testing
- key: testing
- to:
- kind: Service
- name: testservice
- weight: 100
- host: test.openshift.com
- wildcardPolicy: None
- apiVersion: v1
- metadata:
- namespace: default
- name: test
- '''
- # Return values of our mocked function call. These get returned once per call.
- mock_cmd.side_effect = [
- # First call to mock
- (1, '', 'Error from server: routes "test" not found'),
- (1, '', 'Error from server: routes "test" not found'),
- (0, 'route "test" created', ''),
- (0, route_result, ''),
- ]
- mock_oc_binary.side_effect = [
- 'oc'
- ]
- mock_tmpfile_copy.side_effect = [
- '/tmp/mock.kubeconfig',
- ]
- mock_write.assert_has_calls = [
- # First call to mock
- mock.call('/tmp/test', test_route)
- ]
- # Act
- results = OCRoute.run_ansible(params, False)
- # Assert
- self.assertTrue(results['changed'])
- self.assertEqual(results['state'], 'present')
- self.assertEqual(results['results']['results'][0]['metadata']['name'], 'test')
- # Making sure our mock was called as we expected
- mock_cmd.assert_has_calls([
- mock.call(['oc', 'get', 'route', 'test', '-o', 'json', '-n', 'default'], None),
- mock.call(['oc', 'create', '-f', mock.ANY, '-n', 'default'], None),
- mock.call(['oc', 'get', 'route', 'test', '-o', 'json', '-n', 'default'], None),
- ])
- @unittest.skipIf(six.PY3, 'py2 test only')
- @mock.patch('os.path.exists')
- @mock.patch('os.environ.get')
- def test_binary_lookup_fallback(self, mock_env_get, mock_path_exists):
- ''' Testing binary lookup fallback '''
- mock_env_get.side_effect = lambda _v, _d: ''
- mock_path_exists.side_effect = lambda _: False
- self.assertEqual(locate_oc_binary(), 'oc')
- @unittest.skipIf(six.PY3, 'py2 test only')
- @mock.patch('os.path.exists')
- @mock.patch('os.environ.get')
- def test_binary_lookup_in_path(self, mock_env_get, mock_path_exists):
- ''' Testing binary lookup in path '''
- oc_bin = '/usr/bin/oc'
- mock_env_get.side_effect = lambda _v, _d: '/bin:/usr/bin'
- mock_path_exists.side_effect = lambda f: f == oc_bin
- self.assertEqual(locate_oc_binary(), oc_bin)
- @unittest.skipIf(six.PY3, 'py2 test only')
- @mock.patch('os.path.exists')
- @mock.patch('os.environ.get')
- def test_binary_lookup_in_usr_local(self, mock_env_get, mock_path_exists):
- ''' Testing binary lookup in /usr/local/bin '''
- oc_bin = '/usr/local/bin/oc'
- mock_env_get.side_effect = lambda _v, _d: '/bin:/usr/bin'
- mock_path_exists.side_effect = lambda f: f == oc_bin
- self.assertEqual(locate_oc_binary(), oc_bin)
- @unittest.skipIf(six.PY3, 'py2 test only')
- @mock.patch('os.path.exists')
- @mock.patch('os.environ.get')
- def test_binary_lookup_in_home(self, mock_env_get, mock_path_exists):
- ''' Testing binary lookup in ~/bin '''
- oc_bin = os.path.expanduser('~/bin/oc')
- mock_env_get.side_effect = lambda _v, _d: '/bin:/usr/bin'
- mock_path_exists.side_effect = lambda f: f == oc_bin
- self.assertEqual(locate_oc_binary(), oc_bin)
- @unittest.skipIf(six.PY2, 'py3 test only')
- @mock.patch('shutil.which')
- @mock.patch('os.environ.get')
- def test_binary_lookup_fallback_py3(self, mock_env_get, mock_shutil_which):
- ''' Testing binary lookup fallback '''
- mock_env_get.side_effect = lambda _v, _d: ''
- mock_shutil_which.side_effect = lambda _f, path=None: None
- self.assertEqual(locate_oc_binary(), 'oc')
- @unittest.skipIf(six.PY2, 'py3 test only')
- @mock.patch('shutil.which')
- @mock.patch('os.environ.get')
- def test_binary_lookup_in_path_py3(self, mock_env_get, mock_shutil_which):
- ''' Testing binary lookup in path '''
- oc_bin = '/usr/bin/oc'
- mock_env_get.side_effect = lambda _v, _d: '/bin:/usr/bin'
- mock_shutil_which.side_effect = lambda _f, path=None: oc_bin
- self.assertEqual(locate_oc_binary(), oc_bin)
- @unittest.skipIf(six.PY2, 'py3 test only')
- @mock.patch('shutil.which')
- @mock.patch('os.environ.get')
- def test_binary_lookup_in_usr_local_py3(self, mock_env_get, mock_shutil_which):
- ''' Testing binary lookup in /usr/local/bin '''
- oc_bin = '/usr/local/bin/oc'
- mock_env_get.side_effect = lambda _v, _d: '/bin:/usr/bin'
- mock_shutil_which.side_effect = lambda _f, path=None: oc_bin
- self.assertEqual(locate_oc_binary(), oc_bin)
- @unittest.skipIf(six.PY2, 'py3 test only')
- @mock.patch('shutil.which')
- @mock.patch('os.environ.get')
- def test_binary_lookup_in_home_py3(self, mock_env_get, mock_shutil_which):
- ''' Testing binary lookup in ~/bin '''
- oc_bin = os.path.expanduser('~/bin/oc')
- mock_env_get.side_effect = lambda _v, _d: '/bin:/usr/bin'
- mock_shutil_which.side_effect = lambda _f, path=None: oc_bin
- self.assertEqual(locate_oc_binary(), oc_bin)
|