From 929bcdf94d14062e042d9f9451c28315a18e808d Mon Sep 17 00:00:00 2001 From: Yujun Zhang Date: Wed, 21 Dec 2016 00:19:46 +0800 Subject: 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 --- tests/unit/runner/perftest_test.py | 48 -------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 tests/unit/runner/perftest_test.py (limited to 'tests/unit/runner/perftest_test.py') diff --git a/tests/unit/runner/perftest_test.py b/tests/unit/runner/perftest_test.py deleted file mode 100644 index 2b400ac8..00000000 --- a/tests/unit/runner/perftest_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.perftest import PerfTest -from qtip.runner.benchmark import Property - - -class TestPerfTestClass: - def test_attr(self): - assert len(PerfTest._paths) is 1 - - -class TestPerfTest: - PerfTest._paths = [path.join(path.dirname(__file__), path.pardir, - path.pardir, 'data', 'perftest')] - - def test_init(self): - perftest = PerfTest('test-a') - assert perftest.name == 'test-a' - - with pytest.raises(TypeError) as excinfo: - PerfTest() - assert '__init__() takes exactly 2 arguments (1 given)' \ - in str(excinfo.value) - - def test_list(self): - perftest_list = PerfTest.list_all() - assert len(list(perftest_list)) is 1 - for desc in perftest_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 = PerfTest('test-a').describe() - assert Property.NAME in desc - assert Property.DESCRIPTION in desc - assert Property.ABSPATH in desc -- cgit 1.2.3-korg