Opensource Compliance Issue.
[platform/core/graphics/cairo.git] / test / path-currentpoint.c
1 /*
2  * Copyright © 2014 Google, 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
24 #include "cairo-test.h"
25
26 #include <assert.h>
27
28 static void
29 assert_point (cairo_t *cr, double expected_x, double expected_y) {
30   double x, y;
31   assert (cairo_has_current_point (cr));
32   cairo_get_current_point (cr, &x, &y);
33   assert (x == expected_x);
34   assert (y == expected_y);
35 }
36
37 static void
38 assert_point_maintained (cairo_t *cr, double expected_x, double expected_y) {
39   cairo_path_t *path;
40
41   assert_point (cr, expected_x, expected_y);
42
43   path = cairo_copy_path (cr);
44
45   cairo_new_path (cr);
46   cairo_rectangle (cr, 5, 5, 10, 20);
47   cairo_stroke (cr);
48
49   cairo_new_path (cr);
50   cairo_append_path (cr, path);
51   cairo_path_destroy (path);
52
53   assert_point (cr, expected_x, expected_y);
54 }
55
56 static cairo_test_status_t
57 preamble (cairo_test_context_t *ctx)
58 {
59     cairo_surface_t *surface;
60     cairo_t *cr;
61
62     surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 20, 20);
63     cr = cairo_create (surface);
64
65     cairo_new_path (cr);
66     cairo_move_to (cr, 1., 2.);
67     assert_point_maintained (cr, 1., 2.);
68
69     cairo_line_to (cr, 4., 5.);
70     cairo_move_to (cr, 2., 1.);
71     assert_point_maintained (cr, 2., 1.);
72
73     cairo_move_to (cr, 5, 5);
74     cairo_arc (cr, 5, 5, 10, 0, M_PI / 3);
75     cairo_close_path (cr);
76     assert_point_maintained (cr, 5, 5);
77
78     cairo_destroy (cr);
79     cairo_surface_destroy (surface);
80
81     return CAIRO_TEST_SUCCESS;
82 }
83
84 CAIRO_TEST (path_currentpoint,
85             "Test save/restore path maintains current point",
86             "api", /* keywords */
87             NULL, /* requirements */
88             0, 0,
89             preamble, NULL)