@lblod/graph-rdfa-processor 2.1.9 → 2.1.10

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.
package/test/test.js CHANGED
@@ -3,48 +3,48 @@ import assert from "assert";
3
3
  import getRDFaGraph from "../src";
4
4
  import { readFileSync, writeFileSync } from "fs";
5
5
  describe("getRDFaGraph", function () {
6
- let html = `<div typeof="rdfs:Class" resource="http://schema.org/CreativeWork">
6
+ let html = `<div typeof="rdfs:Class" resource="http://schema.org/CreativeWork">
7
7
  <span class="h" property="rdfs:label">CreativeWork</span>
8
8
  <span property="rdfs:comment">The most generic kind of creative work, including books, movies, photographs, software programs, etc.</span>
9
9
  <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Thing">Thing</a></span>
10
10
  <span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews">rNews</a></span>
11
11
  </div>`;
12
12
 
13
- let expected = `<http://schema.org/CreativeWork> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class>;
13
+ let expected = `<http://schema.org/CreativeWork> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class>;
14
14
  <http://www.w3.org/2000/01/rdf-schema#label> "CreativeWork";
15
15
  <http://www.w3.org/2000/01/rdf-schema#comment> "The most generic kind of creative work, including books, movies, photographs, software programs, etc.";
16
16
  <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://schema.org/Thing>;
17
17
  <http://purl.org/dc/terms/source> <http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews> .
18
18
  `;
19
19
 
20
- it("should getRDFaGraph from a document", function () {
21
- let { document } = jsdom(html).defaultView.window;
22
- let graph = getRDFaGraph(document, { baseURI: "http://localhost" });
23
- assert.equal(graph.toString(), expected);
24
- });
20
+ it("should getRDFaGraph from a document", function () {
21
+ let { document } = jsdom(html).defaultView.window;
22
+ let graph = getRDFaGraph(document, { baseURI: "http://localhost" });
23
+ assert.equal(graph.toString(), expected);
24
+ });
25
25
 
26
- it.only("test bug", () => {
27
- let ht = readFileSync("./bug12.html");
28
- let { document } = jsdom(ht).defaultView.window;
26
+ it.only("test bug", () => {
27
+ let ht = readFileSync("./bug13.html");
28
+ let { document } = jsdom(ht).defaultView.window;
29
29
 
30
- let graph = getRDFaGraph(document, {
31
- baseURI: "http://localhost",
32
- specialHtmlPredicates: [
33
- {
34
- source: "http://www.w3.org/ns/prov#value",
35
- target:
36
- "http://lblod.data.gift/vocabularies/besluit/extractedDecisionContent",
37
- },
38
- ],
30
+ let graph = getRDFaGraph(document, {
31
+ baseURI: "http://localhost",
32
+ specialHtmlPredicates: [
33
+ {
34
+ source: "http://www.w3.org/ns/prov#value",
35
+ target:
36
+ "http://lblod.data.gift/vocabularies/besluit/extractedDecisionContent",
37
+ },
38
+ ],
39
+ });
40
+ writeFileSync("/tmp/x.ttl", graph.toString(), "utf8");
39
41
  });
40
- writeFileSync("/tmp/x.ttl", graph.toString(), "utf8");
41
- });
42
42
 
43
- it("should getRDFaGraph from a node", function () {
44
- let { document } = jsdom(html).defaultView.window;
45
- let graph = getRDFaGraph(document.getElementsByTagName("div")[0], {
46
- baseURI: "http://localhost",
43
+ it("should getRDFaGraph from a node", function () {
44
+ let { document } = jsdom(html).defaultView.window;
45
+ let graph = getRDFaGraph(document.getElementsByTagName("div")[0], {
46
+ baseURI: "http://localhost",
47
+ });
48
+ assert.equal(graph.toString(), expected);
47
49
  });
48
- assert.equal(graph.toString(), expected);
49
- });
50
50
  });