/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2002-2008, 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.filter.v1_0.capabilities; import org.w3c.dom.Document; import javax.xml.namespace.QName; import org.opengis.filter.capability.ComparisonOperators; import org.geotools.xml.Binding; public class Comparison_OperatorsTypeBindingTest extends FilterCapabilitiesTestSupport { public void testType() { assertEquals(ComparisonOperators.class, binding(OGC.Comparison_OperatorsType).getType()); } public void testExectionMode() { assertEquals(Binding.OVERRIDE, binding(OGC.Comparison_OperatorsType).getExecutionMode()); } public void testParse1() throws Exception { FilterMockData.comparison(document, document); ComparisonOperators comparison = (ComparisonOperators) parse(OGC.Comparison_OperatorsType); assertNotNull(comparison.getOperator("LessThan")); assertNotNull(comparison.getOperator("GreaterThan")); assertNotNull(comparison.getOperator("LessThanOrEqualTo")); assertNotNull(comparison.getOperator("GreaterThanOrEqualTo")); assertNotNull(comparison.getOperator("EqualTo")); assertNotNull(comparison.getOperator("NotEqualTo")); assertNotNull(comparison.getOperator("Between")); assertNotNull(comparison.getOperator("Like")); assertNotNull(comparison.getOperator("NullCheck")); } public void testParse2() throws Exception { FilterMockData.comparison(document, document, false); ComparisonOperators comparison = (ComparisonOperators) parse(OGC.Comparison_OperatorsType); assertNull(comparison.getOperator("LessThan")); assertNull(comparison.getOperator("GreaterThan")); assertNull(comparison.getOperator("LessThanOrEqualTo")); assertNull(comparison.getOperator("GreaterThanOrEqualTo")); assertNull(comparison.getOperator("EqualTo")); assertNull(comparison.getOperator("NotEqualTo")); assertNotNull(comparison.getOperator("Between")); assertNotNull(comparison.getOperator("Like")); assertNotNull(comparison.getOperator("NullCheck")); } public void testEncode() throws Exception { Document dom = encode(FilterMockData.comparison(), new QName(OGC.NAMESPACE, "Comparison_Operators"), OGC.Comparison_OperatorsType); assertNotNull(getElementByQName(dom, OGC.Simple_Comparisons)); assertNotNull(getElementByQName(dom, OGC.Like)); assertNotNull(getElementByQName(dom, OGC.Between)); assertNotNull(getElementByQName(dom, OGC.NullCheck)); dom = encode(FilterMockData.comparison(false), new QName(OGC.NAMESPACE, "Comparison_Operators"), OGC.Comparison_OperatorsType); assertNull(getElementByQName(dom, OGC.Simple_Arithmetic)); assertNotNull(getElementByQName(dom, OGC.Like)); assertNotNull(getElementByQName(dom, OGC.Between)); assertNotNull(getElementByQName(dom, OGC.NullCheck)); } }