summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-06-26 14:52:24 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-06-28 00:05:09 -0400
commit0c0e247c1cdca03c784886fe6b5ef0f5c9bf620e (patch)
tree88d84b48a417c5fe80845e23424f74c93246f3bc
parent400488579d0b0a651f3090517f12399a9030f4fa (diff)
downloadpango-0c0e247c1cdca03c784886fe6b5ef0f5c9bf620e.tar.gz
tests: Add some color tests
-rw-r--r--tests/testcolor.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/testcolor.c b/tests/testcolor.c
index 62bbe4bf..b32eb6ee 100644
--- a/tests/testcolor.c
+++ b/tests/testcolor.c
@@ -122,12 +122,42 @@ test_color (void)
test_one_color (spec);
}
+static void
+test_color_copy (void)
+{
+ PangoColor orig = { 0, 200, 5000 };
+ PangoColor *copy;
+
+ copy = pango_color_copy (&orig);
+
+ g_assert_cmpint (orig.red, ==, copy->red);
+ g_assert_cmpint (orig.green, ==, copy->green);
+ g_assert_cmpint (orig.blue, ==, copy->blue);
+
+ pango_color_free (copy);
+}
+
+static void
+test_color_serialize (void)
+{
+ PangoColor orig = { 0, 200, 5000 };
+ char *string;
+
+ string = pango_color_to_string (&orig);
+
+ g_assert_cmpstr (string, ==, "#000000c81388");
+
+ g_free (string);
+}
+
int
main (int argc, char *argv[])
{
g_test_init (&argc, &argv, NULL);
g_test_add_func ("/color/parse", test_color);
+ g_test_add_func ("/color/copy", test_color_copy);
+ g_test_add_func ("/color/serialize", test_color_serialize);
return g_test_run ();
}