path-currentpoint.c 2.6 KB

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