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
6
assert_point (cairo_t *cr, double expected_x, double expected_y) {
30
  double x, y;
31
6
  assert (cairo_has_current_point (cr));
32
6
  cairo_get_current_point (cr, &x, &y);
33
6
  assert (x == expected_x);
34
6
  assert (y == expected_y);
35
6
}
36

            
37
static void
38
3
assert_point_maintained (cairo_t *cr, double expected_x, double expected_y) {
39
  cairo_path_t *path;
40

            
41
3
  assert_point (cr, expected_x, expected_y);
42

            
43
3
  path = cairo_copy_path (cr);
44

            
45
3
  cairo_new_path (cr);
46
3
  cairo_rectangle (cr, 5, 5, 10, 20);
47
3
  cairo_stroke (cr);
48

            
49
3
  cairo_new_path (cr);
50
3
  cairo_append_path (cr, path);
51
3
  cairo_path_destroy (path);
52

            
53
3
  assert_point (cr, expected_x, expected_y);
54
3
}
55

            
56
static cairo_test_status_t
57
1
preamble (cairo_test_context_t *ctx)
58
{
59
    cairo_surface_t *surface;
60
    cairo_t *cr;
61

            
62
1
    surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 20, 20);
63
1
    cr = cairo_create (surface);
64

            
65
1
    cairo_new_path (cr);
66
1
    cairo_move_to (cr, 1., 2.);
67
1
    assert_point_maintained (cr, 1., 2.);
68

            
69
1
    cairo_line_to (cr, 4., 5.);
70
1
    cairo_move_to (cr, 2., 1.);
71
1
    assert_point_maintained (cr, 2., 1.);
72

            
73
1
    cairo_move_to (cr, 5, 5);
74
1
    cairo_arc (cr, 5, 5, 10, 0, M_PI / 3);
75
1
    cairo_close_path (cr);
76
1
    assert_point_maintained (cr, 5, 5);
77

            
78
1
    cairo_destroy (cr);
79
1
    cairo_surface_destroy (surface);
80

            
81
1
    return CAIRO_TEST_SUCCESS;
82
}
83

            
84
1
CAIRO_TEST (path_currentpoint,
85
	    "Test save/restore path maintains current point",
86
	    "api", /* keywords */
87
	    NULL, /* requirements */
88
	    0, 0,
89
	    preamble, NULL)