blob: 8922c5668be66b613be4f715fc478dc07afa8ba1 [file] [log] [blame]
/*
* Copyright 2002,2004 The Apache Software Foundation.
*
* Licensed 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.
*/
package org.apache.commons.jelly.tags.regexp;
import org.apache.commons.jelly.XMLOutput;
import org.apache.commons.jelly.JellyContext;
import junit.framework.TestCase;
import org.apache.commons.jelly.tags.regexp.MatchTag;
/*** <p><code>MatchTagTest</code> a class that is useful to perform regexp matches
* in strings.</p>
*
* @author <a href="mailto:christian@inx-soft.com">Christian Amor Kvalheim</a>
* @version $Revision: 1.1 $
*/
public class MatchTagTest extends TestCase {
public MatchTagTest(String name)
{
super(name);
}
public void setUp() throws Exception
{
}
public void testDoTag() throws Exception
{
MatchTag matchExpTag = new MatchTag();
XMLOutput xmlOutput = new XMLOutput();
matchExpTag.setText("ID1234");
matchExpTag.setExpr("[A-Z][A-Z][0-9]{4}");
matchExpTag.setVar("testvar");
matchExpTag.setContext(new JellyContext());
matchExpTag.doTag(xmlOutput);
assertEquals("TRUE", matchExpTag.getContext().getVariable("testvar").toString().toUpperCase());
}
public void tearDown()
{
}
}