mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
Signed-off-by: James Valleroy <jvalleroy@mailbox.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
60 lines
2.1 KiB
Python
60 lines
2.1 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""Tests for diagnostic check data type."""
|
|
|
|
import pytest
|
|
|
|
from plinth.modules.diagnostics.check import DiagnosticCheck, Result, translate
|
|
|
|
|
|
def test_result():
|
|
"""Test result enum type."""
|
|
assert Result.__members__['ERROR'].name == 'ERROR'
|
|
assert Result.__members__['ERROR'].value == 'error'
|
|
assert Result.NOT_DONE == 'not_done'
|
|
assert Result.PASSED == 'passed'
|
|
assert Result.WARNING == 'warning'
|
|
assert Result.FAILED == 'failed'
|
|
assert Result.ERROR == 'error'
|
|
|
|
|
|
def test_diagnostic_check():
|
|
"""Test the diagnostic check data class."""
|
|
with pytest.raises(TypeError):
|
|
DiagnosticCheck()
|
|
|
|
check = DiagnosticCheck('some-check-id', 'sample check')
|
|
assert check.check_id == 'some-check-id'
|
|
assert check.description == 'sample check'
|
|
assert check.result == Result.NOT_DONE
|
|
assert not check.parameters
|
|
|
|
check = DiagnosticCheck('some-check-id', 'sample check', Result.PASSED)
|
|
assert check.result == Result.PASSED
|
|
assert not check.parameters
|
|
|
|
check = DiagnosticCheck('some-check-id', 'sample check', Result.PASSED,
|
|
{'key': 'value'})
|
|
assert check.parameters['key'] == 'value'
|
|
|
|
|
|
def test_translate():
|
|
"""Test formatting the translated description."""
|
|
check = DiagnosticCheck('some-check-id', 'sample check', Result.PASSED)
|
|
translated = translate(check)
|
|
assert translated.check_id == 'some-check-id'
|
|
assert translated.description == 'sample check'
|
|
assert translated.result == Result.PASSED
|
|
assert not translated.parameters
|
|
|
|
check = DiagnosticCheck('some-check-id', 'sample check {key}',
|
|
Result.FAILED, {'key': 'value'})
|
|
translated = translate(check)
|
|
assert translated.description == 'sample check value'
|
|
assert translated.result == Result.FAILED
|
|
assert translated.parameters == {'key': 'value'}
|
|
|
|
check = DiagnosticCheck('some-check-id', 'sample check {missing}',
|
|
Result.PASSED, {'key': 'value'})
|
|
translated = translate(check)
|
|
assert translated.description == 'sample check ?missing?'
|