FairTest
Bases: BaseModel
Class to define a FAIR metrics test, API calls will be automatically generated for this test when the FairTestAPI is started.
metrics/a1_check_something.py
from fair_test import FairTest, FairTestEvaluation
class MetricTest(FairTest):
metric_path = 'a1-check-something'
applies_to_principle = 'A1'
title = 'Check something'
description = "Test something"
author = 'https://orcid.org/0000-0000-0000-0000'
metric_version = '0.1.0'
test_test={
'http://doi.org/10.1594/PANGAEA.908011': 1,
'https://github.com/MaastrichtU-IDS/fair-test': 0,
}
def evaluate(self, eval: FairTestEvaluation):
eval.info(f'Checking something for {self.subject}')
g = eval.retrieve_metadata(self.subject, use_harvester=False)
if len(g) > 0:
eval.success(f'{len(g)} triples found, test sucessful')
else:
eval.failure('No triples found, test failed')
return eval.response()
Source code in fair_test/fair_test.py
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
|