mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
.. | ||
jar.mn | ||
Makefile.in | ||
README.txt | ||
reftest-cmdline.js | ||
reftest.js | ||
reftest.xul |
Layout Engine Visual Tests (reftest) L. David Baron <dbaron@dbaron.org>, Mozilla Corporation July 19, 2006 This code is designed to run tests of Mozilla's layout engine. These tests consist of an HTML (or other format) file along with a reference in the same format. The tests are run based on a manifest file, and for each test, PASS or FAIL is reported, and UNEXPECTED is reported if the result (PASS or FAIL) was not the expected result noted in the manifest. Why this way? ============= Writing HTML tests where the reference rendering is also in HTML is harder than simply writing bits of HTML that can be regression-tested by comparing the rendering of an older build to that of a newer build (perhaps using stored reference images from the older build). However, comparing across time has major disadvantages: * Comparisons across time either require two runs for every test, or they require stored reference images appropriate for the platform and configuration (often limiting testing to a very specific configuration). * Comparisons across time may fail due to expected changes, for example, changes in the default style sheet for HTML, changes in the appearance of form controls, or changes in default preferences like default font size or default colors. Using tests for which the pass criteria were explicitly chosen allows running tests at any time to see whether they still pass. Manifest Format =============== The test manifest format is a plain text file. The "#" makes the remainder of a line a comment. Each non-blank line (after removal of comments) must be one of the following: 1. Inclusion of another manifest include <relative_path> 2. A test item <type> <url> <url_ref> where a. <type> is one of the following: == The test passes if the images of the two renderings are the SAME, and it is currently expected to PASS. != The test passes if the images of the two renderings are the DIFFERENT, and it is currently expected to PASS. f== The test passes if the images of the two renderings are the SAME, and it is currently expected to FAIL. f!= The test passes if the images of the two renderings are the DIFFERENT, and it is currently expected to FAIL. b. <url> is either a relative file path or an absolute URL for the test page c. <url_ref> is either a relative file path or an absolute URL for the reference page The only difference between <url> and <url_ref> is that results of the test are reported using <url> only. This test manifest format could be used by other harnesses, such as ones that do not depend on XUL, or even ones testing other layout engines. Running Tests ============= Testable Areas ============== This framework is capable of testing many areas of the layout engine. It is particularly well-suited to testing dynamic change handling (by comparison to the static end-result as a reference) and incremental layout (comparison of a script-interrupted layout to one that was not). However, it is also possible to write tests for many other things that can be described in terms of equivalence, for example: * CSS cascading could be tested by comparing the result of a complicated set of style rules that makes a word green to <span style="color:green">word</span>. * <canvas> compositing operators could be tested by comparing the result of drawing using canvas to a block-level element with the desired color as a CSS background-color. * CSS counters could be tested by comparing the text output by counters with a page containing the text written out * complex margin collapsing could be tested by comparing the complex case to a case where the margin is written out, or where the margin space is created by an element with 'height' and transparent background When it is not possible to test by equivalence, it may be possible to test by non-equivalence. For example, testing justification in cases with more than two words, or more than three different words, is difficult. However, it is simple to test that justified text is at least displayed differently from left-, center-, or right-aligned text. Writing Tests ============= When writing tests for this framework, it is important for the test to depend only on behaviors that are known to be correct and permanent. For example, tests should not depend on default font sizes, default margins of the body element, the default style sheet used for HTML, the default appearance of form controls, or anything else that can be avoided. In general, the best way to achieve this is to make the test and the reference identical in as many aspects as possible. For example: Good test Markup: <div style="color:green"><table><tr><td><span>green </span></td></tr></table></div> Good reference markup: <div><table><tr><td><span style="color:green">green </span></td></tr></table></div> BAD reference markup: <!-- 3px matches the default cellspacing and cellpadding --> <div style="color:green; padding: 3px">green </div> BAD test markup: <!-- span doesn't change the positioning, so skip it --> <div style="color:green"><table><tr><td>green </td></tr></table></div>