[Piglit] [PATCH 1/4] unittests/framework: remove 'autouse' from fixture
Dylan Baker
dylan at pnwbakers.com
Thu Jun 22 22:03:05 UTC 2017
This reworks the fixture to not use autouse, so that other tests can be
added to the class without getting the setup it doesn't use. This also
uses a class scope fixture instead of an instance scope one.
Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
---
unittests/framework/backends/test_json.py | 29 ++++++++++++++++-------------
1 file changed, 16 insertions(+), 13 deletions(-)
diff --git a/unittests/framework/backends/test_json.py b/unittests/framework/backends/test_json.py
index 8c2623c5b..c9a02ffb8 100644
--- a/unittests/framework/backends/test_json.py
+++ b/unittests/framework/backends/test_json.py
@@ -106,9 +106,10 @@ class TestJSONBackend(object):
name = grouptools.join('a', 'test', 'group', 'test1')
result = results.TestResult('pass')
- @pytest.fixture(autouse=True)
- def setup(self, tmpdir):
- test = backends.json.JSONBackend(six.text_type(tmpdir))
+ @pytest.fixture(scope='class')
+ def result_dir(self, tmpdir_factory):
+ directory = tmpdir_factory.mktemp('main')
+ test = backends.json.JSONBackend(six.text_type(directory))
test.initialize(shared.INITIAL_METADATA)
with test.write_test(self.name) as t:
t(self.result)
@@ -116,26 +117,28 @@ class TestJSONBackend(object):
{'time_elapsed':
results.TimeAttribute(start=0.0, end=1.0).to_json()})
- def test_metadata_removed(self, tmpdir):
- assert not tmpdir.join('metadata.json').check()
+ return directory
- def test_tests_directory_removed(self, tmpdir):
- assert not tmpdir.join('tests').check()
+ def test_metadata_removed(self, result_dir):
+ assert not result_dir.join('metadata.json').check()
- def test_results_file_created(self, tmpdir):
+ def test_tests_directory_removed(self, result_dir):
+ assert not result_dir.join('tests').check()
+
+ def test_results_file_created(self, result_dir):
# Normally this would also have a compression extension, but this
# module has a setup fixture that forces the compression to None.
- assert tmpdir.join('results.json').check()
+ assert result_dir.join('results.json').check()
- def test_results_are_json(self, tmpdir):
+ def test_results_are_json(self, result_dir):
# This only checks that the output is valid JSON, not that the
# schema is correct
- with tmpdir.join('results.json').open('r') as f:
+ with result_dir.join('results.json').open('r') as f:
json.load(f)
- def test_results_are_valid(self, tmpdir):
+ def test_results_are_valid(self, result_dir):
"""Test that the values produced are valid."""
- with tmpdir.join('results.json').open('r') as f:
+ with result_dir.join('results.json').open('r') as f:
json_ = json.load(f)
with open(SCHEMA, 'r') as f:
--
2.13.1
More information about the Piglit
mailing list