diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-07-20 11:10:32 -0700 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-07-20 11:56:18 -0700 |
commit | b9094593585de54af74748d2d4acf0e12963522f (patch) | |
tree | 724d1517254e194a5c87207a64b3336a39589bd8 /tests/test-break.c | |
parent | f6b1dd204368697d4af4ab8b7f3e95870f01daac (diff) | |
download | pango-b9094593585de54af74748d2d4acf0e12963522f.tar.gz |
test-break: Use pango_layout_get_log_attrs
pango_get_log_attrs does not apply allow-break attributes.
Diffstat (limited to 'tests/test-break.c')
-rw-r--r-- | tests/test-break.c | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/tests/test-break.c b/tests/test-break.c index 00bc7be0..fc5b8e36 100644 --- a/tests/test-break.c +++ b/tests/test-break.c @@ -48,6 +48,9 @@ test_file (const gchar *filename, GString *string) GString *s1, *s2, *s3, *s4; int m; char *test; + char *text; + PangoAttrList *attributes; + PangoLayout *layout; if (!g_file_get_contents (filename, &contents, &length, &error)) { @@ -68,7 +71,17 @@ test_file (const gchar *filename, GString *string) lang = pango_language_from_string ("en"); - pango_get_log_attrs (test, length, -1, lang, attrs, len); + if (!pango_parse_markup (test, -1, 0, &attributes, &text, NULL, &error)) + { + fprintf (stderr, "%s\n", error->message); + g_error_free (error); + return; + } + + layout = pango_layout_new (context); + pango_layout_set_text (layout, text, length); + pango_layout_set_attributes (layout, attributes); + pango_layout_get_log_attrs (layout, &attrs, &len); s1 = g_string_new ("Breaks: "); s2 = g_string_new ("Whitespace: "); @@ -85,7 +98,7 @@ test_file (const gchar *filename, GString *string) g_string_append_printf (s4, "%*s", (int)(m - s4->len), ""); g_string_append_printf (string, "%*s", (int)(m - strlen ("Text: ")), ""); - for (i = 0, p = test; i < len; i++, p = g_utf8_next_char (p)) + for (i = 0, p = text; i < len; i++, p = g_utf8_next_char (p)) { PangoLogAttr log = attrs[i]; int b = 0; @@ -208,8 +221,10 @@ test_file (const gchar *filename, GString *string) g_string_free (s3, TRUE); g_string_free (s4, TRUE); + g_object_unref (layout); g_free (attrs); g_free (contents); + pango_attr_list_unref (attributes); } static gchar * @@ -270,7 +285,7 @@ main (int argc, char *argv[]) g_test_init (&argc, &argv, NULL); - context = pango_context_new (); + context = pango_font_map_create_context (pango_cairo_font_map_get_default ()); /* allow to easily generate expected output for new test cases */ if (argc > 1) |