aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src/test/java/org/apache/velocity/test/StrictCompareTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'velocity-engine-core/src/test/java/org/apache/velocity/test/StrictCompareTestCase.java')
-rw-r--r--velocity-engine-core/src/test/java/org/apache/velocity/test/StrictCompareTestCase.java76
1 files changed, 76 insertions, 0 deletions
diff --git a/velocity-engine-core/src/test/java/org/apache/velocity/test/StrictCompareTestCase.java b/velocity-engine-core/src/test/java/org/apache/velocity/test/StrictCompareTestCase.java
new file mode 100644
index 00000000..5174f248
--- /dev/null
+++ b/velocity-engine-core/src/test/java/org/apache/velocity/test/StrictCompareTestCase.java
@@ -0,0 +1,76 @@
+package org.apache.velocity.test;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import org.apache.velocity.exception.VelocityException;
+import org.apache.velocity.runtime.RuntimeConstants;
+
+/**
+ * Make sure exceptions are thrown for strict comparisons that
+ * cannot be compared.
+ */
+public class StrictCompareTestCase extends BaseTestCase
+{
+ public StrictCompareTestCase(String name)
+ {
+ super(name);
+ }
+
+ @Override
+ public void setUp() throws Exception
+ {
+ super.setUp();
+ engine.setProperty(RuntimeConstants.RUNTIME_REFERENCES_STRICT, Boolean.TRUE);
+ context.put("NULL", null);
+ context.put("a", "abc");
+ context.put("b", 3);
+ context.put("TRUE", Boolean.TRUE);
+ }
+
+ public void testCompare()
+ {
+ assertVelocityEx("#if($a > $NULL)#end");
+ assertVelocityEx("#if($a < $NULL)#end");
+ assertVelocityEx("#if($a >= $NULL)#end");
+ assertVelocityEx("#if($a <= $NULL)#end");
+
+ assertVelocityEx("#if($NULL > $a)#end");
+ assertVelocityEx("#if($NULL < $a)#end");
+ assertVelocityEx("#if($NULL >= $a)#end");
+ assertVelocityEx("#if($NULL <= $a)#end");
+
+ assertVelocityEx("#if($NULL >= $NULL)#end");
+ assertVelocityEx("#if($a >= $b)#end");
+ assertVelocityEx("#if($a <= $b)#end");
+ assertVelocityEx("#if($a > $b)#end");
+ assertVelocityEx("#if($a < $b)#end");
+
+ assertVelocityEx("#if($a < 5)#end");
+ assertVelocityEx("#if($a > 5)#end");
+ }
+
+ /**
+ * Assert that we get a VelocityException when calling evaluate
+ */
+ public void assertVelocityEx(String template)
+ {
+ assertEvalException(template, VelocityException.class);
+ }
+}