diff options
author | JingLu5 <lvjing5@huawei.com> | 2017-08-11 06:16:19 +0000 |
---|---|---|
committer | JingLu5 <lvjing5@huawei.com> | 2017-08-11 07:56:50 +0000 |
commit | f01dea6918048d92984be69c6d96377dbd759d46 (patch) | |
tree | c8d60484eaadfcc63aa8407690a790bc8af0edad /tests/unit/benchmark/scenarios/lib/test_create_keypair.py | |
parent | d8a34ec774f96412f7722fc4ddc66c796722ac25 (diff) |
Add common openstack opertation scenarios: network
JIRA: YARDSTICK-781
This patch adds some common openstack opertation scenarios
Change-Id: I854fc435a5c951245a5997cd4e3e63c5162030af
Signed-off-by: JingLu5 <lvjing5@huawei.com>
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() |