blob: b2722708a2390ce35641a943cca33f6e5e358119 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 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 v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.testing.tests.spatial.jgeometry;
import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.persistence.expressions.ExpressionBuilder;
import org.eclipse.persistence.queries.UpdateAllQuery;
import org.eclipse.persistence.sessions.UnitOfWork;
import org.eclipse.persistence.testing.framework.TestProblemException;
import org.eclipse.persistence.testing.models.spatial.jgeometry.SimpleSpatial;
/**
* SQL samples from C:\oracle\db\10.2\md\demo\examples\eginsert.sql
* Note: Table re-named from TEST81 to SIMPLE_SPATIAL
*/
public class UpdateTests extends SimpleSpatialTestCase {
public UpdateTests(String name){
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.setName("UpdateTests");
suite.addTest(new UpdateTests("testUpdateSingleToNull"));
suite.addTest(new UpdateTests("testUpdateAllToNull"));
suite.addTest(new UpdateTests("testReplaceExisting"));
suite.addTest(new UpdateTests("testUpdateNull"));
return new TestSetup(suite) {
protected void setUp(){
try{
SimpleSpatialTestCase.repopulate(getSession(), true);
} catch (Exception e){
throw new TestProblemException("Could not setup JGeometry test model", e);
}
}
protected void tearDown() {
}
};
}
public void testUpdateSingleToNull() throws Exception {
UnitOfWork uow = session.acquireUnitOfWork();
SimpleSpatial ss =
(SimpleSpatial)uow.readObject(SimpleSpatial.class, new ExpressionBuilder().get("geometry").notNull());
assertNotNull("No SimpleSpatial instances found", ss);
ss.setJGeometry(null);
uow.writeChanges();
uow.release();
}
public void testUpdateAllToNull() throws Exception {
UnitOfWork uow = session.acquireUnitOfWork();
UpdateAllQuery uaq = new UpdateAllQuery(SimpleSpatial.class);
uaq.addUpdate("geometry", (Object)null);
// BUG: 5102352 - workaround requires selection criteria
uaq.setSelectionCriteria(uaq.getExpressionBuilder().get("id").notNull());
try {
uow.executeQuery(uaq);
} catch (Exception e) {
e.printStackTrace();
throw e;
}
uow.writeChanges();
uow.release();
}
public void testReplaceExisting() {
UnitOfWork uow = session.acquireUnitOfWork();
SimpleSpatial ss =
(SimpleSpatial)uow.readObject(SimpleSpatial.class, new ExpressionBuilder().get("id").equal(1001));
assertNotNull("No SimpleSpatial instances found", ss);
ss.setJGeometry(new SampleGeometries().simplyPolygon());
uow.writeChanges();
uow.release();
}
public void testUpdateNull() {
UnitOfWork uow = session.acquireUnitOfWork();
SimpleSpatial ss =
(SimpleSpatial)uow.readObject(SimpleSpatial.class, new ExpressionBuilder().get("geometry").isNull());
assertNotNull("No SimpleSpatial instances found", ss);
ss.setJGeometry(new SampleGeometries().simplyPolygon());
uow.writeChanges();
uow.release();
}
}