1
/*
2
 * Copyright © 2006 Red Hat, Inc.
3
 *
4
 * Permission to use, copy, modify, distribute, and sell this software
5
 * and its documentation for any purpose is hereby granted without
6
 * fee, provided that the above copyright notice appear in all copies
7
 * and that both that copyright notice and this permission notice
8
 * appear in supporting documentation, and that the name of
9
 * Red Hat, Inc. not be used in advertising or publicity pertaining to
10
 * distribution of the software without specific, written prior
11
 * permission. Red Hat, Inc. makes no representations about the
12
 * suitability of this software for any purpose.  It is provided "as
13
 * is" without express or implied warranty.
14
 *
15
 * RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16
 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17
 * FITNESS, IN NO EVENT SHALL RED HAT, INC. BE LIABLE FOR ANY SPECIAL,
18
 * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19
 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20
 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
21
 * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
 *
23
 * Author: Carl D. Worth <cworth@cworth.org>
24
 */
25

            
26
#include "cairo-test.h"
27

            
28
static cairo_test_status_t
29
1
preamble (cairo_test_context_t *Ctx)
30
{
31
    cairo_surface_t *surface;
32
    cairo_pattern_t *solid_rgb, *solid_rgba, *surface_pattern, *linear, *radial, *mesh;
33
1
    cairo_test_status_t result = CAIRO_TEST_SUCCESS;
34

            
35
1
    solid_rgb = cairo_pattern_create_rgb (0.0, 0.1, 0.2);
36
1
    solid_rgba = cairo_pattern_create_rgba (0.3, 0.4, 0.5, 0.6);
37
1
    surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32,
38
					  1, 1);
39
1
    surface_pattern = cairo_pattern_create_for_surface (surface);
40
1
    linear = cairo_pattern_create_linear (0.0, 0.0, 10.0, 10.0);
41
1
    radial = cairo_pattern_create_radial (10.0, 10.0, 0.1,
42
					  10.0, 10.0, 1.0);
43
1
    mesh = cairo_pattern_create_mesh ();
44

            
45
1
    if (cairo_pattern_get_type (solid_rgb) != CAIRO_PATTERN_TYPE_SOLID)
46
	result = CAIRO_TEST_FAILURE;
47

            
48
1
    if (cairo_pattern_get_type (solid_rgba) != CAIRO_PATTERN_TYPE_SOLID)
49
	result = CAIRO_TEST_FAILURE;
50

            
51
1
    if (cairo_pattern_get_type (surface_pattern) != CAIRO_PATTERN_TYPE_SURFACE)
52
	result = CAIRO_TEST_FAILURE;
53

            
54
1
    if (cairo_pattern_get_type (linear) != CAIRO_PATTERN_TYPE_LINEAR)
55
	result = CAIRO_TEST_FAILURE;
56

            
57
1
    if (cairo_pattern_get_type (radial) != CAIRO_PATTERN_TYPE_RADIAL)
58
	result = CAIRO_TEST_FAILURE;
59

            
60
1
    if (cairo_pattern_get_type (mesh) != CAIRO_PATTERN_TYPE_MESH)
61
	result = CAIRO_TEST_FAILURE;
62

            
63
1
    cairo_pattern_destroy (solid_rgb);
64
1
    cairo_pattern_destroy (solid_rgba);
65
1
    cairo_pattern_destroy (surface_pattern);
66
1
    cairo_surface_destroy (surface);
67
1
    cairo_pattern_destroy (linear);
68
1
    cairo_pattern_destroy (radial);
69
1
    cairo_pattern_destroy (mesh);
70

            
71
1
    return result;
72
}
73

            
74
1
CAIRO_TEST (pattern_get_type,
75
	    "Creating patterns of all types",
76
	    "pattern, api", /* keywords */
77
	    NULL, /* requirements */
78
	    0, 0,
79
	    preamble, NULL)