@Test public void testServerSideOnlyInfo() throws Exception { GetMapConfigurationRequest request = new GetMapConfigurationRequest(); request.setApplicationId("appServerSideOnly"); request.setMapId("mapServerSideOnly"); GetMapConfigurationResponse response = (GetMapConfigurationResponse) dispatcher.execute(GetMapConfigurationRequest.COMMAND, request, null, "en"); if (response.isError()) { response.getErrors().get(0).printStackTrace(); } Assert.assertFalse(response.isError()); ClientMapInfo mapInfo = response.getMapInfo(); Assert.assertNotNull(mapInfo); // user data ClientUserDataInfo info = mapInfo.getUserData(); Assert.assertNull(info); // widget data Assert.assertNotNull(mapInfo.getWidgetInfo()); Assert.assertNull(mapInfo.getWidgetInfo("appDummy")); // not present Assert.assertNotNull(mapInfo.getWidgetInfo("layerTree")); // present Assert.assertNull(mapInfo.getWidgetInfo("mapDummy")); // filtered because ServerSideOnlyInfo // ViewBounds LimitOption Assert.assertEquals( BoundsLimitOption.COMPLETELY_WITHIN_MAX_BOUNDS, mapInfo.getViewBoundsLimitOption()); }
@Test public void testConvertMaxExtent() throws Exception { Layer layer = configurationService.getLayer("countries"); Bbox configMaxExtent = layer.getLayerInfo().getMaxExtent(); Assert.assertEquals(-85.05112877980659, configMaxExtent.getX(), DOUBLE_TOLERANCE); Assert.assertEquals(-85.05112877980659, configMaxExtent.getY(), DOUBLE_TOLERANCE); Assert.assertEquals(170.102257, configMaxExtent.getWidth(), DOUBLE_TOLERANCE); Assert.assertEquals(170.102257, configMaxExtent.getHeight(), DOUBLE_TOLERANCE); GetMapConfigurationRequest request = new GetMapConfigurationRequest(); request.setApplicationId("simplevectors"); request.setMapId("coordTestMap"); GetMapConfigurationResponse response = (GetMapConfigurationResponse) dispatcher.execute(GetMapConfigurationRequest.COMMAND, request, null, "en"); if (response.isError()) { response.getErrors().get(0).printStackTrace(); } Assert.assertFalse(response.isError()); ClientMapInfo mapInfo = response.getMapInfo(); Assert.assertNotNull(mapInfo); Bbox mapMaxExtent = mapInfo.getLayers().get(0).getMaxExtent(); // these values were registered during a first run, they have *not* been externally verified Assert.assertEquals(-9467848.347161204, mapMaxExtent.getX(), DOUBLE_TOLERANCE); Assert.assertEquals(-2.0037508342789236E7, mapMaxExtent.getY(), DOUBLE_TOLERANCE); Assert.assertEquals(1.8935696632026553E7, mapMaxExtent.getWidth(), DOUBLE_TOLERANCE); Assert.assertEquals(4.007501596344786E7, mapMaxExtent.getHeight(), DOUBLE_TOLERANCE); // user data ClientUserDataInfo info = mapInfo.getUserData(); Assert.assertNotNull(info); Assert.assertTrue(info instanceof ClientApplicationInfo.DummyClientUserDataInfo); Assert.assertEquals( "some data", ((ClientApplicationInfo.DummyClientUserDataInfo) info).getDummy()); // widget data Assert.assertNotNull(mapInfo.getWidgetInfo()); Assert.assertNull(mapInfo.getWidgetInfo("mapSelect")); Assert.assertNotNull(mapInfo.getWidgetInfo("layerTree")); Assert.assertEquals( "layer1, layer2", ((ClientApplicationInfo.DummyClientWidgetInfo) mapInfo.getWidgetInfo("layerTree")) .getDummy()); // Default value of ViewBounds LimitOption BoundsLimitOption boundsLimitOption = mapInfo.getViewBoundsLimitOption(); Assert.assertNotNull(info); Assert.assertEquals(BoundsLimitOption.COMPLETELY_WITHIN_MAX_BOUNDS, boundsLimitOption); }