diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2016-12-21 00:19:46 +0800 |
---|---|---|
committer | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2016-12-27 09:45:34 +0800 |
commit | 929bcdf94d14062e042d9f9451c28315a18e808d (patch) | |
tree | d57ef7c074348fb654a9d4b7cea8b69241474040 /tests/unit/runner/testplan_test.py | |
parent | 16cfb003cd0f1b0dbf903432ab794cda2c7a4123 (diff) |
Implment https://wiki.opnfv.org/display/qtip/Design
Note that some obsolete test cases are marked expected failure, will
be deprecated after architecture evolution.
JIRA: QTIP-148
Change-Id: I52bc9391569d516e298d9e659517161b4dce794a
Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
Diffstat (limited to 'tests/unit/runner/testplan_test.py')
-rw-r--r-- | tests/unit/runner/testplan_test.py | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/tests/unit/runner/testplan_test.py b/tests/unit/runner/testplan_test.py deleted file mode 100644 index 7e42f557..00000000 --- a/tests/unit/runner/testplan_test.py +++ /dev/null @@ -1,48 +0,0 @@ -############################################################################## -# 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 - assert Property.ABSPATH is not None - - def test_describe(self): - desc = TestPlan('plan-a').describe() - assert Property.NAME in desc - assert Property.DESCRIPTION in desc - assert Property.ABSPATH in desc |