From 9b88b5dce5327cbd13ea05de949c502fe41f91f7 Mon Sep 17 00:00:00 2001 From: Andrea Canciani Date: Tue, 8 Jun 2010 10:45:06 +0200 Subject: [PATCH] test: add degenerate gradient and single stop tests Add tests for degeneratate linear gradients (with start point equal to the end point), degenerate radial gradients (start radius and end radius equal to zero, same start and end circle) and gradients (both linear and radial) with just a single stop. --- test/Makefile.sources | 6 +- test/degenerate-linear-gradient.c | 81 +++++++++++++++++++ test/degenerate-radial-gradient.c | 93 ++++++++++++++++++++++ test/linear-gradient-one-stop.c | 90 ++++++++++++++++++++++ test/linear-gradient-one-stop.ref.png | Bin 0 -> 468 bytes test/radial-gradient-one-stop.c | 107 ++++++++++++++++++++++++++ test/radial-gradient-one-stop.ref.png | Bin 0 -> 3772 bytes 7 files changed, 376 insertions(+), 1 deletion(-) create mode 100644 test/degenerate-linear-gradient.c create mode 100644 test/degenerate-radial-gradient.c create mode 100644 test/linear-gradient-one-stop.c create mode 100644 test/linear-gradient-one-stop.ref.png create mode 100644 test/radial-gradient-one-stop.c create mode 100644 test/radial-gradient-one-stop.ref.png diff --git a/test/Makefile.sources b/test/Makefile.sources index 860ea1e0c..7e4745c12 100644 --- a/test/Makefile.sources +++ b/test/Makefile.sources @@ -68,8 +68,10 @@ test_sources = \ degenerate-arcs.c \ degenerate-curve-to.c \ degenerate-dash.c \ + degenerate-linear-gradient.c \ degenerate-path.c \ degenerate-pen.c \ + degenerate-radial-gradient.c \ degenerate-rel-curve-to.c \ device-offset.c \ device-offset-fractional.c \ @@ -138,6 +140,7 @@ test_sources = \ line-width-zero.c \ linear-gradient.c \ linear-gradient-extend.c \ + linear-gradient-one-stop.c \ linear-gradient-reflect.c \ linear-gradient-subset.c \ linear-step-function.c \ @@ -182,9 +185,10 @@ test_sources = \ push-group-color.c \ radial-gradient.c \ radial-gradient-extend.c \ - radial-gradient-source.c \ radial-gradient-mask.c \ radial-gradient-mask-source.c \ + radial-gradient-one-stop.c \ + radial-gradient-source.c \ random-intersections-eo.c \ random-intersections-nonzero.c \ random-intersections-curves-eo.c \ diff --git a/test/degenerate-linear-gradient.c b/test/degenerate-linear-gradient.c new file mode 100644 index 000000000..0d174fc89 --- /dev/null +++ b/test/degenerate-linear-gradient.c @@ -0,0 +1,81 @@ +/* -*- Mode: c; c-basic-offset: 4; indent-tabs-mode: t; tab-width: 8; -*- */ +/* + * Copyright 2010 Andrea Canciani + * + * 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: Andrea Canciani + */ + +#include "cairo-test.h" + +#define NUM_EXTEND 4 +#define HEIGHT 16 +#define WIDTH 16 +#define PAD 3 + +static cairo_test_status_t +draw (cairo_t *cr, int width, int height) +{ + cairo_pattern_t *pattern; + unsigned int j; + + cairo_extend_t extend[NUM_EXTEND] = { + CAIRO_EXTEND_NONE, + CAIRO_EXTEND_REPEAT, + CAIRO_EXTEND_REFLECT, + CAIRO_EXTEND_PAD + }; + + cairo_test_paint_checkered (cr); + + pattern = cairo_pattern_create_linear (WIDTH/2, HEIGHT/2, WIDTH/2, HEIGHT/2); + + cairo_pattern_add_color_stop_rgba (pattern, 0, 1, 0, 0, 1); + cairo_pattern_add_color_stop_rgba (pattern, sqrt (1.0 / 2.0), 0, 1, 0, 0); + cairo_pattern_add_color_stop_rgba (pattern, 1, 0, 0, 1, 0.5); + + cairo_translate (cr, PAD, PAD); + + for (j = 0; j < NUM_EXTEND; j++) { + cairo_reset_clip (cr); + cairo_rectangle (cr, 0, 0, WIDTH, HEIGHT); + cairo_clip (cr); + + cairo_pattern_set_extend (pattern, extend[j]); + + cairo_set_source (cr, pattern); + cairo_paint (cr); + + cairo_translate (cr, WIDTH+PAD, 0); + } + + cairo_pattern_destroy (pattern); + + return CAIRO_TEST_SUCCESS; +} + +CAIRO_TEST (degenerate_linear_gradient, + "Tests degenerate linear gradients", + "linear, pattern, extend", /* keywords */ + NULL, /* requirements */ + (WIDTH+PAD) * NUM_EXTEND + PAD, 1*(HEIGHT + PAD) + PAD, + NULL, draw) diff --git a/test/degenerate-radial-gradient.c b/test/degenerate-radial-gradient.c new file mode 100644 index 000000000..14666450e --- /dev/null +++ b/test/degenerate-radial-gradient.c @@ -0,0 +1,93 @@ +/* -*- Mode: c; c-basic-offset: 4; indent-tabs-mode: t; tab-width: 8; -*- */ +/* + * Copyright 2010 Andrea Canciani + * + * 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: Andrea Canciani + */ + +#include "cairo-test.h" + +#define NUM_EXTEND 4 +#define HEIGHT 32 +#define WIDTH 32 +#define PAD 6 + +static cairo_test_status_t +draw (cairo_t *cr, int width, int height) +{ + cairo_pattern_t *pattern; + unsigned int i, j; + + cairo_extend_t extend[NUM_EXTEND] = { + CAIRO_EXTEND_NONE, + CAIRO_EXTEND_REPEAT, + CAIRO_EXTEND_REFLECT, + CAIRO_EXTEND_PAD + }; + + cairo_test_paint_checkered (cr); + + cairo_translate (cr, PAD, PAD); + + for (i = 0; i < 3; i++) { + cairo_save (cr); + + for (j = 0; j < NUM_EXTEND; j++) { + cairo_reset_clip (cr); + cairo_rectangle (cr, 0, 0, WIDTH, HEIGHT); + cairo_clip (cr); + + if (i == 0) + pattern = cairo_pattern_create_radial (WIDTH/2, HEIGHT/2, 0, WIDTH/2, HEIGHT/2, 0); + else if (i == 1) + pattern = cairo_pattern_create_radial (WIDTH/2, HEIGHT/2, 2*PAD, WIDTH/2, HEIGHT/2, 2*PAD); + else if (i == 2) + pattern = cairo_pattern_create_radial (PAD, PAD, 0, WIDTH-PAD, HEIGHT-PAD, 0); + + cairo_pattern_add_color_stop_rgba (pattern, 0, 1, 0, 0, 1); + cairo_pattern_add_color_stop_rgba (pattern, sqrt (1.0 / 2.0), 0, 1, 0, 0); + cairo_pattern_add_color_stop_rgba (pattern, 1, 0, 0, 1, 0.5); + + cairo_pattern_set_extend (pattern, extend[j]); + + cairo_set_source (cr, pattern); + cairo_paint (cr); + + cairo_pattern_destroy (pattern); + + cairo_translate (cr, WIDTH+PAD, 0); + } + + cairo_restore (cr); + cairo_translate (cr, 0, HEIGHT+PAD); + } + + return CAIRO_TEST_SUCCESS; +} + +CAIRO_TEST (degenerate_radial_gradient, + "Tests degenerate radial gradients", + "radial, pattern, extend", /* keywords */ + NULL, /* requirements */ + (WIDTH+PAD) * NUM_EXTEND + PAD, 3*(HEIGHT + PAD) + PAD, + NULL, draw) diff --git a/test/linear-gradient-one-stop.c b/test/linear-gradient-one-stop.c new file mode 100644 index 000000000..b1a608f90 --- /dev/null +++ b/test/linear-gradient-one-stop.c @@ -0,0 +1,90 @@ +/* -*- Mode: c; c-basic-offset: 4; indent-tabs-mode: t; tab-width: 8; -*- */ +/* + * Copyright 2010 Andrea Canciani + * + * 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: Andrea Canciani + */ + +#include "cairo-test.h" + +#define NUM_EXTEND 4 +#define HEIGHT 16 +#define WIDTH 16 +#define PAD 3 + +static cairo_test_status_t +draw (cairo_t *cr, int width, int height) +{ + cairo_pattern_t *pattern; + unsigned int i, j; + + cairo_extend_t extend[NUM_EXTEND] = { + CAIRO_EXTEND_NONE, + CAIRO_EXTEND_REPEAT, + CAIRO_EXTEND_REFLECT, + CAIRO_EXTEND_PAD + }; + + cairo_test_paint_checkered (cr); + + cairo_translate (cr, PAD, PAD); + + for (i = 0; i < 3; i++) { + cairo_save (cr); + + for (j = 0; j < NUM_EXTEND; j++) { + cairo_reset_clip (cr); + cairo_rectangle (cr, 0, 0, WIDTH, HEIGHT); + cairo_clip (cr); + + if (i == 0) + pattern = cairo_pattern_create_linear (0, 2*PAD, 0, HEIGHT - 2*PAD); + else if (i == 1) + pattern = cairo_pattern_create_linear (2*PAD, 2*PAD, HEIGHT - 2*PAD, HEIGHT - 2*PAD); + else if (i == 2) + pattern = cairo_pattern_create_linear (2*PAD, 0, HEIGHT - 2*PAD, 0); + + cairo_pattern_add_color_stop_rgb (pattern, 0.25, 0, 0, 1); + cairo_pattern_set_extend (pattern, extend[j]); + + cairo_set_source (cr, pattern); + cairo_paint (cr); + + cairo_pattern_destroy (pattern); + + cairo_translate (cr, WIDTH+PAD, 0); + } + + cairo_restore (cr); + cairo_translate (cr, 0, HEIGHT+PAD); + } + + return CAIRO_TEST_SUCCESS; +} + +CAIRO_TEST (linear_gradient_one_stop, + "Tests linear gradients with a single stop", + "gradient,linear,", /* keywords */ + NULL, /* requirements */ + (WIDTH+PAD) * NUM_EXTEND + PAD, 3*(HEIGHT + PAD) + PAD, + NULL, draw) diff --git a/test/linear-gradient-one-stop.ref.png b/test/linear-gradient-one-stop.ref.png new file mode 100644 index 0000000000000000000000000000000000000000..5a36f2f4298679ea7779e4d8deee661fca047c02 GIT binary patch literal 468 zcmV;_0W1EAP)U5Gg%~D1`cxM{&L1lhX6J{O#S-94CZ3dr&pk@eSWI+FDy% zv|FfLXEx)t{7O=G$UOw~I)}jYjGmLB^_P>gUn#R|_N#?tYi(`OZn;igCAD6jF~)c+ zOmwy8UP87!*=ccQi`G`1{4eL*cYZJILrVzvYxzI_UQwuTX$unx#b~dAYr#4MLxrw@BojhJ!j8)w=pzWd7d%zNsXnUwDb}e>w zY4K30M+=Ec%{o~VtBcmj<=TR!r9vlKY*ga3sIkg5+;4GEX|&%$p_0%~?q%TGvV5Hk zla>mpy63X;ZdTZbmXw~?IyH5Od8ei!TeMQAhX120)O@LI(Y^q|1xAh=DGNpb0000< KMNUMnLSTZ-V&&NY literal 0 HcmV?d00001 diff --git a/test/radial-gradient-one-stop.c b/test/radial-gradient-one-stop.c new file mode 100644 index 000000000..69f7fe6c5 --- /dev/null +++ b/test/radial-gradient-one-stop.c @@ -0,0 +1,107 @@ +/* + * Copyright © 2005, 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 + */ + +#include "cairo-test.h" + +#define NUM_GRADIENTS 4 +#define NUM_EXTEND 4 +#define SIZE 60 +#define WIDTH (SIZE * NUM_GRADIENTS * NUM_GRADIENTS) +#define HEIGHT (SIZE * NUM_EXTEND) + +static void +draw_gradient (cairo_t *cr, + int x, + int y, + int size, + double r1_offset, + double r1_radius, + double r2_offset, + double r2_radius, + cairo_extend_t extend) +{ + cairo_pattern_t *pattern; + + cairo_save (cr); + + pattern = cairo_pattern_create_radial (x + size/2.0 + r1_offset, + y + size/2.0 + r1_offset, + r1_radius, + x + size/2.0 + r2_offset, + y + size/2.0 + r2_offset, + r2_radius); + cairo_pattern_add_color_stop_rgb (pattern, 0.25, 1, 0, 0); + cairo_pattern_set_extend (pattern, extend); + + cairo_rectangle (cr, x, y, size, size); + cairo_clip (cr); + + cairo_set_source (cr, pattern); + cairo_paint (cr); + + cairo_pattern_destroy (pattern); + + cairo_restore (cr); +} + +static cairo_test_status_t +draw (cairo_t *cr, int width, int height) +{ + int i, j, k; + cairo_extend_t extend[NUM_EXTEND] = { + CAIRO_EXTEND_NONE, + CAIRO_EXTEND_REPEAT, + CAIRO_EXTEND_REFLECT, + CAIRO_EXTEND_PAD + }; + + cairo_test_paint_checkered (cr); + + for (j = 0; j < NUM_EXTEND; j++) { + for (i = 0; i < NUM_GRADIENTS; i++) { + double r1_offset = i % 2 ? SIZE / 12.0 : 0.0; + double r1_radius = i >= NUM_GRADIENTS / 2 ? SIZE / 6.0 : 0.0; + for (k = 0; k < NUM_GRADIENTS; k++) { + double r2_offset = k % 2 ? SIZE / 12.0 : 0.0; + double r2_radius = k >= NUM_GRADIENTS / 2 ? SIZE / 3.0 : SIZE / 12.; + draw_gradient (cr, + i * SIZE * NUM_GRADIENTS + k * SIZE, j * SIZE, SIZE, + r1_offset, r1_radius, + r2_offset, r2_radius, + extend[j]); + } + } + } + + return CAIRO_TEST_SUCCESS; +} + +CAIRO_TEST (radial_gradient_one_stop, + "Tests radial gradients with a single stop", + "gradient,radial", /* keywords */ + NULL, /* requirements */ + WIDTH, HEIGHT, + NULL, draw) diff --git a/test/radial-gradient-one-stop.ref.png b/test/radial-gradient-one-stop.ref.png new file mode 100644 index 0000000000000000000000000000000000000000..98a459a457645773d22b29515da93f1303530291 GIT binary patch literal 3772 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 ZPs6PpW^K-xl((Y@*P|XsYMf60@n4b_Z5jXo literal 0 HcmV?d00001