diff --git a/doc/test/OM4.1/OM4.1.ttl b/doc/test/OM4.1/OM4.1.ttl index cf805f26..d4b24aa5 100644 --- a/doc/test/OM4.1/OM4.1.ttl +++ b/doc/test/OM4.1/OM4.1.ttl @@ -32,7 +32,7 @@ Otherwise, the test will fail (i.e., no license or rights are declared). dcterms:identifier "https://w3id.org/foops/test/OM4.1" ; dcat:keyword "License"@en , "Test"@en , "Reusable"@en ; dcat:endpointDescription ; - dcat:endpointURL ; + dcat:endpointURL ; dpv:isApplicableFor ; ftr:supportedBy ; ; diff --git a/doc/test/URI1/URI1.html b/doc/test/URI1/URI1.html index b82b7878..37e8fd9a 100644 --- a/doc/test/URI1/URI1.html +++ b/doc/test/URI1/URI1.html @@ -139,7 +139,7 @@

Test information

Applicable for
diff --git a/doc/test/URI1/URI1.jsonld b/doc/test/URI1/URI1.jsonld index 59d858d1..ad562035 100644 --- a/doc/test/URI1/URI1.jsonld +++ b/doc/test/URI1/URI1.jsonld @@ -91,7 +91,7 @@ ], "http://www.w3.org/ns/dcat#endpointURL": [ { - "@id": "https://foops.linkeddata.es/assess/test/URL1" + "@id": "https://foops.linkeddata.es/assess/test/URI1" } ], "http://www.w3.org/ns/dcat#keyword": [ diff --git a/doc/test/URI1/URI1.ttl b/doc/test/URI1/URI1.ttl index 2ab59a70..51100ee2 100644 --- a/doc/test/URI1/URI1.ttl +++ b/doc/test/URI1/URI1.ttl @@ -28,7 +28,7 @@ The test will pass if the vocabulary is resolvable in any of the following RDF s dcterms:identifier "https://w3id.org/foops/test/URI1" ; dcat:keyword "URI resolvable"@en , "Test"@en , "Resolvable"@en; dcat:endpointDescription ; - dcat:endpointURL ; + dcat:endpointURL ; dpv:isApplicableFor ; ftr:supportedBy ; ; diff --git a/doc/test/URI2/URI2.html b/doc/test/URI2/URI2.html index d7b768e6..d71a2ea1 100644 --- a/doc/test/URI2/URI2.html +++ b/doc/test/URI2/URI2.html @@ -137,7 +137,7 @@

Test information

Applicable for
diff --git a/doc/test/URI2/URI2.jsonld b/doc/test/URI2/URI2.jsonld index 443f2003..cf5122ce 100644 --- a/doc/test/URI2/URI2.jsonld +++ b/doc/test/URI2/URI2.jsonld @@ -85,7 +85,7 @@ ], "http://www.w3.org/ns/dcat#endpointURL": [ { - "@id": "https://foops.linkeddata.es/assess/test/URL2" + "@id": "https://foops.linkeddata.es/assess/test/URI2" } ], "http://www.w3.org/ns/dcat#keyword": [ diff --git a/doc/test/URI2/URI2.ttl b/doc/test/URI2/URI2.ttl index 260369c5..29c7ea07 100644 --- a/doc/test/URI2/URI2.ttl +++ b/doc/test/URI2/URI2.ttl @@ -26,7 +26,7 @@ This check verifies if the ontology URI is equal to the ontology ID. The test pa dcterms:identifier "https://w3id.org/foops/test/URI2" ; dcat:keyword "Consistent ontology ID"@en , "Test"@en , "Findable"@en ; dcat:endpointDescription ; - dcat:endpointURL ; + dcat:endpointURL ; dpv:isApplicableFor ; ftr:supportedBy ; ; diff --git a/src/main/java/fair/Benchmarks/CustomBenchmark.java b/src/main/java/fair/Benchmarks/CustomBenchmark.java index 022ce069..990633ea 100644 --- a/src/main/java/fair/Benchmarks/CustomBenchmark.java +++ b/src/main/java/fair/Benchmarks/CustomBenchmark.java @@ -98,5 +98,7 @@ public CustomBenchmark(Ontology ontology,String ontologyOriginalUri, ArrayList testIDs = new ArrayList<>(); + testIDs.add(Constants.FIND3_BIS); + FOOPS f = new FOOPS(is.toString(), testIDs); + f.fairTest(); + String jsonld = f.exportJSONLD(); + assertTrue("FIND_3_BIS JSON-LD must contain the benchmark name (was null before fix)", + jsonld.contains(Constants.BENCHMARK_ALL_NAME)); + f.removeTemporaryFolders(); + } catch (Exception e) { + logger.error("Could not run FIND_3_BIS benchmark name test", e); + fail(); + } + } + }