use of org.apache.jena.sparql.pfunction.PropFuncArg in project jena by apache.
the class NearbyPFTest method testExtractObjectArguments_5args_pos0_fail.
/**
* Test of extractObjectArguments method, of class NearbyPF.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_5args_pos0_fail() {
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_PROP);
float lat = 0;
float lon = 1;
float radius = 5000;
String unitsURI = Unit_URI.METRE_URL;
int limit = 10;
Literal geometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(NodeValue.makeString("e").asNode(), NodeValue.makeFloat(lon).asNode(), NodeValue.makeFloat(radius).asNode(), NodeFactory.createURI(unitsURI), NodeValue.makeInteger(limit).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO, radius, unitsURI);
NearbyPF instance = new NearbyPF();
SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
// assertEquals(expResult, result);
}
use of org.apache.jena.sparql.pfunction.PropFuncArg in project jena by apache.
the class NearbyPFTest method testExtractObjectArguments_5args_pos2_fail.
/**
* Test of extractObjectArguments method, of class NearbyPF.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_5args_pos2_fail() {
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_PROP);
float lat = 0;
float lon = 1;
float radius = 5000;
String unitsURI = Unit_URI.METRE_URL;
int limit = 10;
Literal geometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(lat).asNode(), NodeValue.makeFloat(lon).asNode(), NodeValue.makeString("5000").asNode(), NodeFactory.createURI(unitsURI), NodeValue.makeInteger(limit).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO, radius, unitsURI);
NearbyPF instance = new NearbyPF();
SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
// assertEquals(expResult, result);
}
use of org.apache.jena.sparql.pfunction.PropFuncArg in project jena by apache.
the class NearbyPFTest method testExtractObjectArguments_5args_pos1_fail.
/**
* Test of extractObjectArguments method, of class NearbyPF.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_5args_pos1_fail() {
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_PROP);
float lat = 0;
float lon = 1;
float radius = 5000;
String unitsURI = Unit_URI.METRE_URL;
int limit = 10;
Literal geometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(lat).asNode(), NodeValue.makeString("e").asNode(), NodeValue.makeFloat(radius).asNode(), NodeFactory.createURI(unitsURI), NodeValue.makeInteger(limit).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO, radius, unitsURI);
NearbyPF instance = new NearbyPF();
SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
// assertEquals(expResult, result);
}
use of org.apache.jena.sparql.pfunction.PropFuncArg in project jena by apache.
the class NearbyGeomPFTest method testExtractObjectArguments_4args_pos3_fail.
/**
* Test of extractObjectArguments method, of class NearbyGeomPF.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_4args_pos3_fail() {
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_GEOM_PROP);
float lat = 0;
float lon = 1;
float radius = 5000;
String unitsURI = Unit_URI.METRE_URL;
int limit = 10;
Literal geometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(geometry.asNode(), NodeValue.makeFloat(radius).asNode(), NodeValue.makeString(unitsURI).asNode(), NodeValue.makeInteger(limit).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO, radius, unitsURI);
NearbyGeomPF instance = new NearbyGeomPF();
SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
// assertEquals(expResult, result);
}
use of org.apache.jena.sparql.pfunction.PropFuncArg in project jena by apache.
the class NearbyGeomPFTest method testCheckSecondFilter.
/**
* Test of checkSecondFilter method, of class NearbyGeomPF.
*/
@Test
public void testCheckSecondFilter() {
NearbyGeomPF instance = new NearbyGeomPF();
// Property Function
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_GEOM_PROP);
// Geometry and Envelope parameters
float lat = 0;
float lon = 1;
float radius = 5;
Literal geometry = ConvertLatLon.toLiteral(lat, lon);
Literal targetGeometry = ConvertLatLon.toLiteral(lat + 0.0001f, lon);
List<Node> objectNodes = Arrays.asList(geometry.asNode(), NodeValue.makeFloat(radius).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
// Function arguments
SpatialArguments spatialArguments = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
GeometryWrapper targetGeometryWrapper = GeometryWrapper.extract(targetGeometry);
// Test arguments
boolean expResult = true;
boolean result = instance.checkSecondFilter(spatialArguments, targetGeometryWrapper);
assertEquals(expResult, result);
}
Aggregations