earl-report 0.5.1 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +23 -13
- data/VERSION +1 -1
- data/bin/earl-report +4 -2
- data/lib/earl_report.rb +225 -141
- data/lib/earl_report/views/earl_report.html.haml +10 -10
- data/spec/earl_report_spec.rb +127 -31
- data/spec/spec_helper.rb +28 -9
- data/spec/test-files/doap.ttl +11 -11
- data/spec/test-files/foaf.ttl +2 -2
- data/spec/test-files/report-complete.ttl +15 -15
- data/spec/test-files/report-no-doap.ttl +4 -4
- data/spec/test-files/report-no-foaf.ttl +14 -14
- data/spec/test-files/report-no-test.ttl +48 -0
- data/spec/test-files/results.html +33 -33
- data/spec/test-files/results.jsonld +66 -58
- data/spec/test-files/results.ttl +60 -73
- metadata +103 -25
data/spec/test-files/foaf.ttl
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
@prefix earl: <http://www.w3.org/ns/earl#> .
|
2
2
|
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
3
3
|
|
4
|
-
<
|
4
|
+
<https://greggkellogg.net/foaf#me> a foaf:Person, earl:Assertor;
|
5
5
|
foaf:name "Gregg Kellogg";
|
6
6
|
foaf:title "Implementor";
|
7
|
-
foaf:homepage <
|
7
|
+
foaf:homepage <https://greggkellogg.net/> .
|
@@ -7,10 +7,10 @@
|
|
7
7
|
@prefix ex: <http://example.org/> .
|
8
8
|
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
9
9
|
|
10
|
-
<
|
10
|
+
<https://rubygems.org/gems/rdf-turtle> a doap:Project, earl:TestSubject, earl:Software ;
|
11
11
|
doap:name "RDF::Turtle" ;
|
12
12
|
doap:homepage <http://ruby-rdf.github.com/rdf-turtle> ;
|
13
|
-
doap:license <http://creativecommons.org/
|
13
|
+
doap:license <http://creativecommons.org/publicdomain/zero/1.0/> ;
|
14
14
|
doap:shortdesc "Turtle reader/writer for Ruby."@en ;
|
15
15
|
doap:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en ;
|
16
16
|
doap:created "2011-08-29"^^xsd:date;
|
@@ -18,28 +18,28 @@
|
|
18
18
|
doap:implements <http://www.w3.org/TR/turtle/> ;
|
19
19
|
doap:category <http://dbpedia.org/resource/Resource_Description_Framework>,
|
20
20
|
<http://dbpedia.org/resource/Ruby_(programming_language)> ;
|
21
|
-
doap:download-page <
|
21
|
+
doap:download-page <https://rubygems.org/gems/rdf-turtle> ;
|
22
22
|
doap:mailing-list <http://lists.w3.org/Archives/Public/public-rdf-ruby/> ;
|
23
|
-
doap:bug-database <
|
24
|
-
doap:blog <
|
25
|
-
doap:developer <
|
26
|
-
doap:maintainer <
|
27
|
-
doap:documenter <
|
28
|
-
foaf:maker <
|
23
|
+
doap:bug-database <https://github.com/ruby-rdf/rdf-turtle/issues> ;
|
24
|
+
doap:blog <https://greggkellogg.net/> ;
|
25
|
+
doap:developer <https://greggkellogg.net/foaf#me> ;
|
26
|
+
doap:maintainer <https://greggkellogg.net/foaf#me> ;
|
27
|
+
doap:documenter <https://greggkellogg.net/foaf#me> ;
|
28
|
+
foaf:maker <https://greggkellogg.net/foaf#me> ;
|
29
29
|
dc:title "RDF::Turtle" ;
|
30
30
|
dc:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en ;
|
31
31
|
dc:date "2011-08-29"^^xsd:date;
|
32
|
-
dc:creator <
|
33
|
-
dc:isPartOf <
|
32
|
+
dc:creator <https://greggkellogg.net/foaf#me>;
|
33
|
+
dc:isPartOf <https://rubygems.org/gems/rdf> .
|
34
34
|
|
35
|
-
<
|
35
|
+
<https://greggkellogg.net/foaf#me> a foaf:Person, earl:Assertor;
|
36
36
|
foaf:name "Gregg Kellogg";
|
37
37
|
foaf:title "Implementor";
|
38
|
-
foaf:homepage <
|
38
|
+
foaf:homepage <https://greggkellogg.net/> .
|
39
39
|
|
40
40
|
[ a earl:Assertion;
|
41
|
-
earl:assertedBy <
|
42
|
-
earl:subject <
|
41
|
+
earl:assertedBy <https://greggkellogg.net/foaf#me>;
|
42
|
+
earl:subject <https://rubygems.org/gems/rdf-turtle>;
|
43
43
|
earl:test <http://example/manifest.ttl#testeval00>;
|
44
44
|
earl:result [
|
45
45
|
a earl:TestResult;
|
@@ -7,14 +7,14 @@
|
|
7
7
|
@prefix ex: <http://example.org/> .
|
8
8
|
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
9
9
|
|
10
|
-
<
|
10
|
+
<https://greggkellogg.net/foaf#me> a foaf:Person, earl:Assertor;
|
11
11
|
foaf:name "Gregg Kellogg";
|
12
12
|
foaf:title "Implementor";
|
13
|
-
foaf:homepage <
|
13
|
+
foaf:homepage <https://greggkellogg.net/> .
|
14
14
|
|
15
15
|
[ a earl:Assertion;
|
16
|
-
earl:assertedBy <
|
17
|
-
earl:subject <
|
16
|
+
earl:assertedBy <https://greggkellogg.net/foaf#me>;
|
17
|
+
earl:subject <https://rubygems.org/gems/rdf-turtle>;
|
18
18
|
earl:test <http://example/manifest.ttl#testeval00>;
|
19
19
|
earl:result [
|
20
20
|
a earl:TestResult;
|
@@ -7,10 +7,10 @@
|
|
7
7
|
@prefix ex: <http://example.org/> .
|
8
8
|
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
9
9
|
|
10
|
-
<
|
10
|
+
<https://rubygems.org/gems/rdf-turtle> a doap:Project, earl:TestSubject, earl:Software ;
|
11
11
|
doap:name "RDF::Turtle" ;
|
12
12
|
doap:homepage <http://ruby-rdf.github.com/rdf-turtle> ;
|
13
|
-
doap:license <http://creativecommons.org/
|
13
|
+
doap:license <http://creativecommons.org/publicdomain/zero/1.0/> ;
|
14
14
|
doap:shortdesc "Turtle reader/writer for Ruby."@en ;
|
15
15
|
doap:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en ;
|
16
16
|
doap:created "2011-08-29"^^xsd:date;
|
@@ -18,25 +18,25 @@
|
|
18
18
|
doap:implements <http://www.w3.org/TR/turtle/> ;
|
19
19
|
doap:category <http://dbpedia.org/resource/Resource_Description_Framework>,
|
20
20
|
<http://dbpedia.org/resource/Ruby_(programming_language)> ;
|
21
|
-
doap:download-page <
|
21
|
+
doap:download-page <https://rubygems.org/gems/rdf-turtle> ;
|
22
22
|
doap:mailing-list <http://lists.w3.org/Archives/Public/public-rdf-ruby/> ;
|
23
|
-
doap:bug-database <
|
24
|
-
doap:blog <
|
25
|
-
doap:developer <
|
26
|
-
doap:maintainer <
|
27
|
-
doap:documenter <
|
28
|
-
foaf:maker <
|
23
|
+
doap:bug-database <https://github.com/ruby-rdf/rdf-turtle/issues> ;
|
24
|
+
doap:blog <https://greggkellogg.net/> ;
|
25
|
+
doap:developer <https://greggkellogg.net/foaf#me> ;
|
26
|
+
doap:maintainer <https://greggkellogg.net/foaf#me> ;
|
27
|
+
doap:documenter <https://greggkellogg.net/foaf#me> ;
|
28
|
+
foaf:maker <https://greggkellogg.net/foaf#me> ;
|
29
29
|
dc:title "RDF::Turtle" ;
|
30
30
|
dc:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en ;
|
31
31
|
dc:date "2011-08-29"^^xsd:date;
|
32
|
-
dc:creator <
|
33
|
-
dc:isPartOf <
|
32
|
+
dc:creator <https://greggkellogg.net/foaf#me>;
|
33
|
+
dc:isPartOf <https://rubygems.org/gems/rdf> .
|
34
34
|
|
35
|
-
<
|
35
|
+
<https://greggkellogg.net/foaf#me> a earl:Assertor .
|
36
36
|
|
37
37
|
[ a earl:Assertion;
|
38
|
-
earl:assertedBy <
|
39
|
-
earl:subject <
|
38
|
+
earl:assertedBy <https://greggkellogg.net/foaf#me>;
|
39
|
+
earl:subject <https://rubygems.org/gems/rdf-turtle>;
|
40
40
|
earl:test <http://example/manifest.ttl#testeval00>;
|
41
41
|
earl:result [
|
42
42
|
a earl:TestResult;
|
@@ -0,0 +1,48 @@
|
|
1
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
2
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
3
|
+
@prefix dc: <http://purl.org/dc/terms/> .
|
4
|
+
@prefix earl: <http://www.w3.org/ns/earl#> .
|
5
|
+
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
6
|
+
@prefix doap: <http://usefulinc.com/ns/doap#> .
|
7
|
+
@prefix ex: <http://example.org/> .
|
8
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
9
|
+
|
10
|
+
<https://rubygems.org/gems/rdf-turtle> a doap:Project, earl:TestSubject, earl:Software ;
|
11
|
+
doap:name "RDF::Turtle" ;
|
12
|
+
doap:homepage <http://ruby-rdf.github.com/rdf-turtle> ;
|
13
|
+
doap:license <http://creativecommons.org/publicdomain/zero/1.0/> ;
|
14
|
+
doap:shortdesc "Turtle reader/writer for Ruby."@en ;
|
15
|
+
doap:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en ;
|
16
|
+
doap:created "2011-08-29"^^xsd:date;
|
17
|
+
doap:programming-language "Ruby" ;
|
18
|
+
doap:implements <http://www.w3.org/TR/turtle/> ;
|
19
|
+
doap:category <http://dbpedia.org/resource/Resource_Description_Framework>,
|
20
|
+
<http://dbpedia.org/resource/Ruby_(programming_language)> ;
|
21
|
+
doap:download-page <https://rubygems.org/gems/rdf-turtle> ;
|
22
|
+
doap:mailing-list <http://lists.w3.org/Archives/Public/public-rdf-ruby/> ;
|
23
|
+
doap:bug-database <https://github.com/ruby-rdf/rdf-turtle/issues> ;
|
24
|
+
doap:blog <https://greggkellogg.net/> ;
|
25
|
+
doap:developer <https://greggkellogg.net/foaf#me> ;
|
26
|
+
doap:maintainer <https://greggkellogg.net/foaf#me> ;
|
27
|
+
doap:documenter <https://greggkellogg.net/foaf#me> ;
|
28
|
+
foaf:maker <https://greggkellogg.net/foaf#me> ;
|
29
|
+
dc:title "RDF::Turtle" ;
|
30
|
+
dc:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en ;
|
31
|
+
dc:date "2011-08-29"^^xsd:date;
|
32
|
+
dc:creator <https://greggkellogg.net/foaf#me>;
|
33
|
+
dc:isPartOf <https://rubygems.org/gems/rdf> .
|
34
|
+
|
35
|
+
<https://greggkellogg.net/foaf#me> a foaf:Person, earl:Assertor;
|
36
|
+
foaf:name "Gregg Kellogg";
|
37
|
+
foaf:title "Implementor";
|
38
|
+
foaf:homepage <https://greggkellogg.net/> .
|
39
|
+
|
40
|
+
[ a earl:Assertion;
|
41
|
+
earl:assertedBy <https://greggkellogg.net/foaf#me>;
|
42
|
+
earl:subject <https://rubygems.org/gems/rdf-turtle>;
|
43
|
+
earl:test <http://example/manifest.ttl#notest>;
|
44
|
+
earl:result [
|
45
|
+
a earl:TestResult;
|
46
|
+
earl:outcome earl:passed;
|
47
|
+
dc:date "2012-11-06T19:23:29-08:00"^^xsd:dateTime];
|
48
|
+
earl:mode earl:automatic ] .
|
@@ -73,12 +73,12 @@ Implementation Report
|
|
73
73
|
<h2 id='w3c-document-28-october-2015'>
|
74
74
|
<abbr title='World Wide Web Consortium'>W3C</abbr>
|
75
75
|
Document
|
76
|
-
<time class='dt-published' datetime='
|
77
|
-
|
76
|
+
<time class='dt-published' datetime='2021-03-25' property='dc:issued'>
|
77
|
+
25 March 2021
|
78
78
|
</time>
|
79
79
|
</h2>
|
80
80
|
<dl>
|
81
|
-
<dt>Editor:</dt><dd class='p-author h-card vcard' inlist='inlist' property='bibo:editor'><span property='rdf:first' typeof='foaf:Person'><meta content='Gregg Kellogg' property='foaf:name' /><a class='url fn u-url p-name' href='
|
81
|
+
<dt>Editor:</dt><dd class='p-author h-card vcard' inlist='inlist' property='bibo:editor'><span property='rdf:first' typeof='foaf:Person'><meta content='Gregg Kellogg' property='foaf:name' /><a class='url fn u-url p-name' href='https://greggkellogg.net/' property='foaf:homepage'>Gregg Kellogg</a></span></dd></dl>
|
82
82
|
<p>
|
83
83
|
This document is also available in these non-normative formats:
|
84
84
|
<a href='earl.ttl' re='alternate'></a>
|
@@ -105,7 +105,7 @@ rules apply.
|
|
105
105
|
</p>
|
106
106
|
<hr />
|
107
107
|
</div>
|
108
|
-
<section about='' id='abstract' typeof='doap:Project
|
108
|
+
<section about='' id='abstract' typeof='Software doap:Project'>
|
109
109
|
<h2>Abstract</h2>
|
110
110
|
<p>
|
111
111
|
This document report test subject conformance for and related specifications for
|
@@ -212,18 +212,18 @@ Report Generation Software
|
|
212
212
|
for each test, referencing the test resource from the associated manifest
|
213
213
|
and the test subject being reported upon. An example test entry is be the following:</p>
|
214
214
|
|
215
|
-
<pre><code> [ a earl:Assertion;
 earl:assertedBy <
|
215
|
+
<pre><code> [ a earl:Assertion;
 earl:assertedBy <https://greggkellogg.net/foaf#me>;
 earl:subject <--your-software-identifier-->;
 earl:test <--uri-of-test-from-manifest>;
 earl:result [
 a earl:TestResult;
 earl:outcome earl:passed;
 dc:date "2016-12-26T10:18:04-08:00"^^xsd:dateTime];
 earl:mode earl:automatic ] .
</code></pre>
|
216
216
|
|
217
217
|
<p>The Test Subject should be defined as a <code>doap:Project</code>, including the name,
|
218
218
|
homepage and developer(s) of the software (see <a href="https://github.com/edumbill/doap/wiki">DOAP</a>). Optionally, including the
|
219
219
|
project description and programming language. An example test subject description is the following:</p>
|
220
220
|
|
221
|
-
<pre><code> <> foaf:primaryTopic <--your-software-identifier--> ;
 dc:issued "2016-12-26T10:18:04-08:00"^^xsd:dateTime ;
 foaf:maker <
|
221
|
+
<pre><code> <> foaf:primaryTopic <--your-software-identifier--> ;
 dc:issued "2016-12-26T10:18:04-08:00"^^xsd:dateTime ;
 foaf:maker <https://greggkellogg.net/foaf#me> .

 <--your-software-identifier--> a doap:Project, earl:TestSubject, earl:Software ;
 doap:name "Gregg Kellogg" ;
 doap:homepage <--your-software-homepace--> ;
 doap:license <--license-for-your-software--> ;
 doap:shortdesc "--your-short-project-description--"@en ;
 doap:description "--your-project-description--"@en ;
 doap:created "2016-12-09"^^xsd:date ;
 doap:programming-language "--your-implementation-language--" ;
 doap:implements <--specification-uri--> ;
 doap:category <--category-uris-for-specification-framework-and-implementation-language--> ;
 doap:download-page <--your-project-repository--> ;
 doap:mailing-list <--specification-public-mailing-list--@w3.org> ;
 doap:bug-database <--your-project-repository--/issues> ;
 doap:blog <--your-blog--> ;
 doap:developer <https://greggkellogg.net/foaf#me> ;
 foaf:maker <https://greggkellogg.net/foaf#me> ;
 dc:title "--your-project-name--" ;
 dc:description "--your-project-description--"@en ;
 dc:date "2016-12-09"^^xsd:date ;
 dc:creator <https://greggkellogg.net/foaf#me> ;
 dc:isPartOf <--your-implementation-framework--> .
</code></pre>
|
222
222
|
|
223
223
|
<p>The software developer, either an organization or one or more individuals SHOULD be
|
224
224
|
referenced from <code>doap:developer</code> using <a href="http://xmlns.com/foaf/spec">FOAF</a>. For example:</p>
|
225
225
|
|
226
|
-
<pre><code> <--your-software-identifier--> a foaf:Person, earl:Assertor;
 foaf:name "Gregg Kellogg";
 foaf:title "Implementor";
 foaf:homepage <
|
226
|
+
<pre><code> <--your-software-identifier--> a foaf:Person, earl:Assertor;
 foaf:name "Gregg Kellogg";
 foaf:title "Implementor";
 foaf:homepage <https://greggkellogg.net/foaf#me> .
</code></pre>
|
227
227
|
|
228
228
|
</section>
|
229
229
|
<section id='test-manifests'>
|
@@ -231,7 +231,7 @@ Report Generation Software
|
|
231
231
|
<span class='secno'>2.</span>
|
232
232
|
Test Manifests
|
233
233
|
</h2>
|
234
|
-
<section id='Description-for-Example-Test-Cases' resource='http://example/manifest.ttl' typeof='mf:Manifest
|
234
|
+
<section id='Description-for-Example-Test-Cases' resource='http://example/manifest.ttl' typeof='Report mf:Manifest'>
|
235
235
|
<h2>
|
236
236
|
<span class='secno'>2.1</span>
|
237
237
|
<span property='dc:title mf:name'>Example Test Cases</span>
|
@@ -245,14 +245,14 @@ Test
|
|
245
245
|
<a href='#subj_0'>RDF::Turtle</a>
|
246
246
|
</th>
|
247
247
|
</tr>
|
248
|
-
<tr inlist='inlist' rel='mf:entries' resource='http://example/manifest.ttl#testeval00' typeof='
|
248
|
+
<tr inlist='inlist' rel='mf:entries' resource='http://example/manifest.ttl#testeval00' typeof='http://www.w3.org/ns/rdftest#TestTurtleEval TestCase TestCriterion'>
|
249
249
|
<td>
|
250
250
|
<a href='#test_1fdd82ac4caf30510cabfdb0a5987ddd'>subm-test-00</a>
|
251
251
|
</td>
|
252
|
-
<td class='PASS'
|
253
|
-
<link href='
|
252
|
+
<td class='PASS' typeof='Assertion'>
|
253
|
+
<link href='https://greggkellogg.net/foaf#me' property='earl:assertedBy' />
|
254
254
|
<link href='http://example/manifest.ttl#testeval00' property='earl:test' />
|
255
|
-
<link href='
|
255
|
+
<link href='https://rubygems.org/gems/rdf-turtle' property='earl:subject' />
|
256
256
|
<link href='earl:automatic' property='earl:mode' />
|
257
257
|
<span property='earl:result' typeof='TestResult'>
|
258
258
|
<span property='earl:outcome' resource='earl:passed'>
|
@@ -261,12 +261,12 @@ PASS
|
|
261
261
|
</span>
|
262
262
|
</td>
|
263
263
|
</tr>
|
264
|
-
<tr inlist='inlist' rel='mf:entries' resource='_:
|
264
|
+
<tr inlist='inlist' rel='mf:entries' resource='_:b1' typeof='http://www.w3.org/ns/rdftest#TestTurtleEval TestCase TestCriterion'>
|
265
265
|
<td>
|
266
|
-
<a href='#
|
266
|
+
<a href='#test_b4d4f9531721bf1a6e4562f27353abd3'>subm-test-01</a>
|
267
267
|
</td>
|
268
|
-
<td class='UNTESTED'
|
269
|
-
<link href='
|
268
|
+
<td class='UNTESTED' typeof='Assertion'>
|
269
|
+
<link href='https://rubygems.org/gems/rdf-turtle' property='earl:subject' />
|
270
270
|
<span property='earl:result' typeof='TestResult'>
|
271
271
|
<span property='earl:outcome' resource='earl:untested'>
|
272
272
|
UNTESTED
|
@@ -296,11 +296,11 @@ This report was tested using the following test subjects:
|
|
296
296
|
<dl>
|
297
297
|
<dt id='subj_0'>
|
298
298
|
<span class='secno'>A.1</span>
|
299
|
-
<a href='
|
300
|
-
<span about='
|
299
|
+
<a href='https://rubygems.org/gems/rdf-turtle'>
|
300
|
+
<span about='https://rubygems.org/gems/rdf-turtle' property='doap:name'>RDF::Turtle</span>
|
301
301
|
</a>
|
302
302
|
</dt>
|
303
|
-
<dd property='earl:testSubjects' resource='
|
303
|
+
<dd property='earl:testSubjects' resource='https://rubygems.org/gems/rdf-turtle' typeof='TestSubject Software doap:Project'>
|
304
304
|
<dl>
|
305
305
|
<dt>Description</dt>
|
306
306
|
<dd lang='en' property='doap:description'>RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite.</dd>
|
@@ -316,12 +316,12 @@ http://ruby-rdf.github.com/rdf-turtle
|
|
316
316
|
</dd>
|
317
317
|
<dt>Developer</dt>
|
318
318
|
<dd rel='doap:developer'>
|
319
|
-
<div resource='
|
320
|
-
<a href='
|
319
|
+
<div resource='https://greggkellogg.net/foaf#me' typeof='foaf:Person Assertor'>
|
320
|
+
<a href='https://greggkellogg.net/foaf#me'>
|
321
321
|
<span property='foaf:name'>Gregg Kellogg</span>
|
322
322
|
</a>
|
323
|
-
<a href='
|
324
|
-
|
323
|
+
<a href='https://greggkellogg.net/' property='foaf:homepage'>
|
324
|
+
https://greggkellogg.net/
|
325
325
|
</a>
|
326
326
|
</div>
|
327
327
|
</dd>
|
@@ -346,7 +346,7 @@ Example Test Cases
|
|
346
346
|
</dd>
|
347
347
|
</dl>
|
348
348
|
</section>
|
349
|
-
<section class='appendix' id='individual-test-results' rel='xhv:related
|
349
|
+
<section class='appendix' id='individual-test-results' rel='xhv:related mf:report'>
|
350
350
|
<h2>
|
351
351
|
<span class='secno'>B.</span>
|
352
352
|
Individual Test Results
|
@@ -376,11 +376,11 @@ Test
|
|
376
376
|
<pre class='example actionDoc' property='mf:action' resource='http://example/test-00.ttl' title='subm-test-00 Input'>http://example/test-00.ttl not loaded</pre>
|
377
377
|
<pre class='example resultDoc' property='mf:result' resource='http://example/test-00.out' title='subm-test-00 Result'>http://example/test-00.out not loaded</pre>
|
378
378
|
</dd>
|
379
|
-
<dt id='
|
379
|
+
<dt id='test_b4d4f9531721bf1a6e4562f27353abd3' resource='_:b1'>
|
380
380
|
Test
|
381
381
|
<span property='dc:title mf:name'>subm-test-01</span>
|
382
382
|
</dt>
|
383
|
-
<dd resource='_:
|
383
|
+
<dd resource='_:b1'>
|
384
384
|
<p property='dc:description rdfs:comment'></p>
|
385
385
|
<pre class='example actionDoc' property='mf:action' resource='http://example/test-01.ttl' title='subm-test-01 Input'>http://example/test-01.ttl not loaded</pre>
|
386
386
|
<pre class='example resultDoc' property='mf:result' resource='http://example/test-01.out' title='subm-test-01 Result'>http://example/test-01.out not loaded</pre>
|
@@ -388,20 +388,20 @@ Test
|
|
388
388
|
</div>
|
389
389
|
</dl>
|
390
390
|
</section>
|
391
|
-
<section class='appendix' id='report-generation-software' property='earl:generatedBy' resource='
|
391
|
+
<section class='appendix' id='report-generation-software' property='earl:generatedBy' resource='https://rubygems.org/gems/earl-report' typeof='Software doap:Project'>
|
392
392
|
<h2>
|
393
393
|
<span class='secno'>D.</span>
|
394
394
|
Report Generation Software
|
395
395
|
</h2>
|
396
396
|
<p>
|
397
397
|
This report generated by
|
398
|
-
<span property='doap:name'><a href='
|
398
|
+
<span property='doap:name'><a href='https://rubygems.org/gems/earl-report'>earl-report</a></span>
|
399
399
|
<meta content='Earl Report summary generator' property='doap:shortdesc' />
|
400
400
|
<meta content='EarlReport generates HTML+RDFa rollups of multiple EARL reports' property='doap:description' />
|
401
401
|
version
|
402
|
-
<span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.
|
403
|
-
<span property='doap:revision'>0.
|
404
|
-
<meta content='earl-report-0.
|
402
|
+
<span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.6.2' typeof='doap:Version'>
|
403
|
+
<span property='doap:revision'>0.6.2</span>
|
404
|
+
<meta content='earl-report-0.6.2' property='doap:name' />
|
405
405
|
</span>
|
406
406
|
an
|
407
407
|
<a href='http://unlicense.org' property='doap:license'>Unlicensed</a>
|
@@ -410,9 +410,9 @@ application. More information is available at
|
|
410
410
|
<a href='https://github.com/gkellogg/earl-report' property='doap:homepage'>https://github.com/gkellogg/earl-report</a>
|
411
411
|
.
|
412
412
|
</p>
|
413
|
-
<p property='doap:developer' resource='
|
413
|
+
<p property='doap:developer' resource='https://greggkellogg.net/foaf#me' typeof='foaf:Person'>
|
414
414
|
This software is provided by
|
415
|
-
<a href='
|
415
|
+
<a href='https://greggkellogg.net/' property='foaf:homepage'><span about='https://greggkellogg.net/foaf#me' property='foaf:name'>Gregg Kellogg</span></a>
|
416
416
|
in hopes that it might make the lives of conformance testers easier.
|
417
417
|
</p>
|
418
418
|
</section>
|
@@ -15,6 +15,7 @@
|
|
15
15
|
"@type": "@id"
|
16
16
|
},
|
17
17
|
"assertions": {
|
18
|
+
"@id": "mf:report",
|
18
19
|
"@type": "@id",
|
19
20
|
"@container": "@set"
|
20
21
|
},
|
@@ -38,6 +39,18 @@
|
|
38
39
|
"@id": "doap:description",
|
39
40
|
"@language": "en"
|
40
41
|
},
|
42
|
+
"entries": {
|
43
|
+
"@id": "mf:entries",
|
44
|
+
"@type": "@id",
|
45
|
+
"@container": "@list",
|
46
|
+
"@context": {
|
47
|
+
"assertions": {
|
48
|
+
"@reverse": "earl:test",
|
49
|
+
"@type": "@id",
|
50
|
+
"@container": "@set"
|
51
|
+
}
|
52
|
+
}
|
53
|
+
},
|
41
54
|
"generatedBy": {
|
42
55
|
"@type": "@id"
|
43
56
|
},
|
@@ -89,11 +102,6 @@
|
|
89
102
|
"title": {
|
90
103
|
"@id": "mf:name"
|
91
104
|
},
|
92
|
-
"entries": {
|
93
|
-
"@id": "mf:entries",
|
94
|
-
"@type": "@id",
|
95
|
-
"@container": "@list"
|
96
|
-
},
|
97
105
|
"testSubjects": {
|
98
106
|
"@type": "@id",
|
99
107
|
"@container": "@set"
|
@@ -104,83 +112,83 @@
|
|
104
112
|
},
|
105
113
|
"@id": "",
|
106
114
|
"@type": [
|
107
|
-
"
|
108
|
-
"
|
109
|
-
],
|
110
|
-
"name": "Turtle Test Results",
|
111
|
-
"assertions": [
|
112
|
-
"/Users/gregg/Projects/earl-report/spec/test-files/report-complete.ttl"
|
115
|
+
"Software",
|
116
|
+
"doap:Project"
|
113
117
|
],
|
114
118
|
"generatedBy": {
|
115
|
-
"@id": "
|
119
|
+
"@id": "https://rubygems.org/gems/earl-report",
|
116
120
|
"@type": [
|
117
|
-
"
|
118
|
-
"
|
121
|
+
"Software",
|
122
|
+
"doap:Project"
|
119
123
|
],
|
120
124
|
"release": {
|
121
|
-
"@id": "https://github.com/gkellogg/earl-report/tree/0.
|
125
|
+
"@id": "https://github.com/gkellogg/earl-report/tree/0.6.2",
|
122
126
|
"@type": "doap:Version",
|
123
|
-
"name": "earl-report-0.4.9",
|
124
127
|
"doap:created": {
|
125
|
-
"@
|
126
|
-
"@
|
128
|
+
"@type": "http://www.w3.org/2001/XMLSchema#date",
|
129
|
+
"@value": "2021-03-25"
|
127
130
|
},
|
128
|
-
"revision": "0.
|
131
|
+
"revision": "0.6.2",
|
132
|
+
"name": "earl-report-0.6.2"
|
129
133
|
},
|
134
|
+
"language": "Ruby",
|
135
|
+
"license": "http://unlicense.org",
|
130
136
|
"name": "earl-report",
|
137
|
+
"doapDesc": "EarlReport generates HTML+RDFa rollups of multiple EARL reports",
|
131
138
|
"homepage": "https://github.com/gkellogg/earl-report",
|
132
139
|
"developer": [
|
133
140
|
{
|
134
|
-
"@id": "
|
141
|
+
"@id": "https://greggkellogg.net/foaf#me",
|
135
142
|
"@type": [
|
136
|
-
"
|
137
|
-
"
|
143
|
+
"foaf:Person",
|
144
|
+
"Assertor"
|
138
145
|
],
|
139
|
-
"foaf:homepage": "
|
146
|
+
"foaf:homepage": "https://greggkellogg.net/",
|
140
147
|
"foaf:name": "Gregg Kellogg"
|
141
148
|
}
|
142
149
|
],
|
143
|
-
"
|
144
|
-
"doapDesc": "EarlReport generates HTML+RDFa rollups of multiple EARL reports",
|
145
|
-
"shortdesc": "Earl Report summary generator",
|
146
|
-
"language": "Ruby"
|
150
|
+
"shortdesc": "Earl Report summary generator"
|
147
151
|
},
|
148
152
|
"testSubjects": [
|
149
153
|
{
|
150
|
-
"@id": "
|
154
|
+
"@id": "https://rubygems.org/gems/rdf-turtle",
|
151
155
|
"@type": [
|
152
|
-
"doap:Project",
|
153
156
|
"TestSubject",
|
154
|
-
"Software"
|
157
|
+
"Software",
|
158
|
+
"doap:Project"
|
155
159
|
],
|
156
160
|
"release": {
|
157
|
-
"@id": "_:
|
161
|
+
"@id": "_:b0",
|
158
162
|
"revision": "unknown"
|
159
163
|
},
|
164
|
+
"language": "Ruby",
|
160
165
|
"name": "RDF::Turtle",
|
166
|
+
"doapDesc": "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite.",
|
161
167
|
"homepage": "http://ruby-rdf.github.com/rdf-turtle",
|
162
168
|
"developer": [
|
163
169
|
{
|
164
|
-
"@id": "
|
170
|
+
"@id": "https://greggkellogg.net/foaf#me",
|
165
171
|
"@type": [
|
166
|
-
"
|
167
|
-
"
|
172
|
+
"foaf:Person",
|
173
|
+
"Assertor"
|
168
174
|
],
|
169
|
-
"foaf:homepage": "
|
175
|
+
"foaf:homepage": "https://greggkellogg.net/",
|
170
176
|
"foaf:name": "Gregg Kellogg"
|
171
177
|
}
|
172
|
-
]
|
173
|
-
"doapDesc": "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite.",
|
174
|
-
"language": "Ruby"
|
178
|
+
]
|
175
179
|
}
|
176
180
|
],
|
181
|
+
"assertions": [
|
182
|
+
"/Users/gregg/Projects/earl-report/spec/test-files/report-complete.ttl"
|
183
|
+
],
|
177
184
|
"bibRef": "[[TURTLE]]",
|
185
|
+
"name": "Turtle Test Results",
|
178
186
|
"entries": [
|
179
187
|
{
|
180
188
|
"@id": "http://example/manifest.ttl",
|
181
189
|
"@type": [
|
182
|
-
"
|
183
|
-
"
|
190
|
+
"Report",
|
191
|
+
"mf:Manifest"
|
184
192
|
],
|
185
193
|
"rdfs:comment": "Description for Example Test Cases",
|
186
194
|
"title": "Example Test Cases",
|
@@ -188,55 +196,55 @@
|
|
188
196
|
{
|
189
197
|
"@id": "http://example/manifest.ttl#testeval00",
|
190
198
|
"@type": [
|
199
|
+
"http://www.w3.org/ns/rdftest#TestTurtleEval",
|
191
200
|
"TestCase",
|
192
|
-
"TestCriterion"
|
193
|
-
"http://www.w3.org/ns/rdftest#TestTurtleEval"
|
201
|
+
"TestCriterion"
|
194
202
|
],
|
195
203
|
"rdfs:comment": "Blank subject",
|
204
|
+
"testResult": "http://example/test-00.out",
|
196
205
|
"title": "subm-test-00",
|
206
|
+
"testAction": "http://example/test-00.ttl",
|
197
207
|
"assertions": [
|
198
208
|
{
|
199
209
|
"@id": "_:b2",
|
200
210
|
"@type": "Assertion",
|
201
|
-
"mode": "earl:automatic",
|
202
211
|
"test": "http://example/manifest.ttl#testeval00",
|
203
|
-
"subject": "http://rubygems.org/gems/rdf-turtle",
|
204
212
|
"result": {
|
205
|
-
"@id": "_:
|
213
|
+
"@id": "_:b3",
|
206
214
|
"@type": "TestResult",
|
207
215
|
"outcome": "earl:passed"
|
208
216
|
},
|
209
|
-
"
|
217
|
+
"mode": "earl:automatic",
|
218
|
+
"subject": "https://rubygems.org/gems/rdf-turtle",
|
219
|
+
"assertedBy": "https://greggkellogg.net/foaf#me"
|
210
220
|
}
|
211
|
-
]
|
212
|
-
"testAction": "http://example/test-00.ttl",
|
213
|
-
"testResult": "http://example/test-00.out"
|
221
|
+
]
|
214
222
|
},
|
215
223
|
{
|
216
|
-
"@id": "_:
|
224
|
+
"@id": "_:b1",
|
217
225
|
"@type": [
|
226
|
+
"http://www.w3.org/ns/rdftest#TestTurtleEval",
|
218
227
|
"TestCase",
|
219
|
-
"TestCriterion"
|
220
|
-
"http://www.w3.org/ns/rdftest#TestTurtleEval"
|
228
|
+
"TestCriterion"
|
221
229
|
],
|
222
230
|
"rdfs:comment": "@prefix and qnames",
|
231
|
+
"testResult": "http://example/test-01.out",
|
223
232
|
"title": "subm-test-01",
|
233
|
+
"testAction": "http://example/test-01.ttl",
|
224
234
|
"assertions": [
|
225
235
|
{
|
226
|
-
"@id": "_:
|
236
|
+
"@id": "_:b4",
|
227
237
|
"@type": "Assertion",
|
238
|
+
"test": "_:b1",
|
228
239
|
"result": {
|
229
240
|
"@id": "_:b5",
|
230
241
|
"@type": "TestResult",
|
231
242
|
"outcome": "earl:untested"
|
232
243
|
},
|
233
|
-
"
|
234
|
-
"subject": "http://rubygems.org/gems/rdf-turtle",
|
244
|
+
"subject": "https://rubygems.org/gems/rdf-turtle",
|
235
245
|
"assertedBy": null
|
236
246
|
}
|
237
|
-
]
|
238
|
-
"testAction": "http://example/test-01.ttl",
|
239
|
-
"testResult": "http://example/test-01.out"
|
247
|
+
]
|
240
248
|
}
|
241
249
|
]
|
242
250
|
}
|