test-subset-nameids.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. #include "hb-test.h"
  27. #include "hb-subset-test.h"
  28. static void
  29. test_subset_nameids (void)
  30. {
  31. hb_face_t *face_origin = hb_test_open_font_file ("fonts/nameID.origin.ttf");
  32. hb_face_t *face_expected = hb_test_open_font_file ("fonts/nameID.expected.ttf");
  33. hb_set_t *name_ids = hb_set_create();
  34. hb_face_t *face_subset;
  35. hb_set_add (name_ids, 0);
  36. hb_set_add (name_ids, 9);
  37. face_subset = hb_subset_test_create_subset (face_origin, hb_subset_test_create_input_from_nameids (name_ids));
  38. hb_set_destroy (name_ids);
  39. hb_subset_test_check (face_expected, face_subset, HB_TAG ('n','a','m','e'));
  40. hb_face_destroy (face_subset);
  41. hb_face_destroy (face_origin);
  42. hb_face_destroy (face_expected);
  43. }
  44. static void
  45. test_subset_nameids_with_dup_strs (void)
  46. {
  47. hb_face_t *face_origin = hb_test_open_font_file ("fonts/nameID.dup.origin.ttf");
  48. hb_face_t *face_expected = hb_test_open_font_file ("fonts/nameID.dup.expected.ttf");
  49. hb_set_t *name_ids = hb_set_create();
  50. hb_face_t *face_subset;
  51. hb_set_add (name_ids, 1);
  52. hb_set_add (name_ids, 3);
  53. face_subset = hb_subset_test_create_subset (face_origin, hb_subset_test_create_input_from_nameids (name_ids));
  54. hb_set_destroy (name_ids);
  55. hb_subset_test_check (face_expected, face_subset, HB_TAG ('n','a','m','e'));
  56. hb_face_destroy (face_subset);
  57. hb_face_destroy (face_origin);
  58. hb_face_destroy (face_expected);
  59. }
  60. #ifdef HB_EXPERIMENTAL_API
  61. static void
  62. test_subset_name_overrides (void)
  63. {
  64. hb_face_t *face_origin = hb_test_open_font_file ("fonts/nameID.origin.ttf");
  65. hb_face_t *face_expected = hb_test_open_font_file ("fonts/nameID.override.expected.ttf");
  66. char str1[] = "Roboto Test";
  67. char str1_3[] = "Roboto Test unicode platform";
  68. char str2[] = "Bold";
  69. char str6[] = "Roboto-Bold";
  70. char str12[] = "Non ascii test Ü";
  71. char str16[] = "Roboto-test-inserting";
  72. hb_set_t *name_ids = hb_set_create();
  73. hb_face_t *face_subset;
  74. hb_set_add_range (name_ids, 0, 13);
  75. hb_subset_input_t *subset_input = hb_subset_test_create_input_from_nameids (name_ids);
  76. hb_subset_input_override_name_table (subset_input, 1, 1, 0, 0, str1, -1);
  77. hb_subset_input_override_name_table (subset_input, 1, 3, 1, 0x409, str1_3, -1);
  78. hb_subset_input_override_name_table (subset_input, 2, 1, 0, 0, str2, 4);
  79. hb_subset_input_override_name_table (subset_input, 6, 1, 0, 0, str6, -1);
  80. hb_subset_input_override_name_table (subset_input, 12, 1, 0, 0, str12, -1);
  81. hb_subset_input_override_name_table (subset_input, 14, 1, 0, 0, NULL, -1);
  82. hb_subset_input_override_name_table (subset_input, 16, 1, 0, 0, str16, -1);
  83. face_subset = hb_subset_test_create_subset (face_origin, subset_input);
  84. hb_set_destroy (name_ids);
  85. hb_subset_test_check (face_expected, face_subset, HB_TAG ('n','a','m','e'));
  86. hb_face_destroy (face_subset);
  87. hb_face_destroy (face_origin);
  88. hb_face_destroy (face_expected);
  89. }
  90. #endif
  91. int
  92. main (int argc, char **argv)
  93. {
  94. hb_test_init (&argc, &argv);
  95. hb_test_add (test_subset_nameids);
  96. hb_test_add (test_subset_nameids_with_dup_strs);
  97. #ifdef HB_EXPERIMENTAL_API
  98. hb_test_add (test_subset_name_overrides);
  99. #endif
  100. return hb_test_run();
  101. }