mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-27 16:57:18 +00:00
* Demo email report implementation * improved ssl mode * correct default option spelling and more fields to be hidden for not extended reports
24 lines
710 B
Python
24 lines
710 B
Python
import pytest
|
|
|
|
from ahriman.core.exceptions import InvalidOption
|
|
from ahriman.models.report_settings import ReportSettings
|
|
|
|
|
|
def test_from_option_invalid() -> None:
|
|
"""
|
|
must raise exception on invalid option
|
|
"""
|
|
with pytest.raises(InvalidOption, match=".* `invalid`$"):
|
|
ReportSettings.from_option("invalid")
|
|
|
|
|
|
def test_from_option_valid() -> None:
|
|
"""
|
|
must return value from valid options
|
|
"""
|
|
assert ReportSettings.from_option("html") == ReportSettings.HTML
|
|
assert ReportSettings.from_option("HTML") == ReportSettings.HTML
|
|
|
|
assert ReportSettings.from_option("email") == ReportSettings.Email
|
|
assert ReportSettings.from_option("EmAil") == ReportSettings.Email
|