Skip to main content

History: Visual Unit Testing Framework

Source of version: 3

Copy to clipboard
            __NOTE: As of right now, this documentation is preliminary, incomplete, and subject to change.__
{maketoc}
!__Abstract__
This is the documentation for OGRE's visual unit testing framework. The framework allows you to perform image-based comparisons of test scenes between builds.

!__Introduction__
OGRE already uses [http://sourceforge.net/projects/cppunit/|CppUnit] for a selection of unit tests that cover the basics: Vectors, String functions, etc; however, this handful of existing tests is far from comprehensive. Moreover, given the high degree of interdependency and the dependence on graphics API's and the like, traditional unit testing really wouldn't be possible without a very complex testing setup involving mock rendersystems and a huge amount of testing code.

Even if traditional unit testing were doable without significant commitment, it still wouldn't be especially helpful in the context of a rendering engine (you really can't effectively decide "Is the rendered image correct?" with just assertions and so forth).

Given that the output of a rendering engine is an image, why not test it using just that? This framework aims to make testing possible by creating test scenes that can be screen-captured and compared between builds. This allows for features to be tested very simply (just implement the feature in a simple test scene, and the framework does the rest; there's no need for assertions or elaborate test cases).

!__Usage Details__
!!__Build Details__
Simply build with the OGRE_BUILD_TESTS option enabled in CMake. Also, note that test plugins are fully compatible with the sample browser.

!!__Running Tests__
Due to differences in drivers and so forth, it works best to generate a reference image set for each machine you will be testing with, this greatly reduces the chance of false positives due to driver issues.

#Run the TestContext executable (see below for a selection of command line options).
#It will automatically run through the tests and compare the generated images against the reference image set (if you have generated one). It will exit when it is complete.
#The results will output to your home/My Documents directory (see ((Visual Unit Testing Framework|#Where to Find the Output|below)) for output location details).
!!__Command Line Options__
Note that this is using Ogre's built-in [http://www.ogre3d.org/docs/api/html/group__General.html#gad78e25bde5597796c07e75d4f857a3cd|findCommandLineOpts] which does not allow for combining of options (i.e. foo -abc bar would have to be written as foo -a -b -c bar)
__-r__
Generate a reference set.

__-m "[[comment]"__
Add an optional comment to be associated with the generated image set.

__-ts "[[test set name]"__
Select the test set to use (default is 'VTests').

__-c "[[image set name to compare against]"__
Select which image set you want to compare this run with (default is 'Reference').

__-n "[[name]"__
Specify a name for this set (omitting this, or choosing 'AUTO' will result in an automatically generated name).

__-h -help or --help__
Usage details.

__--no-html__
Suppress html output.

!!__The Output__
Whenever a set is created, the test images themselves, along with a small config file containing data about the set (resolution, date/time, name, etc), are created in a new directory (see ((Visual Unit Testing Framework|#Where to Find the Output|below)) for details on directory structure).

The primary output is an HTML document containing an overview of the test, and side-by-side images of the reference image set and the newly generated images. A small linked javascript file allows for some basic diffing to be done within a web browser (requires HTML5/Canvas).

[http://rileyadams.net/gsoc/July5/out.html|Here] is a sample of the html output.

!!!__Where to Find the Output__
Output is generated in the same directory as the logs and cfg's for the sample browser. This is generally in your My Documents or home directory (or your OS's equivalent). There should be an Ogre directory, with a subdirectory for the Ogre version. From there the structure looks like:
*VisualTests
** [[Test set name]
*** [[Rendersystem]
**** out.html
**** [[Reference]
***** info.cfg
***** Reference screenshots (.png's)...
**** [[Test set name]_[[date]
***** Info.cfg 
***** Screenshots (.png's)...
!!__Image Comparison__
The images are compared to reference images using a selection of common metrics. A failed test will report values  for the following metrics in the HTML output:

The most basic is just the __absolute difference__; how many pixels differ between two images.

Next is the __Mean Squared Error (MSE)__, which, as the name suggests produces the average squared error (difference between the images). Lower is better.

Next is the __Peak Signal-to-Noise Ratio (PSNR)__, which measures the ratio between the maximum signal (in this case, full color values in each channel), and corrupting noise (the differences in the images). Higher values of this metric are better.

Last, is the __Structural Similarity (SSIM) index__, which is a more recent development (see [https://ece.uwaterloo.ca/~z70wang/publications/ssim.html|this] 2004 paper for in-depth details), and aims to provide a metric better related to human preception (images with identical MSE may actually be of very different quality levels). It gives a value in the range of -1 to 1, (with 1 being identical).


!__Creating New Tests__
The testing framework is built on top of the existing sample framework, so it is very similar to creating a sample. Tests are created in plugins that the TestContext is able to load dynamically.
!!__General__
Create a class derived from VisualTest, override whichever functions you need (the same FrameListener-style functions used in Samples apply here), and add it to a test plugin.

__Some Things to Note:__
* You will need to specify when you want test screenshot(s) to be taken, with addScreenshotFrame (timing is done by frame to prevent floating point issues).
* Tests must be deterministic, so use the delta (time since last frame) time passed to the frameStarted/frameEnded functions for any timing needs.
* Keep tests simple, the idea is to isolate and test a single feature as completely as possible.
!!__Defining Test Sets__
Test sets (a grouping of tests that will be generated and compared together) are defined as a collection of test plugins in the 'tests.cfg' file. Plugins can belong to more than one test set.

An example configuration of test.cfg is below

{CODE(wrap="1", colors="c#")}
# where the test plugins are located
TestFolder=[Ogre lib dir]

# A set of all visual tests
[VTests]
TestPlugin=PlayPenTests
TestPlugin=VTests

# Only the playpen tests
[Playpen]
TestPlugin=PlayPenTests
{CODE}

!__Tests__
The following are the initial tests being used with the system:
{FANCYTABLE(head="Playpen Tests")}
__Name:__ | __Description:__ | __Image:__
Test Project Sphere | Tests sphere projection. | No image yet.
Camera Set Direction | Tests setting of camera direction. | No image yet.
Manual Blending | Tests manual texture blending. | No image yet.
Manual LOD | Tests manual level of detail setting. | No image yet.
Manual LOD from file | Tests manual level of detail setting. | No image yet.
Morph Animation w/ normals | Tests morph animation. | No image yet.
Morph Animation w/o normals | Tests morph animation. | No image yet.
Pose Animation w/ normals | Tests pose animation. | No image yet.
Pose Animation w/o normals | Tests pose animation. | No image yet.
Particle Effects | Tests simple particle effects. | No image yet.
Stencil Shadows | Tests simple stencil shadows. | No image yet.
Transparency | Tests simple alpha blending. | No image yet.
Texture Effects | Tests simple scrolling/scaling/rotation texture effects. | No image yet.
SceneNodeTracking| Tests simple node tracking functionality. | No image yet.
CubeMapping | Tests basic fixed-function cube mapping. | No image yet.
{FANCYTABLE}

!__Known Issues__
* None! (so far...)
!__Future Improvements__
* More Tests!
* A more robust image comparison algorithm (e.g. something along the lines of [http://pdiff.sourceforge.net/|PerceptualDiff])
!__Additional Links__
* [http://www.ogre3d.org/forums/viewtopic.php?f=13&t=63582|Summer of Code forum thread]
* [http://aras-p.info/blog/2007/07/31/testing-graphics-code/|Unity3d's test framework]
        

History

Information Version
Sun 10 of Nov, 2013 05:31 GMT-0000 holocronweaver 12
Fri 19 of Aug, 2011 21:20 GMT-0000 Praetorian 11
Fri 19 of Aug, 2011 21:10 GMT-0000 Praetorian More future improvements. 10
Fri 19 of Aug, 2011 21:03 GMT-0000 Praetorian 9
Fri 19 of Aug, 2011 20:52 GMT-0000 Praetorian Updated list of tests. 8
Fri 19 of Aug, 2011 20:14 GMT-0000 Praetorian Added some known issues. 7
Wed 17 of Aug, 2011 20:47 GMT-0000 Praetorian 6
Wed 17 of Aug, 2011 20:46 GMT-0000 Praetorian Added automated testing info, with Nightly/Continuous build scripts. 5
Wed 17 of Aug, 2011 20:08 GMT-0000 Praetorian Updated info on running tests. 4
Sun 31 of Jul, 2011 23:43 GMT-0000 jacmoe 3
Sun 31 of Jul, 2011 22:44 GMT-0000 jacmoe 2
Tue 03 of May, 2011 10:04 GMT-0000 Praetorian Created initial skeleton of the page. 1