/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2006-2011, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotools.gce.grassraster; import java.io.File; import java.net.URL; import org.geotools.data.DataUtilities; import junit.framework.TestCase; /** * Test the {@link JGrassMapEnvironment} class and the created paths. * * @author Andrea Antonello (www.hydrologis.com) * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/plugin/grassraster/src/test/java/org/geotools/gce/grassraster/JGrassMapEnvironmentTest.java $ */ @SuppressWarnings("nls") public class JGrassMapEnvironmentTest extends TestCase { public void test() { URL pitUrl = this.getClass().getClassLoader().getResource("testlocation/test/cell/pit"); File mapFile = DataUtilities.urlToFile(pitUrl); File mapsetFile = mapFile.getParentFile().getParentFile(); JGrassMapEnvironment jME = new JGrassMapEnvironment(mapFile); checkEnvironment(jME); jME = new JGrassMapEnvironment(mapsetFile, "pit"); checkEnvironment(jME); } private void checkEnvironment( JGrassMapEnvironment jME ) { File cell = jME.getCELL(); assertTrue(cell.exists()); assertTrue(cell.getAbsolutePath().endsWith( "testlocation" + File.separator + "test" + File.separator + "cell" + File.separator + "pit")); File cellFolder = jME.getCellFolder(); assertTrue(cellFolder.exists() && cellFolder.isDirectory()); assertTrue(cellFolder.getAbsolutePath().endsWith( "testlocation" + File.separator + "test" + File.separator + "cell")); File fcell = jME.getFCELL(); assertTrue(fcell.exists()); assertTrue(fcell.getAbsolutePath().endsWith( "testlocation" + File.separator + "test" + File.separator + "fcell" + File.separator + "pit")); File fcellFolder = jME.getFcellFolder(); assertTrue(fcellFolder.exists() && fcellFolder.isDirectory()); assertTrue(fcellFolder.getAbsolutePath().endsWith( "testlocation" + File.separator + "test" + File.separator + "fcell")); File colr = jME.getCOLR(); assertTrue(colr.getAbsolutePath().endsWith( "testlocation" + File.separator + "test" + File.separator + "colr" + File.separator + "pit")); File colrFolder = jME.getColrFolder(); assertTrue(colrFolder.getAbsolutePath().endsWith( "testlocation" + File.separator + "test" + File.separator + "colr")); File wind = jME.getWIND(); assertTrue(wind.exists()); assertTrue(wind.getAbsolutePath().endsWith( "testlocation" + File.separator + "test" + File.separator + "WIND")); } }