SDL Visual Test
|
Check the file COPYING.txt
for licensing information.
The goal of this GSoC project is to automate the testing of testsprite2. testsprite2 takes 26 parameters which have thousands of valid combinations and is used to validate SDL's window, mouse and rendering behaviour. By having a test harness that runs testsprite2 with various command line argument strings and validates the output for each run, we can make testing an easier task for maintainers, contributors and testers. The test harness can be used by a continuous integration system (like buildbot or jenkins) to validate SDL after checkins.
SDL Homepage: http://libsdl.org/
./autogen.sh; ./configure; make;
Use the Visual Studio solution under SDL/VisualC/visualtest
.
Documentation is available via Doxygen. To build the documentation, cd to the SDL/visualtest/docs directory and run doxygen
. A good starting point for exploring the documentation is SDL/visualtest/docs/html/index.html
To see all the options supported by the test harness, just run testharness
with no arguments.
At the moment the following options are supported:
sutapp
- Path to the system under test (SUT) application sutargs
- Launch the SUT with the specified arguments string timeout
- The maximum time after which the SUT process will be killed; passed as hh:mm:ss; default 00:01:00 variator
- Which variator to use; see Variators num-variations
- The number of variations to run for; taken to be 1 for the random variator and ALL for the exhaustive variator by default no-launch
- Just print the arguments string for each variation without launching the SUT or performing any actions parameter-config
- A config file that describes the command line parameters supported by the SUT; see The SUT Parameters File or the sample *.parameters files for more details action-config
- A config file with a list of actions to be performed while the SUT is running; see The Actions File or the sample *.actions files output-dir
- Path to the directory where screenshots should be saved; is created if it doesn't exist; taken to be "./output" by default verify-dir
- Path to the directory with the verification images; taken to be "./verify" by defaultPaths can be relative or absolute.
Alternatively, the options can be passed as a config file for convenience:
testharness --config testsprite2_sample.config
For a sample, take a look at the *.config files in this repository.
We can also pass a config file and override certain options as necessary: testharness --config testsprite2_sample.config --num-variations 10
Note: You may find it convenient to copy the SUT executable along with any resources to the test harness directory. Also note that testsprite2 and its resources (icon.bmp) are automatically copied when using the Visual Studio solution.
Passing a custom arguments string: testharness --sutapp testsprite2 --sutargs "\-\-cyclecolor \-\-blend mod
\-\-iterations 2" --action-config xyz.actions
Using the random variator: testharness --sutapp testsprite2 --variator random --num-variations 5 --parameter-config xyz.parameters --action-config xyz.actions
Config files are an alternate way to pass parameters to the test harness. We describe the paramters in a config file and pass that to the test harness using the --config option. The config file consists of lines of the form "x=y" where x is an option and y is it's value. For boolean options, we simply give the name of the option to indicate that it is to be passed to the testharness.
The hash '#' character can be used to start a comment from that point to the end of the line.
To generate variations we need to describe the parameters the will be passed to the SUT. This description is given in a parameters file. Each line of the parameters file (except the blank lines) represents one command line option with five comma separated fields: name, type, values, required, categories
name
is the name of the option, e.g., --cyclecolor
. type
can have one of three values - integer, boolean and enum. values
- for integer options this is the valid range of values the option can take, i.e., [min max]. For enum options this is a list of strings that the option can take, e.g., [val1 val2 val3]. For boolean options this field is ignored. required
- true if the option is required, false otherwise. categories
- a list of categories that the option belongs to. For example, [video mouse audio]Just like with config files, hash characters can be used to start comments.
Variators are the mechanism by which we generate strings of command line arguments to test the SUT with. A variator is quite simply an iterator that iterates through different variations of command line options. There are two variators supported at the moment:
As an example, let's try a simple .parameters file:
--blend, enum, [add mod], false, []
--fullscreen, boolean, [], false, []
The exhaustive variator would generate the following four variations:
--blend add
--blend mod
--blend add --fullscreen
--blend mod --fullscreen
The random variator would simply generate a random variation like the following:
--blend mod
Once the SUT process has been launched, automated testing happens using a mechanism called actions. A list of actions is read from a file and each action is performed on the SUT process sequentially. Each line in the actions file describes an action. The format for an action is hh:mm:ss ACTION_NAME additional parameters
. There are five actions supported at the moment:
[hash]_[i].bmp where
[hash] is the 32 character long hexadecimal MD5 hash of the arguments string that was passed to the SUT while launching it and i
is the window number. i = 1 is an exceptional case where the _
[i] is dropped and the filename is simply
[hash].bmp
[hash]_i.bmp image output by the SCREENSHOT action is compared against a
[hash].bmp image in the verify-dir.
[args] as the arguments string.Just like with config files, hash characters can be used to start comments.
One of the goals of the project was to create a test harness that integrates with CI systems to provide automated visual and interactive testing to SDL.
At the moment the test harness can be run in two modes that are useful for CI:
Look at the launch_harness.sh/launch_harness.cmd for an example scripts that run the test harness for all variations with all parameters and report an error on a crash. The script uses the testsprite2_crashtest config, so remember to copy those files over to the test harness executable directory along with the script.
Author Contact Info:
Apoorv Upreti <apoor> vupr eti@g mail .com
Other useful links: