Package org.geomajas.command.configuration

Source Code of org.geomajas.command.configuration.UserMaximumExtentCommandTest

/*
* This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
*
* Copyright 2008-2011 Geosparc nv, http://www.geosparc.com/, Belgium.
*
* The program is available in open source according to the GNU Affero
* General Public License. All contributions in this program are covered
* by the Geomajas Contributors License Agreement. For full licensing
* details, see LICENSE.txt in the project root.
*/

package org.geomajas.command.configuration;

import org.geomajas.command.CommandDispatcher;
import org.geomajas.command.dto.UserMaximumExtentRequest;
import org.geomajas.command.dto.UserMaximumExtentResponse;
import org.geomajas.geometry.Bbox;
import org.junit.After;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

/**
* Test for {@link UserMaximumExtentCommand}.
*
* @author Joachim Van der Auwera
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"/org/geomajas/spring/geomajasContext.xml",
    "/org/geomajas/testdata/layerCountries.xml", "/org/geomajas/testdata/simplevectorsContext.xml"})
public class UserMaximumExtentCommandTest {

  private static final double DOUBLE_TOLERANCE = .0000000001;
  private static final String LAYER_ID = "countries";
  private static final String CRS = "EPSG:4326";

  @Autowired
  private CommandDispatcher dispatcher;

  @Test
  public void testUserMaximumExtent() throws Exception {
    UserMaximumExtentRequest request = new UserMaximumExtentRequest();
    request.setCrs(CRS);
    request.setLayerIds(new String[] {LAYER_ID});
    UserMaximumExtentResponse response = (UserMaximumExtentResponse) dispatcher.execute(
        UserMaximumExtentRequest.COMMAND, request, null, "en");
    if (response.isError()) {
      response.getErrors().get(0).printStackTrace();
    }
    Assert.assertFalse(response.isError());
    Bbox bounds = response.getBounds();
    Assert.assertNotNull(bounds);
    Assert.assertEquals(-1.0, bounds.getX(), DOUBLE_TOLERANCE);
    Assert.assertEquals(-1.0, bounds.getY(), DOUBLE_TOLERANCE);
    Assert.assertEquals(1.0, bounds.getMaxX(), DOUBLE_TOLERANCE);
    Assert.assertEquals(1.0, bounds.getMaxY(), DOUBLE_TOLERANCE);
  }
}
TOP

Related Classes of org.geomajas.command.configuration.UserMaximumExtentCommandTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.