ValidateMappingOutsideFPHttpUnitTag.java from Jameleon at Krugle
Show ValidateMappingOutsideFPHttpUnitTag.java syntax highlighted
/*
Jameleon - An automation testing tool..
Copyright (C) 2003 Christian W. Hargraves (engrean@hotmail.com)
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; either
version 2.1 of the License, or (at your option) any later version.
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.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package net.sf.jameleon.plugin.httpunit.acceptance;
import net.sf.jameleon.plugin.httpunit.HttpUnitFunctionTag;
import java.util.Iterator;
import java.util.List;
/**
* Tests varible mapping outside a functional point and
* that the appropriate set methods are called.
* @jameleon.function name="validate-mapping-outside-fp"
*/
public class ValidateMappingOutsideFPHttpUnitTag extends HttpUnitFunctionTag{
protected String prefix;
protected String fromVariable;
protected int expectedListSize;
/**
* The prefix of the new variable
* @jameleon.attribute required="false"
*/
public void setPrefix(String prefix){
this.prefix = prefix;
}
/**
* The the variable name to grab the information from
* @jameleon.attribute required="false"
*/
public void setFromVariable(String fromVariable){
this.fromVariable = fromVariable;
}
/**
* The the expected size of the list
* @jameleon.attribute required="false"
*/
public void setExpectedListSize(int expectedListSize){
this.expectedListSize = expectedListSize;
}
/**
* The the expected size of the list
* @jameleon.attribute required="false"
*/
public void setExpectedListSize2(int expectedListSize){
this.expectedListSize = expectedListSize;
}
public void testBlock(){
Object orgObj = getVariable(fromVariable);
Object newObj = getVariable(prefix + fromVariable);
if (orgObj instanceof String && newObj instanceof String) {
assertEquals((String)orgObj, (String)newObj);
}else if (orgObj instanceof List && newObj instanceof List) {
List orgL = (List)orgObj;
List newL = (List)newObj;
assertEquals("Length of orignal list should be "+expectedListSize, expectedListSize, orgL.size());
assertEquals("Length of new list should be "+expectedListSize, expectedListSize, newL.size());
assertEquals("Length of lists should be the same.", orgL.size(), newL.size());
Iterator orgIt = orgL.iterator();
Iterator newIt = newL.iterator();
while (orgIt.hasNext()) {
assertEquals(orgIt.next(), newIt.next());
}
}
}
public void tearDown(){
removeVariable(fromVariable);
removeVariable(prefix+fromVariable);
}
}
See more files for this project here