diff options
author | Jing Lu <lvjing5@huawei.com> | 2017-08-22 07:13:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-22 07:13:28 +0000 |
commit | b82340a4e3b63b38fe3b797070baacfb70a6df38 (patch) | |
tree | 6479fb3e8eb0f8962f974da1c5694540fab24a18 /tests/unit/benchmark/scenarios/lib/test_create_port.py | |
parent | 9da77e9572bc9bd90b3978713b197339480a4a74 (diff) | |
parent | 2e3974f99811dda12ca3f7e3a9521a0efc2e8677 (diff) |
Merge "Add common openstack opertation scenarios: subnet & port"
Diffstat (limited to 'tests/unit/benchmark/scenarios/lib/test_create_port.py')
-rw-r--r-- | tests/unit/benchmark/scenarios/lib/test_create_port.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/unit/benchmark/scenarios/lib/test_create_port.py b/tests/unit/benchmark/scenarios/lib/test_create_port.py new file mode 100644 index 000000000..3b2aa2247 --- /dev/null +++ b/tests/unit/benchmark/scenarios/lib/test_create_port.py @@ -0,0 +1,36 @@ +############################################################################## +# 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_port import CreatePort + + +class CreatePortTestCase(unittest.TestCase): + + @mock.patch('yardstick.common.openstack_utils.get_neutron_client') + def test_create_port(self, mock_get_neutron_client): + options = { + 'openstack_paras': { + 'name': 'yardstick_port' + } + } + args = {"options": options} + obj = CreatePort(args, {}) + obj.run({}) + self.assertTrue(mock_get_neutron_client.called) + + +def main(): + unittest.main() + + +if __name__ == '__main__': + main() |