Add degenerate-pen test case.

This demonstrates the assertion failure pointed out by
Benjamin Otte here:

	[cairo] Assertion 'i < pen->num_vertices' failed in 1.4.10
	http://lists.cairographics.org/archives/cairo/2007-August/011282.html
This commit is contained in:
Carl Worth 2007-10-30 17:00:33 -07:00
parent 53378301d4
commit 5e76f65284
5 changed files with 106 additions and 0 deletions

1
test/.gitignore vendored
View file

@ -36,6 +36,7 @@ dash-scale
dash-state
dash-zero-length
degenerate-path
degenerate-pen
device-offset
device-offset-positive
extend-pad

View file

@ -29,6 +29,7 @@ dash-scale \
dash-zero-length \
dash-state \
degenerate-path \
degenerate-pen \
device-offset \
device-offset-positive \
extend-pad \

Binary file not shown.

After

Width:  |  Height:  |  Size: 390 B

BIN
test/degenerate-pen-ref.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 278 B

104
test/degenerate-pen.c Normal file
View file

@ -0,0 +1,104 @@
/*
* Copyright © 2007 Red Hat, Inc.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* Author: Carl D. Worth <cworth@cworth.org>
*/
#include "cairo-test.h"
static cairo_test_draw_function_t draw;
#define SIZE 20
#define PAD 5
#define WIDTH (PAD + 3 * (PAD + SIZE) + PAD)
#define HEIGHT (PAD + SIZE + PAD)
/* We're demonstrating here a bug originally reported by Benjamin Otte
* on the cairo mailing list here, (after he ran into this problem
* with various flash animations):
*
* [cairo] Assertion `i < pen->num_vertices' failed in 1.4.10
* http://lists.cairographics.org/archives/cairo/2007-August/011282.html
*
* The problem shows up with an extreme transformation matrix that
* collapses the pen to a single line, (which means that
* _cairo_slope_compare cannot handle adjacent vertices in the pen
* since they have parallel slope).
*
* This test case tests degenerate pens in several directions and uses
* round caps to force the stroking code to attempt to walk around the
* pen doing slope comparisons.
*/
cairo_test_t test = {
"degenerate-pen",
"Test round joins with a pen that's transformed to a line",
WIDTH, HEIGHT,
draw
};
static cairo_test_status_t
draw (cairo_t *cr, int width, int height)
{
cairo_set_line_join (cr, CAIRO_LINE_JOIN_ROUND);
cairo_translate (cr, PAD, PAD);
/* First compress the pen to a vertical line. */
cairo_rectangle (cr, 0, 0, SIZE, SIZE);
cairo_save (cr);
{
cairo_scale (cr, 0.000001, 1.0);
cairo_stroke (cr);
}
cairo_restore (cr);
cairo_translate (cr, PAD + SIZE, 0);
/* Then compress the pen to a horizontal line. */
cairo_rectangle (cr, 0, 0, SIZE, SIZE);
cairo_save (cr);
{
cairo_scale (cr, 1.0, 0.000001);
cairo_stroke (cr);
}
cairo_restore (cr);
cairo_translate (cr, PAD + SIZE, 0);
/* Finally a line at an angle. */
cairo_rectangle (cr, 0, 0, SIZE, SIZE);
cairo_save (cr);
{
cairo_rotate (cr, M_PI / 4.0);
cairo_scale (cr, 0.000001, 1.0);
cairo_stroke (cr);
}
cairo_restore (cr);
}
int
main (void)
{
return cairo_test (&test);
}