diff options
author | Jing Lu <lvjing5@huawei.com> | 2017-08-21 01:44:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-21 01:44:25 +0000 |
commit | 36375f388880519336328406de1d1bbc408d4599 (patch) | |
tree | 03efc85f4f1d797c44586a21fe4c7f8e24c74ede /tests/unit/benchmark/scenarios/lib/test_create_keypair.py | |
parent | 12bdd5ef73959b2ef9647410a3ba5a350228d896 (diff) | |
parent | f01dea6918048d92984be69c6d96377dbd759d46 (diff) |
Merge "Add common openstack opertation scenarios: network"
Diffstat (limited to 'tests/unit/benchmark/scenarios/lib/test_create_keypair.py')
-rw-r--r-- | tests/unit/benchmark/scenarios/lib/test_create_keypair.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/unit/benchmark/scenarios/lib/test_create_keypair.py b/tests/unit/benchmark/scenarios/lib/test_create_keypair.py new file mode 100644 index 000000000..99e6b9afa --- /dev/null +++ b/tests/unit/benchmark/scenarios/lib/test_create_keypair.py @@ -0,0 +1,35 @@ +############################################################################## +# Copyright (c) 2017 Huawei Technologies Co.,Ltd and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +import unittest +import mock +import paramiko + +from yardstick.benchmark.scenarios.lib.create_keypair import CreateKeypair + + +class CreateKeypairTestCase(unittest.TestCase): + + @mock.patch('yardstick.common.openstack_utils.create_keypair') + def test_create_keypair(self, mock_create_keypair): + options = { + 'key_name': 'yardstick_key', + 'key_path': '/tmp/yardstick_key' + } + args = {"options": options} + obj = CreateKeypair(args, {}) + obj.run({}) + self.assertTrue(mock_create_keypair.called) + + +def main(): + unittest.main() + + +if __name__ == '__main__': + main() |