2 * Copyright 2005 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.wamblee.conditions;
19 import junit.framework.TestCase;
22 * Tests {@link org.wamblee.conditions.PropertyRegexCondition}.
24 * @author Erik Brakkee
26 public class PropertyRegexConditionTest extends TestCase {
28 private boolean match(String aProperty, String aRegex, boolean aToLower, TestBean aBean) {
29 PropertyRegexCondition<TestBean> condition = new PropertyRegexCondition<TestBean>(aProperty, aRegex, aToLower );
30 return condition.matches(aBean);
33 private void checkMatch(String aProperty, String aRegex, boolean aToLower, TestBean aBean, boolean aResult) {
34 assertEquals( aResult, match(aProperty, aRegex, aToLower, aBean));
38 * Verifies correct matching behavior for several cases.
41 public void testMatchProperty() {
42 TestBean bean = new TestBean("Hallo");
43 checkMatch("value", "Hallo", false, bean, true);
44 checkMatch("value", "all", false, bean, false);
45 checkMatch("value", ".a.*o", false, bean, true);
46 checkMatch("value", "hallo", false, bean, false); // no match when not converting to lower case.
47 checkMatch("value", "hallo", true, bean, true); // match!
51 * Uses property regex condition for non-existing property.
52 * Verifies that a runtime exception is thrown.
55 public void testWrongProperty() {
56 TestBean bean = new TestBean("Hallo");
58 match("bla", ".*", false, bean);
59 } catch (RuntimeException e) {
66 * Applies condition to a private property. Verifies that a runtime
67 * exception is thrown.
70 public void testPrivateProperty() {
71 TestBean bean = new TestBean("Hallo");
73 match("privateValue", ".*", false, bean);
74 } catch (RuntimeException e) {