summaryrefslogtreecommitdiffstats
path: root/sshkeyshare/tests/test_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'sshkeyshare/tests/test_plugin.py')
-rw-r--r--sshkeyshare/tests/test_plugin.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/sshkeyshare/tests/test_plugin.py b/sshkeyshare/tests/test_plugin.py
new file mode 100644
index 0000000..6c5fe93
--- /dev/null
+++ b/sshkeyshare/tests/test_plugin.py
@@ -0,0 +1,14 @@
+import sshkeyshare.keyshare_plugin
+from cloudify.mocks import MockCloudifyContext
+from cloudify.state import current_ctx
+from cloudify import ctx
+
+def test_generate():
+ mock_ctx = MockCloudifyContext(node_id='test_node_id', node_name='test_node_name', properties={})
+ try:
+ current_ctx.set(mock_ctx)
+ sshkeyshare.keyshare_plugin.generate()
+ pub = ctx.instance.runtime_properties['public']
+ pvt64 = ctx.instance.runtime_properties['base64private']
+ finally:
+ current_ctx.clear()