use of org.geotoolkit.storage.feature.query.Query in project geotoolkit by Geomatys.
the class PostgresSimpleTypeTest method testSimpleInsert.
@Test
public void testSimpleInsert() throws DataStoreException, VersioningException {
reload(true);
store.createFeatureType(FTYPE_SIMPLE);
FeatureType resType = store.getFeatureType(store.getNames().iterator().next().toString());
Feature feature = resType.newInstance();
feature.setPropertyValue("boolean", true);
// byte type do not exist, it's converted to smallint/int2
feature.setPropertyValue("byte", (short) 45);
feature.setPropertyValue("short", (short) 963);
feature.setPropertyValue("integer", 123456);
feature.setPropertyValue("long", 456789l);
feature.setPropertyValue("float", 7.3f);
feature.setPropertyValue("double", 14.5);
feature.setPropertyValue("string", "a string");
List<ResourceId> addedIds = store.addFeatures(resType.getName().toString(), Collections.singleton(feature));
assertEquals(1, addedIds.size());
assertEquals(FF.resourceId("1"), addedIds.get(0));
Session session = store.createSession(false);
FeatureCollection col = session.getFeatureCollection(new Query(resType.getName()));
assertEquals(1, col.size());
FeatureIterator ite = col.iterator();
try {
final Feature resFeature = ite.next();
assertNotNull(resFeature);
assertEquals(true, resFeature.getPropertyValue("boolean"));
assertEquals((short) 45, resFeature.getPropertyValue("byte"));
assertEquals((short) 963, resFeature.getPropertyValue("short"));
assertEquals(123456, resFeature.getPropertyValue("integer"));
assertEquals(456789l, resFeature.getPropertyValue("long"));
assertEquals(7.3f, resFeature.getPropertyValue("float"));
assertEquals(14.5d, resFeature.getPropertyValue("double"));
assertEquals("a string", resFeature.getPropertyValue("string"));
} finally {
ite.close();
}
// SECOND TEST for NAN values ------------------------------------------
reload(true);
store.createFeatureType(FTYPE_SIMPLE);
resType = store.getFeatureType(store.getNames().iterator().next().toString());
feature = resType.newInstance();
feature.setPropertyValue("fid", 0);
feature.setPropertyValue("boolean", true);
feature.setPropertyValue("byte", (short) 45);
feature.setPropertyValue("short", (short) 963);
feature.setPropertyValue("integer", 123456);
feature.setPropertyValue("long", 456789l);
feature.setPropertyValue("float", Float.NaN);
feature.setPropertyValue("double", Double.NaN);
feature.setPropertyValue("string", "a string");
addedIds = store.addFeatures(resType.getName().toString(), Collections.singleton(feature));
assertEquals(1, addedIds.size());
assertEquals(FF.resourceId("1"), addedIds.get(0));
session = store.createSession(false);
col = session.getFeatureCollection(new Query(resType.getName()));
assertEquals(1, col.size());
ite = col.iterator();
try {
final Feature resFeature = ite.next();
assertNotNull(resFeature);
assertEquals(true, resFeature.getPropertyValue("boolean"));
assertEquals((short) 45, resFeature.getPropertyValue("byte"));
assertEquals((short) 963, resFeature.getPropertyValue("short"));
assertEquals(123456, resFeature.getPropertyValue("integer"));
assertEquals(456789l, resFeature.getPropertyValue("long"));
assertEquals(Float.NaN, resFeature.getPropertyValue("float"));
assertEquals(Double.NaN, resFeature.getPropertyValue("double"));
assertEquals("a string", resFeature.getPropertyValue("string"));
} finally {
ite.close();
}
}
use of org.geotoolkit.storage.feature.query.Query in project geotoolkit by Geomatys.
the class PostgresSimpleTypeTest method testUglyTableName.
/**
* Test ugly named table
*/
@Test
public void testUglyTableName() throws Exception {
reload(true);
final FeatureTypeBuilder ftb = new FeatureTypeBuilder();
ftb.setName("test'te#st$'test\"'test");
ftb.addAttribute(String.class).setName("text");
final FeatureType ft = ftb.build();
store.createFeatureType(ft);
final FeatureType resType = store.getFeatureType(store.getNames().iterator().next().toString());
final Feature record = resType.newInstance();
record.setPropertyValue("text", "un'deux'trois'quatre");
List<ResourceId> addedIds = store.addFeatures(resType.getName().toString(), Collections.singleton(record));
assertEquals(1, addedIds.size());
assertEquals(FF.resourceId("1"), addedIds.get(0));
final Query query = new Query(resType.getName());
final FeatureReader ite = store.getFeatureReader(query);
boolean found = false;
try {
while (ite.hasNext()) {
final Feature feature = ite.next();
Object val = feature.getPropertyValue("text");
assertEquals("un'deux'trois'quatre", val);
found = true;
}
} finally {
ite.close();
}
assertTrue(found);
}
use of org.geotoolkit.storage.feature.query.Query in project geotoolkit by Geomatys.
the class PostgresSimpleTypeTest method testArrayInsert.
@Test
public void testArrayInsert() throws DataStoreException, VersioningException {
reload(true);
store.createFeatureType(FTYPE_ARRAY);
final FeatureType resType = store.getFeatureType(store.getNames().iterator().next().toString());
final Feature feature = resType.newInstance();
feature.setPropertyValue("fid", 0);
feature.setPropertyValue("boolean", new Boolean[] { true, false, true });
feature.setPropertyValue("byte", new Short[] { 3, 6, 9 });
feature.setPropertyValue("short", new Short[] { -5, 12, -50 });
feature.setPropertyValue("integer", new Integer[] { 123, 456, 789 });
feature.setPropertyValue("long", new Long[] { 111l, 222l, 333l });
feature.setPropertyValue("float", new Float[] { 1.2f, -5.9f, 8.1f });
feature.setPropertyValue("double", new Double[] { 78.3d, 41.23d, -99.66d });
feature.setPropertyValue("string", new String[] { "marc", "hubert", "samy" });
List<ResourceId> addedIds = store.addFeatures(resType.getName().toString(), Collections.singleton(feature));
assertEquals(1, addedIds.size());
assertEquals(FF.resourceId("1"), addedIds.get(0));
final Session session = store.createSession(false);
final FeatureCollection col = session.getFeatureCollection(new Query(resType.getName()));
assertEquals(1, col.size());
// Postgis allow NULL in arrays, so returned array are not primitive types
final FeatureIterator ite = col.iterator();
try {
final Feature resFeature = ite.next();
assertNotNull(resFeature);
assertArrayEquals(new Boolean[] { true, false, true }, (Boolean[]) resFeature.getPropertyValue("boolean"));
assertArrayEquals(new Short[] { 3, 6, 9 }, (Short[]) resFeature.getPropertyValue("byte"));
assertArrayEquals(new Short[] { -5, 12, -50 }, (Short[]) resFeature.getPropertyValue("short"));
assertArrayEquals(new Integer[] { 123, 456, 789 }, (Integer[]) resFeature.getPropertyValue("integer"));
assertArrayEquals(new Long[] { 111l, 222l, 333l }, (Long[]) resFeature.getPropertyValue("long"));
assertArrayEquals(new Float[] { 1.2f, -5.9f, 8.1f }, (Float[]) resFeature.getPropertyValue("float"));
assertArrayEquals(new Double[] { 78.3d, 41.23d, -99.66d }, (Double[]) resFeature.getPropertyValue("double"));
assertArrayEquals(new String[] { "marc", "hubert", "samy" }, (String[]) resFeature.getPropertyValue("string"));
} finally {
ite.close();
}
}
use of org.geotoolkit.storage.feature.query.Query in project geotoolkit by Geomatys.
the class PostgresSimpleTypeTest method testGeometryInsert.
@Test
public void testGeometryInsert() throws DataStoreException, NoSuchAuthorityCodeException, FactoryException, VersioningException {
reload(true);
// //////////////////////////////////////////////////////////////////////
final GeometryFactory gf = JTS.getFactory();
// creating a point -----------------------------------------------
final Point point = gf.createPoint(new Coordinate(56, 45));
// creating a multipoint ------------------------------------------
final MultiPoint mp = gf.createMultiPoint(new Coordinate[] { new Coordinate(23, 78), new Coordinate(-10, 43), new Coordinate(12, 94) });
// creating a linestring ------------------------------------------
final LineString ls = gf.createLineString(new Coordinate[] { new Coordinate(23, 78), new Coordinate(-10, 43), new Coordinate(12, 94) });
// creating a multilinestring -------------------------------------
final LineString ls1 = gf.createLineString(new Coordinate[] { new Coordinate(30, 45), new Coordinate(56, 29) });
final LineString ls2 = gf.createLineString(new Coordinate[] { new Coordinate(98, 12), new Coordinate(19, 87) });
final MultiLineString mls = gf.createMultiLineString(new LineString[] { ls1, ls2 });
// creating a polygon ---------------------------------------------
final LinearRing ring = gf.createLinearRing(new Coordinate[] { new Coordinate(23, 78), new Coordinate(-10, 43), new Coordinate(12, 94), new Coordinate(23, 78) });
final Polygon polygon = gf.createPolygon(ring, new LinearRing[0]);
// creating a multipolygon ----------------------------------------
final MultiPolygon mpolygon = gf.createMultiPolygon(new Polygon[] { polygon });
// creating a geometry collection ----------------------------------------
final GeometryCollection gc = gf.createGeometryCollection(new Geometry[] { point, ls, polygon });
// //////////////////////////////////////////////////////////////////////
store.createFeatureType(FTYPE_GEOMETRY);
final FeatureType resType = store.getFeatureType(store.getNames().iterator().next().toString());
final Feature feature = resType.newInstance();
feature.setPropertyValue("fid", 0);
feature.setPropertyValue("geometry", point);
feature.setPropertyValue("point", point);
feature.setPropertyValue("multipoint", mp);
feature.setPropertyValue("linestring", ls);
feature.setPropertyValue("multilinestring", mls);
feature.setPropertyValue("polygon", polygon);
feature.setPropertyValue("multipolygon", mpolygon);
feature.setPropertyValue("geometrycollection", gc);
List<ResourceId> addedIds = store.addFeatures(resType.getName().toString(), Collections.singleton(feature));
assertEquals(1, addedIds.size());
assertEquals(FF.resourceId("1"), addedIds.get(0));
final Session session = store.createSession(false);
final FeatureCollection col = session.getFeatureCollection(new Query(resType.getName()));
assertEquals(1, col.size());
// Postgis allow NULL in arrays, so returned array are not primitive types
final FeatureIterator ite = col.iterator();
try {
final Feature resFeature = ite.next();
assertNotNull(resFeature);
Geometry geom;
geom = (Geometry) resFeature.getPropertyValue("geometry");
assertEquals(point, geom);
assertEquals(CommonCRS.WGS84.normalizedGeographic(), JTS.findCoordinateReferenceSystem(geom));
geom = (Geometry) resFeature.getPropertyValue("point");
assertEquals(point, geom);
assertEquals(CommonCRS.WGS84.normalizedGeographic(), JTS.findCoordinateReferenceSystem(geom));
geom = (Geometry) resFeature.getPropertyValue("multipoint");
assertEquals(mp, geom);
assertEquals(CommonCRS.WGS84.normalizedGeographic(), JTS.findCoordinateReferenceSystem(geom));
geom = (Geometry) resFeature.getPropertyValue("linestring");
assertEquals(ls, geom);
assertEquals(CommonCRS.WGS84.normalizedGeographic(), JTS.findCoordinateReferenceSystem(geom));
geom = (Geometry) resFeature.getPropertyValue("multilinestring");
assertEquals(mls, geom);
assertEquals(CommonCRS.WGS84.normalizedGeographic(), JTS.findCoordinateReferenceSystem(geom));
geom = (Geometry) resFeature.getPropertyValue("polygon");
assertEquals(polygon, geom);
assertEquals(CommonCRS.WGS84.normalizedGeographic(), JTS.findCoordinateReferenceSystem(geom));
geom = (Geometry) resFeature.getPropertyValue("multipolygon");
assertEquals(mpolygon, geom);
assertEquals(CommonCRS.WGS84.normalizedGeographic(), JTS.findCoordinateReferenceSystem(geom));
geom = (Geometry) resFeature.getPropertyValue("geometrycollection");
assertEquals(gc, geom);
assertEquals(CommonCRS.WGS84.normalizedGeographic(), JTS.findCoordinateReferenceSystem(geom));
} finally {
ite.close();
}
}
use of org.geotoolkit.storage.feature.query.Query in project geotoolkit by Geomatys.
the class PostgresSimpleTypeTest method testArray2Insert.
@Test
public void testArray2Insert() throws DataStoreException, VersioningException {
reload(true);
store.createFeatureType(FTYPE_ARRAY2);
final FeatureType resType = store.getFeatureType(store.getNames().iterator().next().toString());
final Feature feature = resType.newInstance();
feature.setPropertyValue("fid", 0);
feature.setPropertyValue("boolean", new Boolean[][] { { true, false, true }, { false, true, false }, { false, false, false } });
feature.setPropertyValue("byte", new Short[][] { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } });
feature.setPropertyValue("short", new Short[][] { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } });
feature.setPropertyValue("integer", new Integer[][] { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } });
feature.setPropertyValue("long", new Long[][] { { 1l, 2l, 3l }, { 4l, 5l, 6l }, { 7l, 8l, 9l } });
feature.setPropertyValue("float", new Float[][] { { 1f, 2f, 3f }, { 4f, 5f, 6f }, { 7f, 8f, 9f } });
feature.setPropertyValue("double", new Double[][] { { 1d, 2d, 3d }, { 4d, 5d, 6d }, { 7d, 8d, 9d } });
feature.setPropertyValue("string", new String[][] { { "1", "2", "3" }, { "4", "5", "6" }, { "7", "8", "9" } });
List<ResourceId> addedIds = store.addFeatures(resType.getName().toString(), Collections.singleton(feature));
assertEquals(1, addedIds.size());
assertEquals(FF.resourceId("1"), addedIds.get(0));
final Session session = store.createSession(false);
final FeatureCollection col = session.getFeatureCollection(new Query(resType.getName()));
assertEquals(1, col.size());
// Postgis allow NULL in arrays, so returned array are not primitive types
final FeatureIterator ite = col.iterator();
try {
final Feature resFeature = ite.next();
assertNotNull(resFeature);
assertArrayEquals((Boolean[][]) feature.getPropertyValue("boolean"), (Boolean[][]) resFeature.getPropertyValue("boolean"));
assertArrayEquals((Short[][]) feature.getPropertyValue("byte"), (Short[][]) resFeature.getPropertyValue("byte"));
assertArrayEquals((Short[][]) feature.getPropertyValue("short"), (Short[][]) resFeature.getPropertyValue("short"));
assertArrayEquals((Integer[][]) feature.getPropertyValue("integer"), (Integer[][]) resFeature.getPropertyValue("integer"));
assertArrayEquals((Long[][]) feature.getPropertyValue("long"), (Long[][]) resFeature.getPropertyValue("long"));
assertArrayEquals((Float[][]) feature.getPropertyValue("float"), (Float[][]) resFeature.getPropertyValue("float"));
assertArrayEquals((Double[][]) feature.getPropertyValue("double"), (Double[][]) resFeature.getPropertyValue("double"));
assertArrayEquals((String[][]) feature.getPropertyValue("string"), (String[][]) resFeature.getPropertyValue("string"));
} finally {
ite.close();
}
}
Aggregations