2009-05-04 08:27:09 -07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" type="text/css"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
query - 3 triples - where contains
|
|
|
|
-->
|
|
|
|
|
|
|
|
<window title="XUL Template Tests" width="500" height="600"
|
|
|
|
onload="test_template();"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
|
|
|
|
<body xmlns="http://www.w3.org/1999/xhtml" style="height: 300px; overflow: auto;"/>
|
|
|
|
|
2012-12-10 06:02:00 -08:00
|
|
|
<data id="output">
|
|
|
|
<label id="http://www.some-fictitious-zoo.com/arachnids/tarantula" value="Robert likes Tarantulas"/>
|
|
|
|
<label step="-4" id="http://www.some-fictitious-zoo.com/mammals/africanelephant" value="Robert likes African Elephants"/>
|
|
|
|
<label step="5" id="http://www.some-fictitious-zoo.com/mammals/africanelephant" value="Robert likes African Elephants"/>
|
|
|
|
</data>
|
|
|
|
|
2009-05-04 08:27:09 -07:00
|
|
|
<script src="templates_shared.js"/>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<![CDATA[
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
var testid ="query - 3 triples - where contains";
|
|
|
|
var queryType = "rdf";
|
|
|
|
var isTreeBuilder = false;
|
|
|
|
var needsOpen = false;
|
|
|
|
var notWorkingYet = false;
|
|
|
|
var notWorkingYetDynamic = false;
|
2012-12-10 06:02:00 -08:00
|
|
|
var expectedOutput = document.getElementById("output");
|
2009-05-04 08:27:09 -07:00
|
|
|
|
|
|
|
var changes = [
|
|
|
|
// step 1
|
|
|
|
function(targetds, root) {
|
|
|
|
var newnode = RDF.GetResource(ZOO_NS + 'mammals/arctichare');
|
|
|
|
targetds.Assert(newnode, RDF.GetResource(ZOO_NS + 'rdf#name'),
|
|
|
|
RDF.GetLiteral('Arctic Hare'), true);
|
|
|
|
var container = ContainerUtils.MakeSeq(targetds,
|
|
|
|
RDF.GetResource(ZOO_NS + 'mammals'));
|
|
|
|
container.AppendElement(newnode);
|
|
|
|
},
|
|
|
|
// step 2
|
|
|
|
function(targetds, root) {
|
|
|
|
var newnode = RDF.GetResource(ZOO_NS + 'mammals/koala');
|
|
|
|
targetds.Assert(newnode, RDF.GetResource(ZOO_NS + 'rdf#name'),
|
|
|
|
RDF.GetLiteral('Koala'), true);
|
|
|
|
var container = ContainerUtils.MakeSeq(targetds,
|
|
|
|
RDF.GetResource(ZOO_NS + 'mammals'));
|
|
|
|
container.InsertElementAt(newnode, '4', true);
|
|
|
|
},
|
|
|
|
// step 3
|
|
|
|
function(targetds, root) {
|
|
|
|
var newnode = RDF.GetResource(ZOO_NS + 'mammals/zebra');
|
|
|
|
targetds.Assert(newnode, RDF.GetResource(ZOO_NS + 'rdf#name'),
|
|
|
|
RDF.GetLiteral('Zebra'), true);
|
|
|
|
var container = ContainerUtils.MakeSeq(targetds,
|
|
|
|
RDF.GetResource(ZOO_NS + 'mammals'));
|
|
|
|
container.InsertElementAt(newnode, '1', true);
|
|
|
|
},
|
|
|
|
// step 4
|
|
|
|
function(targetds, root) {
|
|
|
|
var container = ContainerUtils.MakeSeq(targetds,
|
|
|
|
RDF.GetResource(ZOO_NS + 'mammals'));
|
|
|
|
var removednode = container.RemoveElementAt('4', true);
|
|
|
|
targetds.Unassert(removednode, RDF.GetResource(ZOO_NS + 'rdf#name'),
|
|
|
|
RDF.GetLiteral('African Elephant'), true);
|
|
|
|
},
|
|
|
|
// step 5
|
|
|
|
function(targetds, root) {
|
|
|
|
var newnode = RDF.GetResource(ZOO_NS + 'mammals/africanelephant');
|
|
|
|
targetds.Assert(newnode, RDF.GetResource(ZOO_NS + 'rdf#name'),
|
|
|
|
RDF.GetLiteral('African Elephant'), true);
|
|
|
|
var container = ContainerUtils.MakeSeq(targetds,
|
|
|
|
RDF.GetResource(ZOO_NS + 'mammals'));
|
|
|
|
container.AppendElement(newnode);
|
|
|
|
},
|
|
|
|
// step 6
|
|
|
|
function(targetds, root) {
|
|
|
|
targetds.Assert(RDF.GetResource(ZOO_NS + 'mammals/koala'),
|
|
|
|
RDF.GetResource(ZOO_NS + 'rdf#specimensAsString'),
|
|
|
|
RDF.GetLiteral('8'), true);
|
|
|
|
}
|
|
|
|
];
|
|
|
|
]]>
|
|
|
|
</script>
|
|
|
|
|
2010-11-19 09:39:40 -08:00
|
|
|
<vbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="root" datasources="rdf:null" ref="http://www.some-fictitious-zoo.com/humans/robert">
|
2009-05-04 08:27:09 -07:00
|
|
|
<template id="template">
|
|
|
|
<query id="query">
|
|
|
|
<content uri="?uri"/>
|
|
|
|
<triple subject="?uri" predicate="http://www.some-fictitious-zoo.com/rdf#name" object="?humanname"/>
|
|
|
|
<triple subject="?uri" predicate="http://www.some-fictitious-zoo.com/rdf#favoriteAnimal" object="?favoriteAnimal"/>
|
|
|
|
<triple subject="?favoriteAnimal" predicate="http://www.some-fictitious-zoo.com/rdf#name" object="?animalname"/>
|
|
|
|
</query>
|
|
|
|
<rule>
|
|
|
|
<conditions id="conditions">
|
|
|
|
<where subject="?favoriteAnimal" rel="contains" value="ant"/>
|
|
|
|
</conditions>
|
|
|
|
<action>
|
|
|
|
<label uri="?favoriteAnimal" value="?humanname likes ?animalname^s"/>
|
|
|
|
</action>
|
|
|
|
</rule>
|
|
|
|
</template>
|
|
|
|
</vbox>
|
|
|
|
|
|
|
|
</window>
|