use of eu.europa.ec.fisheries.uvms.spatial.model.schemas.PointType in project UVMS-Docker by UnionVMS.
the class SpatialJmsIT method createSpatialEnrichmentRequestForRuttTest.
@Test(timeout = 40000)
public void createSpatialEnrichmentRequestForRuttTest() throws Exception {
List<LatLong> position = movementHelper.createRutt(10);
for (LatLong latLong : position) {
SpatialEnrichmentRQ spatialEnrichmentRQ = new SpatialEnrichmentRQ();
AreaTypes areaTypes = new AreaTypes();
areaTypes.getAreaTypes().add(AreaType.COUNTRY);
areaTypes.getAreaTypes().add(AreaType.RFMO);
areaTypes.getAreaTypes().add(AreaType.EEZ);
spatialEnrichmentRQ.setAreaTypes(areaTypes);
LocationTypes locationTypes = new LocationTypes();
locationTypes.getLocationTypes().add(LocationType.PORT);
spatialEnrichmentRQ.setLocationTypes(locationTypes);
spatialEnrichmentRQ.setMethod(SpatialModuleMethod.GET_ENRICHMENT);
spatialEnrichmentRQ.setUnit(UnitType.NAUTICAL_MILES);
PointType pointType = new PointType();
spatialEnrichmentRQ.setPoint(pointType);
pointType.setLatitude(latLong.latitude);
pointType.setLongitude(latLong.longitude);
pointType.setCrs(4326);
SpatialEnrichmentRS spatialEnrichmentRS = spatialHelper.createSpatialEnrichment(spatialEnrichmentRQ);
assertNotNull(spatialEnrichmentRS);
}
}
use of eu.europa.ec.fisheries.uvms.spatial.model.schemas.PointType in project UVMS-Docker by UnionVMS.
the class SpatialJmsPerformanceIT method createSpatialEnrichmentRequestPerformanceTest.
/**
* Creates the spatial enrichment request performance test.
*
* @throws Exception the exception
*/
@Test
@PerfTest(threads = 2, duration = 10000)
@Required(max = 6900, average = 2500, percentile95 = 2500, throughput = 1)
public void createSpatialEnrichmentRequestPerformanceTest() throws Exception {
LatLong position = createRutt.get(ThreadLocalRandom.current().nextInt(0, 30));
SpatialEnrichmentRQ spatialEnrichmentRQ = new SpatialEnrichmentRQ();
AreaTypes areaTypes = new AreaTypes();
areaTypes.getAreaTypes().add(AreaType.COUNTRY);
areaTypes.getAreaTypes().add(AreaType.PORT);
areaTypes.getAreaTypes().add(AreaType.FMZ);
spatialEnrichmentRQ.setAreaTypes(areaTypes);
LocationTypes locationTypes = new LocationTypes();
locationTypes.getLocationTypes().add(LocationType.PORT);
spatialEnrichmentRQ.setLocationTypes(locationTypes);
spatialEnrichmentRQ.setMethod(SpatialModuleMethod.GET_ENRICHMENT);
spatialEnrichmentRQ.setUnit(UnitType.NAUTICAL_MILES);
PointType pointType = new PointType();
spatialEnrichmentRQ.setPoint(pointType);
pointType.setLatitude(position.latitude);
pointType.setLongitude(position.longitude);
pointType.setCrs(4326);
SpatialEnrichmentRS spatialEnrichmentRS = spatialHelper.createSpatialEnrichment(spatialEnrichmentRQ);
assertNotNull(spatialEnrichmentRS);
}
use of eu.europa.ec.fisheries.uvms.spatial.model.schemas.PointType in project UVMS-Docker by UnionVMS.
the class SpatialJmsIT method createSpatialEnrichmentRequestTest.
/**
* Creates the spatial enrichment request test.
*
* @throws Exception the exception
*/
@Test(timeout = 10000)
public void createSpatialEnrichmentRequestTest() throws Exception {
LatLong position = movementHelper.createRutt(1).get(0);
SpatialEnrichmentRQ spatialEnrichmentRQ = new SpatialEnrichmentRQ();
AreaTypes areaTypes = new AreaTypes();
areaTypes.getAreaTypes().add(AreaType.COUNTRY);
areaTypes.getAreaTypes().add(AreaType.PORT);
areaTypes.getAreaTypes().add(AreaType.FMZ);
spatialEnrichmentRQ.setAreaTypes(areaTypes);
LocationTypes locationTypes = new LocationTypes();
locationTypes.getLocationTypes().add(LocationType.PORT);
spatialEnrichmentRQ.setLocationTypes(locationTypes);
spatialEnrichmentRQ.setMethod(SpatialModuleMethod.GET_ENRICHMENT);
spatialEnrichmentRQ.setUnit(UnitType.NAUTICAL_MILES);
PointType pointType = new PointType();
spatialEnrichmentRQ.setPoint(pointType);
pointType.setLatitude(position.latitude);
pointType.setLongitude(position.longitude);
pointType.setCrs(4326);
SpatialEnrichmentRS spatialEnrichmentRS = spatialHelper.createSpatialEnrichment(spatialEnrichmentRQ);
assertNotNull(spatialEnrichmentRS);
}
Aggregations