-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…ps://github.com/GIScience/ohsome-quality-analyst into attribute-list
- Loading branch information
Showing
4 changed files
with
70 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
from ohsome_quality_api.indicators.attribute_completeness.indicator import ( | ||
AttributeCompleteness, | ||
) | ||
|
||
|
||
def test_create_description(): | ||
def topic_building_count(): # for getting an object with the attribute "name" | ||
pass | ||
|
||
indicator = AttributeCompleteness( | ||
topic_building_count, | ||
"feature", | ||
"attribute_key", | ||
) | ||
indicator.result.value = 0.2 | ||
indicator.absolute_value_1 = 10 | ||
indicator.absolute_value_2 = 2 | ||
indicator.topic.name = "test-topic" | ||
indicator.attribute_key = ["test-attribute"] | ||
indicator.create_description() | ||
assert indicator.description == ( | ||
"The ratio of the topic test-topic in " | ||
"the selected area (all: 10) compared to the " | ||
"topic test-topic with the expected tag test-attribute (matched: 2) is 0.2. " | ||
) | ||
|
||
|
||
def test_create_description_multiple_attributes(): | ||
def topic_building_count(): | ||
pass | ||
|
||
indicator = AttributeCompleteness( | ||
topic_building_count, | ||
"feature", | ||
["tag_1", "tag_2", "tag_3"], | ||
) | ||
indicator.result.value = 0.2 | ||
indicator.absolute_value_1 = 10 | ||
indicator.absolute_value_2 = 2 | ||
indicator.topic.name = "test-topic" | ||
indicator.create_description() | ||
assert indicator.description == ( | ||
"The ratio of the topic test-topic in " | ||
"the selected area (all: 10) compared to the topic " | ||
"test-topic with the expected tags tag_1, tag_2, tag_3 (matched: 2) is 0.2. " | ||
) |