use of com.inova8.intelligentgraph.model.Resource in project com.inova8.intelligentgraph by peterjohnlawrence.
the class Local_GetFact_Tests method test_36.
/**
* Test 36.
*/
@Test
@Order(36)
void test_36() {
try {
source = IntelligentGraphRepository.create(workingRep);
source.removeGraph("<http://inova8.com/calc2graph/contextGraph>");
Graph graph = source.addGraph("<http://inova8.com/calc2graph/contextGraph>");
Thing myCountry = graph.getThing(":Country1");
myCountry.addFact(":time", "_customQueryOptions.get(\"time\") ;", SCRIPT.GROOVY);
Literal time = literal(42);
Literal time1 = literal(41);
CustomQueryOptions customQueryOptions = new CustomQueryOptions();
customQueryOptions.add("time", time);
Thing myCountry1 = graph.getThing(":Country1");
Resource result = myCountry1.getFact("<http://inova8.com/calc2graph/def/time>[eq %1; gt %2]", customQueryOptions, time, time1);
assertEquals("42", result.stringValue());
result = myCountry1.getFact("<http://inova8.com/calc2graph/def/time>[eq %1; gt %2]", customQueryOptions, time);
assertEquals("42", result.stringValue());
} catch (Exception e) {
assertEquals("", e.getMessage());
}
}
use of com.inova8.intelligentgraph.model.Resource in project com.inova8.intelligentgraph by peterjohnlawrence.
the class Remote_PathQL_GetFactTests method test_2.
/**
* Test 2.
*/
@Test
@Order(2)
void test_2() {
try {
Thing $this = source.getThing(iri("http://inova8.com/calc2graph/id/BatteryLimit1"), null);
Resource result = $this.getFact(":volumeFlow");
assertEquals("59", result.stringValue());
} catch (Exception e) {
fail();
e.printStackTrace();
}
}
use of com.inova8.intelligentgraph.model.Resource in project com.inova8.intelligentgraph by peterjohnlawrence.
the class Remote_PathQL_GetFactTests method test_19.
/**
* Test 19.
*/
@Test
@Order(19)
void test_19() {
try {
Thing $this = source.getThing(iri("http://inova8.com/calc2graph/id/BatteryLimit1"), null);
Resource result = $this.getFact(":Location@:appearsOn[eq [ rdfs:label 'Calc2Graph2']]#");
assertEquals("http://inova8.com/calc2graph/id/Location_BL1_2", result.stringValue());
} catch (Exception e) {
e.printStackTrace();
}
}
use of com.inova8.intelligentgraph.model.Resource in project com.inova8.intelligentgraph by peterjohnlawrence.
the class Remote_PathQL_GetFactTests method test_1.
// /**
// * Search 1.
// */
// @Test
// @Order(1)
// void search_1() {
//
// try {
// MatchResults searchResultsIterator = match.entityMatch("Unit2");
// while(searchResultsIterator.hasNext()) {
// BindingSet nextSearchResultBindingSet = searchResultsIterator.nextBindingSet();
// int i=1;
// }
// int i=1;
// } catch (Exception e) {
// fail();
// e.printStackTrace();
// }
// }
/**
* Test 1.
*/
@Test
@Order(1)
// literal("$this.prefix(\"<http://inova8.com/calc2graph/def/>\");var result= $this.getFact(\":volumeFlow\").floatValue()* $this.getFact(\":Attribute@:density\").floatValue(); result;",
void test_1() {
try {
// Thing $this = new Thing(source, iri("http://inova8.com/calc2graph/id/BatteryLimit1"), null);
Thing $this = source.getThing(iri("http://inova8.com/calc2graph/id/BatteryLimit1"), null);
Resource result = $this.getFact("<http://inova8.com/calc2graph/def/volumeFlow>");
assertEquals("59", result.stringValue());
} catch (Exception e) {
fail();
e.printStackTrace();
}
}
use of com.inova8.intelligentgraph.model.Resource in project com.inova8.intelligentgraph by peterjohnlawrence.
the class Remote_PathQL_GetFactTests method test_2_1.
/**
* Test 2 1.
*/
@Test
@Order(21)
void test_2_1() {
try {
Thing $this = source.getThing(iri("http://inova8.com/calc2graph/id/Unit1"), null);
Resource result = $this.getFact(":hasFeedBatteryLimit/:volumeFlow");
assertEquals("59", result.stringValue());
} catch (Exception e) {
fail();
e.printStackTrace();
}
}
Aggregations