mirror of
https://github.com/lutris/lutris
synced 2024-11-02 11:48:38 +00:00
f5e8e007b3
- Updated min version check in setup.py to Python 3.6 - Updated isort config file and calls to align with v5.x - Added init-hook for gi imports in .pylintrc to avoid invalid no-member issues - Makefile: added lock, show-tree, bandit, black, mypy; updated test, cover, dev, isort, autopep8, check, isort-check, flake8, pylint; removed req, requirements; - Updated .travis.yml to use poetry and make - Added my email in AUTHORS - Updated CONTRIBUTING.md - Updated lint_python.yml to use poetry and make, reorganized instructions to have all install related steps first - sorted imports: lutris, lutris-wrapper, cleanup_prefix.py and multiple files in tests dir
47 lines
1.5 KiB
Python
47 lines
1.5 KiB
Python
import os
|
|
from unittest import TestCase
|
|
|
|
from lutris.util.graphics.glxinfo import GlxInfo
|
|
|
|
FIXTURES_PATH = os.path.join(os.path.dirname(__file__), 'fixtures')
|
|
|
|
|
|
class BaseGlxInfo(TestCase):
|
|
fixture = None
|
|
|
|
def setUp(self):
|
|
output = self.read_fixture(self.fixture)
|
|
self.glxinfo = GlxInfo(output)
|
|
|
|
def read_fixture(self, fixture_filename):
|
|
with open(os.path.join(FIXTURES_PATH, fixture_filename)) as fixture:
|
|
content = fixture.read()
|
|
return content
|
|
|
|
|
|
class TestAMDGlxInfo(BaseGlxInfo):
|
|
fixture = 'glxinfo-amd.txt'
|
|
|
|
"""GlxInfo tests"""
|
|
def test_can_get_name_of_display(self):
|
|
self.assertEqual(self.glxinfo.display, ":0")
|
|
self.assertEqual(self.glxinfo.screen, "0")
|
|
self.assertEqual(
|
|
self.glxinfo.opengl_version,
|
|
"4.5 (Compatibility Profile) Mesa 19.0.0-devel - padoka PPA"
|
|
)
|
|
self.assertEqual(self.glxinfo.opengl_vendor, "X.Org")
|
|
self.assertEqual(self.glxinfo.GLX_MESA_query_renderer.version, "19.0.0")
|
|
|
|
|
|
class TestNvidiaGlxInfo(BaseGlxInfo):
|
|
"""GlxInfo tests"""
|
|
fixture = 'glxinfo-nvidia.txt'
|
|
|
|
def test_can_get_name_of_display(self):
|
|
self.assertEqual(self.glxinfo.display, ":0")
|
|
self.assertEqual(self.glxinfo.screen, "0")
|
|
self.assertEqual(self.glxinfo.opengl_version, "4.6.0 NVIDIA 415.25")
|
|
self.assertEqual(self.glxinfo.opengl_vendor, "NVIDIA Corporation")
|
|
with self.assertRaises(AttributeError):
|
|
self.glxinfo.GLX_MESA_query_renderer.version # pylint: disable=pointless-statement
|