hb-subset-test.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Copyright © 2018 Google, Inc.
  3. *
  4. * This is part of HarfBuzz, a text shaping library.
  5. *
  6. * Permission is hereby granted, without written agreement and without
  7. * license or royalty fees, to use, copy, modify, and distribute this
  8. * software and its documentation for any purpose, provided that the
  9. * above copyright notice and the following two paragraphs appear in
  10. * all copies of this software.
  11. *
  12. * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
  13. * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
  14. * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
  15. * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  16. * DAMAGE.
  17. *
  18. * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
  19. * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  20. * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
  21. * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
  22. * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  23. *
  24. * Google Author(s): Garret Rieger
  25. */
  26. #ifndef HB_SUBSET_TEST_H
  27. #define HB_SUBSET_TEST_H
  28. #include <stdio.h>
  29. #include "hb-test.h"
  30. #include "hb-subset.h"
  31. #ifdef HAVE_STDBOOL_H
  32. # include <stdbool.h>
  33. #else
  34. typedef short bool;
  35. # ifndef true
  36. # define true 1
  37. # endif
  38. # ifndef false
  39. # define false 0
  40. # endif
  41. #endif
  42. HB_BEGIN_DECLS
  43. static inline hb_subset_input_t *
  44. hb_subset_test_create_input (const hb_set_t *codepoints)
  45. {
  46. hb_subset_input_t *input = hb_subset_input_create_or_fail ();
  47. hb_set_t * input_codepoints = hb_subset_input_unicode_set (input);
  48. hb_set_union (input_codepoints, codepoints);
  49. return input;
  50. }
  51. static inline hb_subset_input_t *
  52. hb_subset_test_create_input_from_glyphs (const hb_set_t *glyphs)
  53. {
  54. hb_subset_input_t *input = hb_subset_input_create_or_fail ();
  55. hb_set_t * input_glyphs = hb_subset_input_glyph_set (input);
  56. hb_set_union (input_glyphs, glyphs);
  57. return input;
  58. }
  59. static inline hb_subset_input_t *
  60. hb_subset_test_create_input_from_nameids (const hb_set_t *name_ids)
  61. {
  62. hb_subset_input_t *input = hb_subset_input_create_or_fail ();
  63. hb_set_t * input_name_ids = hb_subset_input_set (input, HB_SUBSET_SETS_NAME_ID);
  64. hb_set_set (input_name_ids, name_ids);
  65. hb_set_t *name_langids = hb_subset_input_set (input, HB_SUBSET_SETS_NAME_LANG_ID);
  66. hb_set_add_range (name_langids, 0, 0x5FFF);
  67. hb_subset_input_set_flags (input,
  68. HB_SUBSET_FLAGS_NAME_LEGACY);
  69. return input;
  70. }
  71. static inline hb_face_t *
  72. hb_subset_test_create_subset (hb_face_t *source,
  73. hb_subset_input_t *input)
  74. {
  75. hb_face_t *subset = hb_subset_or_fail (source, input);
  76. g_assert (subset);
  77. hb_subset_input_destroy (input);
  78. return subset;
  79. }
  80. static inline void
  81. hb_subset_test_check (hb_face_t *expected,
  82. hb_face_t *actual,
  83. hb_tag_t table)
  84. {
  85. hb_blob_t *expected_blob, *actual_blob;
  86. expected_blob = hb_face_reference_table (expected, table);
  87. actual_blob = hb_face_reference_table (actual, table);
  88. fprintf(stderr, "comparing %c%c%c%c, expected %d bytes, actual %d bytes\n", HB_UNTAG(table), hb_blob_get_length(expected_blob), hb_blob_get_length (actual_blob));
  89. if (hb_blob_get_length (expected_blob) != 0 ||
  90. hb_blob_get_length (actual_blob) != 0)
  91. hb_test_assert_blobs_equal (expected_blob, actual_blob);
  92. hb_blob_destroy (expected_blob);
  93. hb_blob_destroy (actual_blob);
  94. }
  95. HB_END_DECLS
  96. #endif /* HB_SUBSET_TEST_H */