Implement PerfTest prototype 23/25523/3
authorYujun Zhang <zhang.yujunz@zte.com.cn>
Tue, 6 Dec 2016 09:26:36 +0000 (17:26 +0800)
committerYujun Zhang <zhang.yujunz@zte.com.cn>
Wed, 7 Dec 2016 03:15:51 +0000 (11:15 +0800)
Change-Id: I5988cb65d0e50fa88beaac8f48b5b1da70ed687a
Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
qtip/runner/benchmark.py
qtip/runner/perftest.py
tests/data/perftest/iperf [new file with mode: 0644]
tests/unit/runner/perftest_test.py

index 46cb069..56b5b30 100644 (file)
@@ -21,13 +21,10 @@ class Property:
 class Benchmark:
     """Abstract class of QTIP benchmarks"""
 
-    # paths to search for suites
     _paths = [path.join(path.dirname(__file__), path.pardir, path.pardir,
                         'benchmarks')]
 
     def __init__(self, name):
-        """:param name: suite name"""
-        # TODO(yujunz) check existence and expand to full path
         self.name = name
         self._abspath = self._find(name)
 
@@ -47,8 +44,7 @@ class Benchmark:
 
     def describe(self):
         """description of benchmark"""
-        # TODO(yujunz)
-        # - read description from benchmark content
+        # TODO(yujunz) read description from benchmark content
         return {
             Property.NAME: self.name,
             Property.DESCRIPTION: 'QTIP benchmark',
index 835f2a8..c6d5839 100644 (file)
@@ -7,21 +7,13 @@
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
 
+from os import path
 
-class PerfTest:
-    """A perf test collects raw performance metrics by running test tools"""
+from benchmark import Benchmark
 
-    def __init__(self):
-        pass
 
-    @staticmethod
-    def list_all():
-        """list all available perf tests"""
-        pass
+class PerfTest(Benchmark):
+    """PerfTest is the driver of external performance test tools"""
 
-    def desc(self):
-        """description of the perf test"""
-        pass
-
-    def run(self):
-        pass
+    # paths to search for perftest
+    _paths = [path.join(p, 'perftest') for p in Benchmark._paths]
diff --git a/tests/data/perftest/iperf b/tests/data/perftest/iperf
new file mode 100644 (file)
index 0000000..e69de29
index 798afad..b3e6e8e 100644 (file)
@@ -1,4 +1,4 @@
-##############################################################################
+###############################################################
 # Copyright (c) 2016 ZTE Corp and others.
 #
 # All rights reserved. This program and the accompanying materials
@@ -7,7 +7,35 @@
 # 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):
-        assert True
+        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