Fix error in loader test 55/28955/3
authorYujun Zhang <zhang.yujunz@zte.com.cn>
Fri, 17 Feb 2017 13:52:02 +0000 (21:52 +0800)
committerYujun Zhang <zhang.yujunz@zte.com.cn>
Sat, 18 Feb 2017 16:28:47 +0000 (00:28 +0800)
Change-Id: Idac7d0ec77941974a5f93108fd5f450eef05a5ad
Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
tests/unit/loader/metric_test.py
tests/unit/loader/plan_test.py
tests/unit/loader/qpi_test.py

index 26f144a..619d5e0 100644 (file)
@@ -28,11 +28,10 @@ def init_test(metric_spec):
 
 
 def list_all_test(benchmarks_root):
-    metric_list = MetricSpec.list_all(paths=[benchmarks_root])
-    assert len(list(metric_list)) is 6
+    metric_list = list(MetricSpec.list_all(paths=[benchmarks_root]))
+    assert len(metric_list) is 6
     for desc in metric_list:
         assert BaseProp.NAME in desc
-        assert BaseProp.DESCRIPTION in desc
         assert BaseProp.ABSPATH in desc
         assert BaseProp.ABSPATH is not None
 
@@ -40,6 +39,5 @@ def list_all_test(benchmarks_root):
 def content_test(metric_spec):
     content = metric_spec.content
     assert BaseProp.NAME in content
-    assert BaseProp.DESCRIPTION in content
     assert BaseProp.WORKLOADS in content
     assert isinstance(content[BaseProp.WORKLOADS], list)
index 4872b4c..d9869cb 100644 (file)
@@ -29,11 +29,10 @@ def test_init(plan):
 
 
 def test_list_all(benchmarks_root):
-    plan_list = Plan.list_all(paths=[benchmarks_root])
-    assert len(list(plan_list)) is 1
+    plan_list = list(Plan.list_all(paths=[benchmarks_root]))
+    assert len(plan_list) is 1
     for desc in plan_list:
         assert PlanProp.NAME in desc
-        assert PlanProp.CONTENT in desc
         assert PlanProp.ABSPATH in desc
         assert PlanProp.ABSPATH is not None
 
index 3328b43..b53030d 100644 (file)
@@ -30,11 +30,10 @@ def test_init(qpi_spec):
 
 
 def test_list_all(benchmarks_root):
-    qpi_spec_list = QPISpec.list_all(paths=[benchmarks_root])
-    assert len(list(qpi_spec_list)) is 2
+    qpi_spec_list = list(QPISpec.list_all(paths=[benchmarks_root]))
+    assert len(qpi_spec_list) is 2
     for item in qpi_spec_list:
         assert SpecProp.NAME in item
-        assert SpecProp.CONTENT in item
         assert SpecProp.ABSPATH in item
         assert SpecProp.ABSPATH is not None