Opensource Compliance Issue.
[platform/core/graphics/cairo.git] / test / user-data.c
1 /*
2  * Copyright © 2005 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: Kristian Høgsberg <krh@redhat.com>
24  */
25
26 #include "cairo-test.h"
27
28 #include <assert.h>
29
30 static void
31 destroy_data1 (void *p)
32 {
33     *(int *) p = 1;
34 }
35
36 static void
37 destroy_data2 (void *p)
38 {
39     *(int *) p = 2;
40 }
41
42 static cairo_test_status_t
43 preamble (cairo_test_context_t *ctx)
44 {
45     static const cairo_user_data_key_t key1, key2;
46     cairo_surface_t *surface;
47     cairo_status_t status;
48     int data1, data2;
49
50     data1 = 0;
51     data2 = 0;
52
53     surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 1, 1);
54     status = cairo_surface_set_user_data (surface, &key1, &data1, destroy_data1);
55     if (status)
56         goto error;
57
58     status = cairo_surface_set_user_data (surface, &key2, &data2, destroy_data2);
59     if (status)
60         goto error;
61
62     assert (cairo_surface_get_user_data (surface, &key1) == &data1);
63     status = cairo_surface_set_user_data (surface, &key1, NULL, NULL);
64     if (status)
65         goto error;
66
67     assert (cairo_surface_get_user_data (surface, &key1) == NULL);
68     assert (data1 == 1);
69     assert (data2 == 0);
70
71     status = cairo_surface_set_user_data (surface, &key2, NULL, NULL);
72     if (status)
73         goto error;
74
75     assert (data2 == 2);
76
77     data1 = 0;
78     status = cairo_surface_set_user_data (surface, &key1, &data1, NULL);
79     if (status)
80         goto error;
81
82     status = cairo_surface_set_user_data (surface, &key1, NULL, NULL);
83     if (status)
84         goto error;
85
86     assert (data1 == 0);
87     assert (cairo_surface_get_user_data (surface, &key1) == NULL);
88
89     status = cairo_surface_set_user_data (surface, &key1, &data1, destroy_data1);
90     if (status)
91         goto error;
92
93     cairo_surface_destroy (surface);
94
95     assert (data1 == 1);
96     assert (data2 == 2);
97
98     return CAIRO_TEST_SUCCESS;
99
100 error:
101     cairo_surface_destroy (surface);
102     return cairo_test_status_from_status (ctx, status);
103 }
104
105 CAIRO_TEST (user_data,
106             "Test setting and getting random bits of user data.",
107             "api", /* keywords */
108             NULL, /* requirements */
109             0, 0,
110             preamble, NULL)