[pango/empty-line-height-attr-fix] Add more line height tests
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pango/empty-line-height-attr-fix] Add more line height tests
- Date: Tue, 19 Oct 2021 20:21:34 +0000 (UTC)
commit 9b9f573d44aaa9be0a79e4a0a21cbb68b01d78ba
Author: Matthias Clasen <mclasen redhat com>
Date: Tue Oct 19 12:29:32 2021 -0400
Add more line height tests
tests/testmisc.c | 133 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 133 insertions(+)
---
diff --git a/tests/testmisc.c b/tests/testmisc.c
index cf64e00f..b9ec81ea 100644
--- a/tests/testmisc.c
+++ b/tests/testmisc.c
@@ -125,6 +125,134 @@ test_line_height (void)
g_object_unref (context);
}
+static void
+test_line_height2 (void)
+{
+ PangoContext *context;
+ PangoLayout *layout;
+ PangoLayoutLine *line;
+ int height1 = 0;
+ int height2 = 0;
+
+ context = pango_font_map_create_context (pango_cairo_font_map_get_default ());
+ layout = pango_layout_new (context);
+ pango_layout_set_text (layout, "one", -1);
+
+ line = pango_layout_get_line_readonly (layout, 0);
+ pango_layout_line_get_height (line, &height1);
+
+ pango_layout_set_text (layout, "", -1);
+
+ line = pango_layout_get_line_readonly (layout, 0);
+ pango_layout_line_get_height (line, &height2);
+
+ g_assert_cmpint (height1, ==, height2);
+
+ g_object_unref (layout);
+ g_object_unref (context);
+}
+
+static void
+test_line_height3 (void)
+{
+ PangoContext *context;
+ PangoLayout *layout;
+ PangoLayoutLine *line;
+ PangoAttrList *attrs;
+ int height1 = 0;
+ int height2 = 0;
+
+ context = pango_font_map_create_context (pango_cairo_font_map_get_default ());
+ layout = pango_layout_new (context);
+ pango_layout_set_text (layout, "one", -1);
+ attrs = pango_attr_list_new ();
+ pango_attr_list_insert (attrs, pango_attr_line_height_new (2.0));
+ pango_layout_set_attributes (layout, attrs);
+ pango_attr_list_unref (attrs);
+
+ line = pango_layout_get_line_readonly (layout, 0);
+ pango_layout_line_get_height (line, &height1);
+
+ pango_layout_set_text (layout, "", -1);
+
+ line = pango_layout_get_line_readonly (layout, 0);
+ pango_layout_line_get_height (line, &height2);
+
+ g_assert_cmpint (height1, ==, height2);
+
+ g_object_unref (layout);
+ g_object_unref (context);
+}
+
+static void
+test_run_height (void)
+{
+ PangoContext *context;
+ PangoLayout *layout;
+ PangoLayoutIter *iter;
+ PangoRectangle logical1, logical2;
+
+ context = pango_font_map_create_context (pango_cairo_font_map_get_default ());
+ layout = pango_layout_new (context);
+ pango_layout_set_text (layout, "one", -1);
+
+ iter = pango_layout_get_iter (layout);
+ pango_layout_iter_get_run_extents (iter, NULL, &logical1);
+ pango_layout_iter_free (iter);
+
+ pango_layout_set_text (layout, "", -1);
+
+ iter = pango_layout_get_iter (layout);
+ pango_layout_iter_get_run_extents (iter, NULL, &logical2);
+ pango_layout_iter_free (iter);
+
+ g_assert_cmpint (logical1.height, ==, logical2.height);
+
+ g_object_unref (layout);
+ g_object_unref (context);
+}
+
+static void
+test_cursor_height (void)
+{
+ PangoContext *context;
+ PangoLayout *layout;
+ PangoRectangle strong;
+
+ context = pango_font_map_create_context (pango_cairo_font_map_get_default ());
+ layout = pango_layout_new (context);
+ pango_layout_set_text (layout, "one\ttwo", -1);
+ pango_layout_get_cursor_pos (layout, 0, &strong, NULL);
+
+ g_assert_cmpint (strong.height, >, 0);
+
+ g_object_unref (layout);
+ g_object_unref (context);
+}
+
+static void
+test_cursor_height2 (void)
+{
+ PangoContext *context;
+ PangoLayout *layout;
+ PangoRectangle strong1, strong2;
+
+ context = pango_font_map_create_context (pango_cairo_font_map_get_default ());
+ layout = pango_layout_new (context);
+ pango_layout_set_text (layout, "one", -1);
+
+ pango_layout_get_cursor_pos (layout, 0, &strong1, NULL);
+
+ pango_layout_set_text (layout, "", -1);
+
+ pango_layout_get_cursor_pos (layout, 0, &strong2, NULL);
+
+ g_assert_cmpint (strong1.height, ==, strong2.height);
+
+ g_object_unref (layout);
+ g_object_unref (context);
+}
+
static void
test_attr_list_update (void)
{
@@ -540,6 +668,11 @@ main (int argc, char *argv[])
g_test_add_func ("/layout/short-string-crash", test_short_string_crash);
g_test_add_func ("/language/emoji-crash", test_language_emoji_crash);
g_test_add_func ("/layout/line-height", test_line_height);
+ g_test_add_func ("/layout/line-height2", test_line_height2);
+ g_test_add_func ("/layout/line-height3", test_line_height3);
+ g_test_add_func ("/layout/run-height", test_run_height);
+ g_test_add_func ("/layout/cursor-height", test_cursor_height);
+ g_test_add_func ("/layout/cursor-height2", test_cursor_height2);
g_test_add_func ("/attr-list/update", test_attr_list_update);
g_test_add_func ("/misc/version-info", test_version_info);
g_test_add_func ("/misc/is-zerowidth", test_is_zero_width);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]