[Piglit] [PATCH 3/9] framework/tests/oglconform_tests.py: Add tests for tests/oglconform.py

baker.dylan.c at gmail.com baker.dylan.c at gmail.com
Wed Oct 21 11:06:28 PDT 2015


From: Dylan Baker <baker.dylan.c at gmail.com>

This adds a pretty extensive set of tests for oglconform.py, with the
goal of making further cleanups and refactors easier and not introducing
regressions.

This adds a dependency of mock for the unittests. No production code
needs this dependency, so this wont affect most (any?) piglit users.
Mock allows for better testing, in fact, it allows oglconform to be
tested even when it's not installed.

Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
---
 README                              |   2 +
 framework/tests/oglconform_tests.py | 122 ++++++++++++++++++++++++++++++++++++
 tox.ini                             |   2 +
 3 files changed, 126 insertions(+)
 create mode 100644 framework/tests/oglconform_tests.py

diff --git a/README b/README
index be8f4df..0144d6a 100644
--- a/README
+++ b/README
@@ -50,6 +50,8 @@ Optionally, you can install the following:
   - backports.lzma. A packport of python3's lzma module to python2,
     this enables fast native xz (de)compression in piglit for results files
     (https://github.com/peterjc/backports.lzma)
+  - mock. A python module for mocking other python modules. Required only for
+    unittests (https://github.com/testing-cabal/mock)
 
 Now configure the build system:
 
diff --git a/framework/tests/oglconform_tests.py b/framework/tests/oglconform_tests.py
new file mode 100644
index 0000000..a76325f
--- /dev/null
+++ b/framework/tests/oglconform_tests.py
@@ -0,0 +1,122 @@
+# Copyright (c) 2015 Intel Corporation
+
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+
+"""Tests for the oglconform integration."""
+
+from StringIO import StringIO
+
+import mock
+import nose.tools as nt
+
+from framework.tests import utils
+from framework import grouptools
+
+with mock.patch('framework.core.PIGLIT_CONFIG.required_get',
+                mock.Mock(return_value='piglit.conf.example')):
+    with mock.patch('subprocess.call', mock.Mock()):
+        from tests import oglconform
+
+# pylint: disable=protected-access,invalid-name
+
+
+ at mock.patch.object(oglconform.tempfile, 'NamedTemporaryFile')
+def test_make_profile(mock_temp):
+    """tests.oglconform._make_profile: Adds test names"""
+    io_ = StringIO('group test.name\n')
+    io_.name = mock.Mock()
+    mock_file = mock.MagicMock()
+    mock_file.__enter__.return_value = io_
+    mock_temp.return_value = mock_file
+
+    with mock.patch('subprocess.call', mock.Mock()):
+        profile = oglconform._make_profile()
+
+    name = grouptools.join('oglconform', 'group', 'test.name')
+    nt.ok_(name in profile.test_list,
+           msg='{} not in {}'.format(name, profile.test_list.keys()))
+
+
+ at utils.not_raises(ValueError)
+ at mock.patch.object(oglconform.tempfile, 'NamedTemporaryFile')
+def test_make_profile_missing(mock_temp):
+    """tests.oglconform._make_profile: handles missing groups"""
+    io_ = StringIO('test.name\n')
+    io_.name = mock.Mock()
+    mock_file = mock.MagicMock()
+    mock_file.__enter__.return_value = io_
+    mock_temp.return_value = mock_file
+
+    with mock.patch('subprocess.call', mock.Mock()):
+        oglconform._make_profile()
+
+
+def test_oglctest_command():
+    """tests.oglconform.OGLCtest.command: value is as expected"""
+    expected = ['piglit.conf.example', '-minFmt', '-v', '4', '-test', 'group',
+                'test']
+
+    test = oglconform.OGLCTest('group', 'test')
+    nt.eq_(expected, test.command)
+
+
+def test_oglctest_interpret_result_pass():
+    """tests.oglconform.OGLCtest.interpret_result: status is pass when expected
+    """
+    test = oglconform.OGLCTest('group', 'test')
+    test.result.out = 'Total Passed : 1'
+    test.interpret_result()
+
+    nt.eq_(test.result.result, 'pass')
+
+
+ at utils.nose_generator
+def test_oglctest_interpret_result_skip():
+    """Generate tests for various skip tests."""
+    values = [
+        'Total Not run: 1',
+        'no test in schedule is compat',
+        'GLSL 1.30 is not supported',
+        'GLSL 1.40 is not supported',
+        'GLSL 1.50 is not supported',
+        'GLSL 3.30 is not supported',
+        'GLSL 3.40 is not supported',
+        'GLSL 3.50 is not supported',
+        'wont be scheduled due to lack of compatible fbconfig'
+    ]
+
+    def test(out):
+        """The actual test."""
+        test = oglconform.OGLCTest('group', 'value')
+        test.result.out = out
+        test.interpret_result()
+        nt.eq_(test.result.result, 'skip')
+
+    for each in values:
+        test.description = ('tests.oglconform.OGLCTest.interpret_result: '
+                            '"{}" in result.out makes status skip'.format(each))
+        yield test, each
+
+
+def test_oglctest_interpret_result_fail():
+    """tests.oglconform.OGLCtest.interpret_result: status is fail otherwise"""
+    test = oglconform.OGLCTest('group', 'test')
+    test.interpret_result()
+
+    nt.eq_(test.result.result, 'fail')
diff --git a/tox.ini b/tox.ini
index fe58771..d1f1f16 100644
--- a/tox.ini
+++ b/tox.ini
@@ -16,6 +16,7 @@ deps =
     mako
     nose
     coverage
+    mock
 commands = nosetests framework/tests --attr="!privileged" --with-cover --cover-package=framework --cover-tests
 
 [testenv:py27-accel]
@@ -24,6 +25,7 @@ deps =
     mako
     nose
     coverage
+    mock
     simplejson
     lxml
     backports.lzma
-- 
2.6.1



More information about the Piglit mailing list