/* * GeoServer-Manager - Simple Manager Library for GeoServer * * Copyright (C) 2007,2011 GeoSolutions S.A.S. * http://www.geo-solutions.it * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package it.geosolutions.geoserver.rest; import it.geosolutions.geoserver.rest.decoder.utils.NameLinkElem; import it.geosolutions.geoserver.rest.decoder.RESTDataStoreList; import it.geosolutions.geoserver.rest.decoder.RESTDataStore; import it.geosolutions.geoserver.rest.decoder.RESTLayerList; import it.geosolutions.geoserver.rest.decoder.RESTNamespaceList; import it.geosolutions.geoserver.rest.decoder.RESTWorkspaceList; import java.util.List; /** * * @author etj */ public class GeoserverRESTReaderTest extends GeoserverRESTTest { public GeoserverRESTReaderTest(String testName) { super(testName); } /** * Test of getLayers method, of class GeoServerRESTReader. */ public void testGetLayers() { if(!enabled()) return; RESTLayerList result = reader.getLayers(); assertNotNull(result); // assertEquals(/*CHANGEME*/19, result.getChildren("layer").size()); // value in default gs installation // System.out.println("Layers:" + result.getChildren("layer").size()); System.out.println("Layers:" + result.size()); System.out.print("Layers:" ); for (NameLinkElem shlayer : result) { assertNotNull(shlayer.getName()); System.out.print(shlayer.getName() + " "); } // for (Element layer : (List)result.getChildren("layer")) { // System.out.print(layer.getChildText("name") + " "); // } System.out.println(); } /** * Test of getDatastores method, of class GeoServerRESTReader. */ public void testGetDatastores() { if(!enabled()) return; RESTWorkspaceList wslist = reader.getWorkspaces(); assertNotNull(wslist); // assertEquals(7, wslist.size()); // value in default gs installation System.out.println("Workspaces: " + wslist.size()); int dsnum = 0; for (RESTWorkspaceList.RESTShortWorkspace ws : wslist) { System.out.println("Getting DSlist for WS " + ws.getName() + "..." ); RESTDataStoreList result = reader.getDatastores(ws.getName()); assertNotNull(result); dsnum += result.size(); for (NameLinkElem ds : result) { assertNotNull(ds.getName()); System.out.print(ds.getName() + " " ); RESTDataStore datastore = reader.getDatastore(ws.getName(), ds.getName()); assertNotNull(datastore); assertEquals(ds.getName(), datastore.getName()); assertEquals(ws.getName(), datastore.getWorkspaceName()); } System.out.println(); } System.out.println(); System.out.println("Datastores:" + dsnum); // value in default gs installation // assertEquals(4, dsnum); // value in default gs installation } public void testGetWSDSNames() { if(!enabled()) return; RESTWorkspaceList wslist = reader.getWorkspaces(); assertNotNull(wslist); // assertEquals(7, wslist.size()); // value in default gs installation List wsnames = reader.getWorkspaceNames(); assertNotNull(wsnames); // assertEquals(7, wsnames.size()); // value in default gs installation // System.out.println("Workspaces: " + wslist.size()); int dsnum = 0; int wscnt = 0; for (RESTWorkspaceList.RESTShortWorkspace ws : wslist) { String wsname = wsnames.get(wscnt++); List dsnames = reader.getDatastores(wsname).getNames(); RESTDataStoreList dslist = reader.getDatastores(ws.getName()); assertNotNull(dsnames); assertNotNull(dslist); assertEquals(dsnames.size(), dslist.size()); } } /** * Test of getDatastore method, of class GeoServerRESTReader. */ public void testGetDatastore() { //tested in testGetDatastores() } /** * Test of getLayer method, of class GeoServerRESTReader. */ public void testGetLayer() { } /** * Test of getNamespaceNames method, of class GeoServerRESTReader. */ public void testGetNamespaces() { if(!enabled()) return; RESTNamespaceList result = reader.getNamespaces(); List names = reader.getNamespaceNames(); assertNotNull(result); // assertEquals(7, result.size()); // value in default gs installation assertNotNull(names); assertEquals(names.size(), result.size()); // value in default gs installation System.out.println("Namespaces:" + result.size()); System.out.print("Namespaces:" ); int namesIdx = 0; for (RESTNamespaceList.RESTShortNamespace ns : result) { assertEquals("namespace mismatch", names.get(namesIdx++), ns.getName()); System.out.print(ns.getName() + " " ); } System.out.println(); } /** * Test of getWorkspaceNames method, of class GeoServerRESTReader. */ public void testGetNamespaceNames() { if(!enabled()) return; List names = reader.getNamespaceNames(); assertNotNull(names); // assertEquals(7, names.size()); // value in default gs installation System.out.println("Namespaces:" + names.size()); System.out.print("Namespaces:"); for (String name : names) { System.out.print(name + " "); } System.out.println(); } /** * Test of getWorkspaceNames method, of class GeoServerRESTReader. */ public void testGetWorkspaces() { if(!enabled()) return; RESTWorkspaceList wslist = reader.getWorkspaces(); assertNotNull(wslist); // assertEquals(7, wslist.size()); // value in default gs installation System.out.println("Workspaces:" + wslist.size()); System.out.print("Workspaces:"); for (RESTWorkspaceList.RESTShortWorkspace ws : wslist) { System.out.print(ws.getName() + " "); } System.out.println(); assertEquals(wslist.size(), reader.getWorkspaceNames().size()); } /** * Test of getWorkspaceNames method, of class GeoServerRESTReader. */ public void testGetWorkspaceNames() { if(!enabled()) return; List names = reader.getWorkspaceNames(); assertNotNull(names); // assertEquals(7, names.size()); // value in default gs installation System.out.println("Workspaces:" + names.size()); System.out.print("Workspaces:"); for (String name : names) { System.out.print(name + " "); } System.out.println(); } }