- Should be highly configurable
- Should provide plugin option
- Possible to simulate any test scenarios (like GUI testing/Test Report Preparation/etc)
- Tester friendly
This version framework has been implemented with main 3 artifacts,
- Datamodel: Test Data, one-to-one mapped with Testgroup.
- Testgroup: Testgroup definition, defines one ore more rules.
- Rules: Simple shell script with 4 life cycle functions.
- 1 core shell script, to execute the testcases with above artifacts.
Traditional shell script, with life cycle functions (initialize, execute, cleanup, output).
- initialize function will be invoked before starting executing t.
- execute function will be invoked once the testcase executed.
- cleanup function will be invoked on the testcase end.
- output function will be invoked to get more details (for reporting).
Testdata/Datamodel
Testdata in ":" seprated format, like
- Format
GROUPNAME_TESTID:ANYTHING1=VALUE:ANYTHING2=VALUE:...
SampleCases_Test001:Desc=Sample tescase:A=100
SampleCases_Test002:Desc=Sample tescase:A=100
Testgroup
Group defines set of RULES.
- Format
TEST_GROUP:<GROUPNAME>
RULE:<RuleName1>
RULE:<RuleName2>
....
END_GROUP
TEST_GROUP:SampleCases
RULE:displayDescription
RULE:displayAValue
...
END_GROUP
In the above sample, Test001 and Test002 will be executed in the SampleCases? Group.
RULE
Rule is nothing but a shellscript with predefined life-cycle operations "initialize", "execute" and "cleanup"
- Format
#!/bin/ksh -p
function initialize
{
return 0
}
function execute
{
return 0
}
function cleanup
{
return 0
}
- Example: displayDescription
#!/bin/ksh -p
function initialize
{
return 0
}
function execute
{
if [ $DEBUG ]; then set -x; PS4="displayDescription: "; fi
. ${LIB}/toolsEnv.sh
arrange "Desc" $*
echo "TestCase Desc: $Desc "
return 0
}
function cleanup
{
return 0
}
Where toolsEnv utility extracts the testdata from the input datamodel file.
There were lot of plans to enhance this framework, if you are interested reach me @ rathishraj@gmail.com
You can checkout the code from
http://code.google.com/p/regression-testing-framework/