2023-08-29 11:49:22 +00:00
|
|
|
import pytest
|
2023-08-29 10:15:10 +00:00
|
|
|
from papis_extract.annotation_data import Annotation
|
2023-09-19 15:35:39 +00:00
|
|
|
from papis_extract.templating import Custom
|
2023-08-29 10:15:10 +00:00
|
|
|
|
|
|
|
|
2023-08-29 11:49:22 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"fmt_string,expected",
|
|
|
|
[
|
2023-09-19 15:35:39 +00:00
|
|
|
(Custom(string="{{quote}}"), "I am the text value"),
|
2023-08-29 11:49:22 +00:00
|
|
|
(
|
2023-09-19 15:35:39 +00:00
|
|
|
Custom(string="> {{quote}}\n{{#note}}Note: {{note}}{{/note}}"),
|
2023-08-29 11:49:22 +00:00
|
|
|
"> I am the text value\nNote: Whereas I represent the note",
|
|
|
|
),
|
|
|
|
(
|
2023-09-19 15:35:39 +00:00
|
|
|
Custom(
|
|
|
|
string="{{#note}}Note: {{note}}{{/note}}{{#page}}, p. {{page}}{{/page}}"
|
|
|
|
),
|
2023-08-29 11:49:22 +00:00
|
|
|
"Note: Whereas I represent the note",
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_formatting(fmt_string, expected):
|
|
|
|
sut = Annotation(
|
|
|
|
"myfile",
|
|
|
|
text="I am the text value",
|
|
|
|
content="Whereas I represent the note",
|
|
|
|
)
|
|
|
|
|
|
|
|
assert sut.format(fmt_string) == expected
|
|
|
|
|
2023-09-19 15:35:39 +00:00
|
|
|
|
2023-08-29 11:49:22 +00:00
|
|
|
def test_colorname_matches_exact():
|
2023-09-19 15:35:39 +00:00
|
|
|
sut = Annotation("testfile", colors=(1.0, 0.0, 0.0), minimum_similarity_color=1.0)
|
2023-08-29 11:49:22 +00:00
|
|
|
c_name = sut.colorname
|
|
|
|
assert c_name == "red"
|
|
|
|
|
2023-09-19 15:35:39 +00:00
|
|
|
|
2023-08-29 11:49:22 +00:00
|
|
|
# TODO inject closeness value instead of relying on default
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"color_value",
|
|
|
|
[
|
|
|
|
(1.0, 0.0, 0.0),
|
|
|
|
(0.9, 0.0, 0.0),
|
|
|
|
(0.8, 0.0, 0.0),
|
|
|
|
(0.7, 0.0, 0.0),
|
|
|
|
(0.51, 0.0, 0.0),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_matches_inexact_colorname(color_value):
|
2023-09-19 15:35:39 +00:00
|
|
|
sut = Annotation("testfile", colors=color_value, minimum_similarity_color=0.833)
|
2023-08-29 10:15:10 +00:00
|
|
|
c_name = sut.colorname
|
|
|
|
assert c_name == "red"
|