diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2016-12-07 03:13:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-12-07 03:13:43 +0000 |
commit | c65ee1f53fca84f63e3241222d89f0e50091f0cc (patch) | |
tree | 826bb2df105d98ded466afbba8481d4b38162387 /tests/unit/runner/testplan_test.py | |
parent | 27965be7b770aa00553e31141b5e676931207a12 (diff) | |
parent | 89e3f17d136f80c5406cdaff67d33b4c8159aac4 (diff) |
Merge "Implement TestPlan prototype"
Diffstat (limited to 'tests/unit/runner/testplan_test.py')
-rw-r--r-- | tests/unit/runner/testplan_test.py | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/unit/runner/testplan_test.py b/tests/unit/runner/testplan_test.py new file mode 100644 index 00000000..2700d385 --- /dev/null +++ b/tests/unit/runner/testplan_test.py @@ -0,0 +1,41 @@ +############################################################################## +# Copyright (c) 2016 ZTE Corp 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 +############################################################################## + +from os import path +import pytest + +from qtip.runner.testplan import TestPlan +from qtip.runner.benchmark import Property + + +class TestTestPlanClass: + def test_attr(self): + assert len(TestPlan._paths) is 1 + + +class TestTestPlan: + TestPlan._paths = [path.join(path.dirname(__file__), path.pardir, + path.pardir, 'data', 'testplan')] + + def test_init(self): + plan = TestPlan('plan-a') + assert plan.name == 'plan-a' + + with pytest.raises(TypeError) as excinfo: + TestPlan() + assert '__init__() takes exactly 2 arguments (1 given)' \ + in str(excinfo.value) + + def test_list(self): + plan_list = TestPlan.list_all() + assert len(list(plan_list)) is 5 + for desc in plan_list: + assert Property.NAME in desc + assert Property.DESCRIPTION in desc + assert Property.ABSPATH in desc |