1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
# -*- coding: utf-8 -*-
import os
from subprocess import Popen
import sys
from DisplayCAL import config
from DisplayCAL.argyll import (
get_argyll_util,
get_argyll_version,
get_argyll_version_string,
)
from DisplayCAL.dev.mocks import check_call, check_call_str
from tests.data.argyll_sp_data import SUBPROCESS_COM
# todo: deactivated test temporarily
# def test_xicclu_is_working_properly(data_files):
# """testing if ``DisplayCAL.worker_base.Xicclu`` is working properly"""
# from DisplayCAL.icc_profile import ICCProfile
# from DisplayCAL.worker_base import Xicclu
#
# profile = ICCProfile(profile=data_files["default.icc"].absolute())
# xicclu = Xicclu(profile, "r", "a", pcs="X", scale=100)
# assert xicclu() is not None
def test_get_argyll_util(setup_argyll):
"""Test get_argyll_util() function."""
config.initcfg()
result = get_argyll_util("ccxxmake")
expected_result = os.path.join(config.getcfg("argyll.dir"), "ccxxmake")
if sys.platform == "win32":
expected_result += ".exe"
assert result == expected_result
def test_get_argyll_version_string_1(setup_argyll):
"""Test get_argyll_version_string() function."""
config.initcfg()
with check_call(Popen, "communicate", SUBPROCESS_COM):
result = get_argyll_version_string("ccxxmake")
expected_result = "2.3.0"
assert result == expected_result
def test_get_argyll_version_1(setup_argyll):
"""Test get_argyll_version() function."""
with check_call_str("DisplayCAL.argyll.get_argyll_version_string", "2.3.0"):
result = get_argyll_version("ccxxmake")
expected_result = [2, 3, 0]
assert result == expected_result
|