forked from crs4/rocrate-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_5src_4_signoff_phase.py
More file actions
579 lines (522 loc) · 17.5 KB
/
test_5src_4_signoff_phase.py
File metadata and controls
579 lines (522 loc) · 17.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
# Copyright (c) 2024-2025 CRS4
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from rocrate_validator.models import Severity
from tests.ro_crates import ValidROC
from tests.shared import do_entity_test, SPARQL_PREFIXES
# set up logging
logger = logging.getLogger(__name__)
# ---- SHOULD fails tests
def test_5src_no_signoff_phase():
"""
Test a Five Safes Crate where no Sign-Off phase is listed.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
<#signoff-3b741265-cfef-49ea-8138-a2fa149bf2f0> ?p ?o .
}
WHERE {
<#signoff-3b741265-cfef-49ea-8138-a2fa149bf2f0> ?p ?o .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.RECOMMENDED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhase"],
expected_triggered_issues=[
"There SHOULD be a Sign-Off Phase in the Final RO-Crate"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_no_name():
"""
Test a Five Safes Crate where the Sign-Off phase has no name.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff schema:name ?name .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:name ?name .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.REQUIRED,
expected_validation_result=False,
expected_triggered_requirements=["SignOff"],
expected_triggered_issues=[
"Sign Off phase MUST have a human-readable name string."
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_wrong_type():
"""
Test a Five Safes Crate where the Sign-Off phase has no name.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff rdf:type ?type .
}
INSERT {
?signoff rdf:type <wrongtype> .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
rdf:type ?type .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.REQUIRED,
expected_validation_result=False,
expected_triggered_requirements=["SignOff"],
expected_triggered_issues=[
"Sign Off phase MUST be a `schema:AssessAction`."
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_wrong_action_status():
"""
Test a Five Safes Crate where the Sign-Off phase has the wrong action status.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff schema:actionStatus ?status .
}
INSERT {
?signoff schema:actionStatus <wrongstatus> .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:actionStatus ?status .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.REQUIRED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffStatus"],
expected_triggered_issues=[
"The value of actionStatus MUST be one of the allowed values:"
+ " PotentialActionStatus; ActiveActionStatus; CompletedActionStatus; FailedActionStatus."
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_not_mentioned():
"""
Test a Five Safes Crate where the Sign-Off phase is not mentioned by the MainRootEntity.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
<./> schema:mentions <#signoff-3b741265-cfef-49ea-8138-a2fa149bf2f0> .
}
WHERE {
<./> schema:mentions <#signoff-3b741265-cfef-49ea-8138-a2fa149bf2f0> .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.RECOMMENDED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhase"],
expected_triggered_issues=[
"The Root Data Entity SHOULD mention a Sign-Off Phase Object"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_no_endtime():
"""
Test a Five Safes Crate where the Sign-Off phase has no endTime.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff schema:endTime ?endTime .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:endTime ?endTime .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.RECOMMENDED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhaseEndTime", "EndTimeStamp"],
expected_triggered_issues=[
"Sign Off phase SHOULD have a compliant endTime if action completed or failed.",
"endTime property MUST follow ISO-8601 syntax. e.g. 2023-04-19T10:15:12+01:00"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_malformed_endtime():
"""
Test a Five Safes Crate where the Sign-Off phase has an endTime
in the wrong format.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff schema:endTime ?endTime .
}
INSERT {
?signoff schema:endTime <2025-10-20> .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:endTime ?endTime .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.RECOMMENDED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhaseEndTime", "EndTimeStamp"],
expected_triggered_issues=[
"Sign Off phase SHOULD have a compliant endTime if action completed or failed.",
"endTime property MUST follow ISO-8601 syntax. e.g. 2023-04-19T10:15:12+01:00"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_no_starttime():
"""
Test a Five Safes Crate where the Sign-Off phase has no startTime.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff schema:startTime ?startTime .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:startTime ?startTime .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.OPTIONAL,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhaseStartTime", "StartTimeStamp"],
expected_triggered_issues=[
"Sign Off phase MAY have a compliant startTime if action is active, completed or failed.",
"startTime property MUST follow ISO-8601 syntax. e.g. 2023-04-19T10:15:12+01:00"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_malformed_starttime():
"""
Test a Five Safes Crate where the Sign-Off phase has a startTime
in the wrong format.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff schema:startTime ?startTime .
}
INSERT {
?signoff schema:startTime <2025-10-20> .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:startTime ?startTime .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.OPTIONAL,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhaseStartTime", "StartTimeStamp"],
expected_triggered_issues=[
"Sign Off phase MAY have a compliant startTime if action is active, completed or failed.",
"startTime property MUST follow ISO-8601 syntax. e.g. 2023-04-19T10:15:12+01:00"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_no_actionstatus():
"""
Test a Five Safes Crate where the Sign-Off phase has no actionStatus.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff schema:actionStatus ?actionStatus .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:actionStatus ?actionStatus .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.RECOMMENDED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhaseProperties"],
expected_triggered_issues=[
"The Sign-Off Phase SHOULD have an actionStatus"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_no_agent():
"""
Test a Five Safes Crate where the Sign-Off phase has no agent.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff schema:agent ?agent .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:agent ?agent .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.RECOMMENDED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhaseProperties"],
expected_triggered_issues=[
"The Sign-Off Phase SHOULD have an agent"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_no_instrument():
"""
Test a Five Safes Crate where the Sign-Off phase has no TRE policy (instrument).
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff schema:instrument ?instrument .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:instrument ?instrument .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.RECOMMENDED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhaseProperties"],
expected_triggered_issues=[
"The Sign-Off Phase SHOULD have an TRE policy (instrument) with type CreativeWork"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_instrument_not_iri():
"""
Test a Five Safes Crate where the Sign-Off phase TRE policy (instrument) is not an IRI.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff schema:instrument ?instrument .
}
INSERT {
?signoff schema:instrument "Not a cross-reference" .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:instrument ?instrument .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.RECOMMENDED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhaseProperties"],
expected_triggered_issues=[
"The Sign-Off Phase SHOULD have an TRE policy (instrument) with type CreativeWork"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_instrument_no_type():
"""
Test a Five Safes Crate where the Sign-Off phase instrument has no type.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?instrument rdf:type ?type .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:instrument ?instrument .
?instrument rdf:type ?type .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.RECOMMENDED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhaseProperties"],
expected_triggered_issues=[
"The Sign-Off Phase SHOULD have an TRE policy (instrument) with type CreativeWork"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_instrument_no_name():
"""
Test a Five Safes Crate where the Sign-Off phase instrument has no type.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?instrument schema:name ?name .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:instrument ?instrument .
?instrument schema:name ?name .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.RECOMMENDED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhaseProperties"],
expected_triggered_issues=[
"The Sign-Off Phase SHOULD have an TRE policy (instrument) with a human-readable name"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_object_notworkflow():
"""
Test a Five Safes Crate where there is no workflow in the Sign-Off objects.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff schema:object <https://workflowhub.eu/workflows/289?version=1> .
}
INSERT {
?signoff schema:object <notaworkflow> .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:object <https://workflowhub.eu/workflows/289?version=1> .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.RECOMMENDED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhaseProperties"],
expected_triggered_issues=[
"The Sign-Off Phase SHOULD list the workflow (mainEntity) as an object"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)
def test_5src_signoff_phase_object_not_responsible_project():
"""
Test a Five Safes Crate where there is no Responsible Project in the Sign-Off objects.
"""
sparql = (
SPARQL_PREFIXES
+ """
DELETE {
?signoff schema:object <#project-be6ffb55-4f5a-4c14-b60e-47e0951090c70> .
}
INSERT {
?signoff schema:object <notaresponsibleproject> .
}
WHERE {
?signoff a schema:AssessAction ;
schema:additionalType <https://w3id.org/shp#SignOff> ;
schema:object <#project-be6ffb55-4f5a-4c14-b60e-47e0951090c70> .
}
"""
)
do_entity_test(
rocrate_path=ValidROC().five_safes_crate_result,
requirement_severity=Severity.RECOMMENDED,
expected_validation_result=False,
expected_triggered_requirements=["SignOffPhaseProperties"],
expected_triggered_issues=[
"The Sign-Off Phase SHOULD list the Responsible Project (sourceOrganization) as an object"
],
profile_identifier="five-safes-crate",
rocrate_entity_mod_sparql=sparql,
)