blob: 2c05e22095c39d28d8210a755f46892cd55c5c5c [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.spatial.jgeometry.wrapped;
import java.util.List;
import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;
import oracle.spatial.geometry.JGeometry;
import org.eclipse.persistence.expressions.Expression;
import org.eclipse.persistence.expressions.ExpressionBuilder;
import org.eclipse.persistence.expressions.spatial.SpatialExpressionFactory;
import org.eclipse.persistence.expressions.spatial.SpatialParameters;
import org.eclipse.persistence.expressions.spatial.SpatialParameters.Mask;
import org.eclipse.persistence.expressions.spatial.SpatialParameters.QueryType;
import org.eclipse.persistence.queries.ReadAllQuery;
import org.eclipse.persistence.testing.framework.TestProblemException;
import org.eclipse.persistence.testing.tests.spatial.jgeometry.SQLReader;
import org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.WrappedSpatial;
import org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.MyGeometry;
import org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.Spatial;
/**
* This test requires the following SQL be run prior to running the test suite:
* CREATE OR REPLACE TYPE MY_GEOMETRY AS OBJECT (id NUMBER, geom MDSYS.SDO_GEOMETRY)
*
* Query tests that do not involve using a spatial operator in the selection
* criteria.
*/
public class NamedQueryTests extends WrappedSpatialTestCase {
private static final String SESSION_QUERY_NAME = "wrapped-jgeometry-session-query";
private static final String DESCRIPTOR_QUERY_NAME = "wrapped-jgeometry-descriptor-query";
public NamedQueryTests(String name){
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.setName("NamedQueryTests");
suite.addTest(new NamedQueryTests("testNamedSessionQueryNoBinding"));
suite.addTest(new NamedQueryTests("testNamedSessionQueryBindAllParameters"));
suite.addTest(new NamedQueryTests("testNamedSessionQueryBindQueryParameters"));
suite.addTest(new NamedQueryTests("testDescriptorNamedQueryNoBinding"));
suite.addTest(new NamedQueryTests("testDescriptorNamedQueryBindAllParameter"));
suite.addTest(new NamedQueryTests("testDescriptorNamedQueryBindQueryParameter"));
return new TestSetup(suite) {
protected void setUp(){
try{
WrappedSpatialTestCase.repopulate(getSession(), true);
ReadAllQuery raq = new ReadAllQuery(WrappedSpatial.class);
ExpressionBuilder eb = raq.getExpressionBuilder();
SpatialParameters parameters = new SpatialParameters();
parameters.setMask(Mask.ANYINTERACT).setQueryType(QueryType.WINDOW);
Expression selectionCriteria = SpatialExpressionFactory.relate(eb.get("geometry").getField("geom"), eb.getParameter("GEOMETRY"), parameters);
raq.setSelectionCriteria(selectionCriteria);
raq.addAscendingOrdering("id");
raq.addArgument("GEOMETRY", JGeometry.class);
getSession().addQuery(SESSION_QUERY_NAME, raq);
raq = new ReadAllQuery(WrappedSpatial.class);
eb = raq.getExpressionBuilder();
parameters = new SpatialParameters();
parameters.setDistance(10d);
selectionCriteria = SpatialExpressionFactory.withinDistance(eb.get("geometry").getField("geom"), eb.getParameter("GEOMETRY"), parameters);
raq.setSelectionCriteria(selectionCriteria);
raq.addAscendingOrdering("id");
raq.addArgument("GEOMETRY", MyGeometry.class);
getSession().getClassDescriptor(WrappedSpatial.class).getDescriptorQueryManager().addQuery(DESCRIPTOR_QUERY_NAME, raq);
} catch (Exception e){
throw new TestProblemException("Could not setup JGeometry test model. Note: This model requires you to run the following CREATE OR REPLACE TYPE MY_GEOMETRY AS OBJECT (id NUMBER, geom MDSYS.SDO_GEOMETRY): ", e);
}
}
protected void tearDown() {
try{
getSession().removeQuery(SESSION_QUERY_NAME);
getSession().getClassDescriptor(WrappedSpatial.class).getDescriptorQueryManager().removeQuery(DESCRIPTOR_QUERY_NAME);
}catch (Exception e){
throw new TestProblemException("Could not tearDown NamedQueryTests for SimpleSpatialTestCase.", e);
}
}
};
}
public void executeNamedSessionQuery() throws Exception {
String sql =
"select GID, GEOMETRY FROM WRAPPED_SPATIAL WS where mdsys.sdo_relate(ws.geometry.geom, " +
"mdsys.sdo_geometry(3,null,null, mdsys.sdo_elem_info_array(1,3,3), " +
"mdsys.sdo_ordinate_array(1,1, 20, 20)), " +
"'MASK=ANYINTERACT QUERYTYPE=WINDOW') = 'TRUE' ORDER BY GID";
SQLReader reader = new SQLReader(session, sql);
double[] points = new double[] { 1, 1, 1, 20, 10, 20, 20, 1, 1, 1 };
JGeometry rectangle = JGeometry.createLinearPolygon(points, 2, 0);
List<Spatial> results =
(List)session.executeQuery(SESSION_QUERY_NAME, rectangle);
String compareResult = reader.compare(results);
assertNull(compareResult, compareResult);
}
public void testNamedSessionQueryNoBinding() throws Exception {
getSession().getLogin().getPlatform().setShouldBindAllParameters(false);
executeNamedSessionQuery();
}
public void testNamedSessionQueryBindAllParameters() throws Exception {
getSession().getLogin().getPlatform().setShouldBindAllParameters(true);
executeNamedSessionQuery();
}
public void testNamedSessionQueryBindQueryParameters() throws Exception {
getSession().getLogin().getPlatform().setShouldBindAllParameters(false);
getSession().getQuery(SESSION_QUERY_NAME).bindAllParameters();
executeNamedSessionQuery();
}
public void executeDescriptorNamedQuery() throws Exception {
String sql =
"select GID, GEOMETRY FROM WRAPPED_SPATIAL WS where " +
"mdsys.sdo_within_distance(ws.geometry.geom, " +
"mdsys.sdo_geometry(3,null,null, " +
"mdsys.sdo_elem_info_array(1,3,4), " +
"mdsys.sdo_ordinate_array(-10,0, 0, 10, 10, 0)), " +
"'DISTANCE=10') = 'TRUE' ORDER BY GID";
SQLReader reader = new SQLReader(session, sql);
JGeometry circle = JGeometry.createCircle(-10, 0, 0, 10, 10, 0, 0);
List<Spatial> results =
(List)session.executeQuery(DESCRIPTOR_QUERY_NAME,
WrappedSpatial.class, circle);
String compareResult = reader.compare(results);
assertNull(compareResult, compareResult);
}
public void testDescriptorNamedQueryNoBinding() throws Exception {
getSession().getLogin().getPlatform().setShouldBindAllParameters(false);
executeDescriptorNamedQuery();
}
public void testDescriptorNamedQueryBindAllParameter() throws Exception {
getSession().getLogin().getPlatform().setShouldBindAllParameters(true);
executeDescriptorNamedQuery();
}
public void testDescriptorNamedQueryBindQueryParameter() throws Exception {
getSession().getLogin().getPlatform().setShouldBindAllParameters(false);
getSession().getClassDescriptor(WrappedSpatial.class).getDescriptorQueryManager().getQuery(DESCRIPTOR_QUERY_NAME).bindAllParameters();
executeDescriptorNamedQuery();
}
}