Package org.geomajas.internal.configuration

Source Code of org.geomajas.internal.configuration.ConfigurationDtoPostProcessorLayerTreeTest

/*
* 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.internal.configuration;

import junit.framework.Assert;

import org.junit.Test;
import org.springframework.beans.factory.BeanCreationException;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
* Verify that the check on layer tree nodes, layer needs to be part of the map.
*
* @author Joachim Van der Auwera
*/
public class ConfigurationDtoPostProcessorLayerTreeTest {

  @Test
  public void testLayerTreeCheck() throws Exception {
    try {
      ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext();
      context.setId("test");
      context.setDisplayName("test");
      context.setConfigLocation(
          "/org/geomajas/spring/geomajasContext.xml " +
          "/org/geomajas/layer/bean/beanContext.xml " +
          "/org/geomajas/layer/bean/layerBeans.xml " +
          "/org/geomajas/internal/configuration/layerTreeInvalid.xml " +
          "");
      context.refresh();
      Assert.fail("Context initialization should have failed.");
    } catch (BeanCreationException bce) {
      Assert.assertTrue(bce.getCause().getMessage().startsWith(
          "A LayerTreeNodeInfo object can only reference layers which are part of the map, layer "));
    }
  }
 
  @Test
  public void testAttributeNameCheck() {
    try {
      ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext();
      context.setId("test");
      context.setDisplayName("test");
      context.setConfigLocation(
          "/org/geomajas/spring/geomajasContext.xml " +
          "/org/geomajas/layer/bean/beanContext.xml " +
          "/org/geomajas/layer/bean/layerBeans.xml " +
          "/org/geomajas/internal/configuration/layerBeansInvalid.xml " +
          "");
      context.refresh();
      Assert.fail("Context initialization should have failed.");
    } catch (BeanCreationException bce) {
      Assert.assertTrue(bce.getCause().getCause().getMessage().contains(
          "manyToOne.stringAttr"));
    }
  }
}
TOP

Related Classes of org.geomajas.internal.configuration.ConfigurationDtoPostProcessorLayerTreeTest

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.