Skip to content

Instantly share code, notes, and snippets.

View der's full-sized avatar

Dave Reynolds der

  • Epimorphics Ltd
  • Bristol, UK
View GitHub Profile
@der
der / test.sh
Last active March 7, 2018 17:56
fuseki mem test - revised script
#!/bin/bash
function dump_dataset() {
echo "<<<< ---- ----"
curl --header 'Accept: application/trig' http://localhost:3030/ds
echo ">>>> ---- ----"
}
echo "== Setup"
curl -s -d update="CLEAR ALL" http://localhost:3030/ds 1>/dev/null
@der
der / testfail.sh
Created March 7, 2018 14:01
fuseki mem test - failing script
#!/bin/bash
echo "== Step 1a"
curl --header 'Accept: application/trig' http://localhost:3030/ds
echo "----"
s-put http://localhost:3030/ds/data http://localhost/graph5 update.ttl
echo "== Step 1b"
curl --header 'Accept: application/trig' http://localhost:3030/ds
echo "----"
@der
der / testpass.sh
Created March 7, 2018 14:01
fuseki mem test - passing script
#!/bin/bash
echo "== Step 1a"
curl --header 'Accept: application/trig' http://localhost:3030/ds
echo "----"
s-put http://localhost:3030/ds/data http://localhost:3030/graph5 update.ttl
echo "== Step 1b"
curl --header 'Accept: application/trig' http://localhost:3030/ds
echo "----"
@der
der / U1.ru
Created March 7, 2018 14:00
fuseki mem test - update script
DELETE {GRAPH ?G {<http://localhost/test/r4> ?p ?o}} WHERE {GRAPH ?G {<http://localhost/test/r4> ?p ?o}};
INSERT DATA { GRAPH <http://localhost/test/r4> {
<http://localhost/test/r4> <http://www.w3.org/2000/01/rdf-schema#label> "r 4 modified" .
<http://localhost/test/r4> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://localhost/test/Resource> .
} }
@der
der / update.ttl
Created March 7, 2018 13:59
fuseki mem test - update.ttl
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix eg: <http://localhost/test/>
eg:r4 a eg:Resource; rdfs:label "r 4" .