summaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2017-03-06 17:04:11 -0500
committerKenny Woodson <kwoodson@redhat.com>2017-03-07 11:00:45 -0500
commite1e988be9ee2f28416f2c659119a89ea8fd28d0d (patch)
tree3c552bd10abbae61bbafb96b74f5a4f9f2800baa /roles
parentf017f5afc88e65ce57751c6e6ac99cb9094eb716 (diff)
downloadopenshift-e1e988be9ee2f28416f2c659119a89ea8fd28d0d.tar.gz
openshift-e1e988be9ee2f28416f2c659119a89ea8fd28d0d.tar.bz2
openshift-e1e988be9ee2f28416f2c659119a89ea8fd28d0d.tar.xz
openshift-e1e988be9ee2f28416f2c659119a89ea8fd28d0d.zip
Adding router test.
Diffstat (limited to 'roles')
-rwxr-xr-xroles/lib_openshift/src/test/unit/oc_adm_ca.py85
1 files changed, 85 insertions, 0 deletions
diff --git a/roles/lib_openshift/src/test/unit/oc_adm_ca.py b/roles/lib_openshift/src/test/unit/oc_adm_ca.py
new file mode 100755
index 000000000..836285ac6
--- /dev/null
+++ b/roles/lib_openshift/src/test/unit/oc_adm_ca.py
@@ -0,0 +1,85 @@
+#!/usr/bin/env python2
+'''
+ Unit tests for oadm certificate authority
+'''
+# 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
+# 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 oadm_ca import CertificateAuthority # noqa: E402
+
+
+# pylint: disable=too-many-public-methods
+class OadmCATest(unittest.TestCase):
+ '''
+ Test class for oadm_ca
+ '''
+
+ def setUp(self):
+ ''' setup method will set to known configuration '''
+ pass
+
+ @mock.patch('oadm_ca.Utils.create_tmpfile_copy')
+ @mock.patch('oadm_ca.CertificateAuthority._run')
+ def test_state_list(self, mock_cmd, mock_tmpfile_copy):
+ ''' Testing a get '''
+
+
+
+ params = {'cmd': 'create-server-cert',
+ 'signer_cert': '/etc/origin/master/ca.crt',
+ 'signer_key': '/etc/origin/master/ca.key',
+ 'signer_serial': '/etc/origin/master/ca.serial.txt',
+ 'hostnames': ['registry.test.openshift.com',
+ '127.0.0.1',
+ 'docker-registry.default.svc.cluster.local'],
+ 'cert': '/etc/origin/master/registry.crt',
+ 'key': '/etc/origin/master/registry.key',
+ 'kubeconfig': '/etc/origin/master/admin.kubeconfig',
+ 'private_key': None,
+ 'public_key': None,
+ 'cert_dir': None,
+ 'master': None,
+ 'public_master': None,
+ 'overwrite': False,
+ 'state': 'present',
+ 'debug': False}
+
+ mock_cmd.side_effect = [
+ (0, '', '')
+ ]
+
+ mock_tmpfile_copy.side_effect = [
+ '/tmp/mock_kubeconfig',
+ ]
+
+ results = CertificateAuthority.run_ansible(params, False)
+ import pdb; pdb.set_trace()
+
+ self.assertFalse(results['changed'])
+ self.assertEqual(results['results']['results'][0]['metadata']['name'], 'mysql-ephemeral')
+
+ def tearDown(self):
+ '''TearDown method'''
+ pass
+
+
+if __name__ == "__main__":
+ unittest.main()