1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
/*
* Copyright (C) 2021 Purism SPC
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*
* Author: Alice Mikhaylenko <alice.mikhaylenko@puri.sm>
*/
#include <adwaita.h>
static void
increment (int *data)
{
(*data)++;
}
static void
test_adw_button_content_icon_name (void)
{
AdwButtonContent *content = g_object_ref_sink (ADW_BUTTON_CONTENT (adw_button_content_new ()));
char *icon_name;
int notified = 0;
g_assert_nonnull (content);
g_signal_connect_swapped (content, "notify::icon-name", G_CALLBACK (increment), ¬ified);
g_object_get (content, "icon-name", &icon_name, NULL);
g_assert_cmpstr (icon_name, ==, "");
adw_button_content_set_icon_name (content, "");
g_assert_cmpint (notified, ==, 0);
adw_button_content_set_icon_name (content, "document-open-symbolic");
g_assert_cmpstr (adw_button_content_get_icon_name (content), ==, "document-open-symbolic");
g_assert_cmpint (notified, ==, 1);
g_object_set (content, "icon-name", "", NULL);
g_assert_cmpstr (adw_button_content_get_icon_name (content), ==, "");
g_assert_cmpint (notified, ==, 2);
g_free (icon_name);
g_assert_finalize_object (content);
}
static void
test_adw_button_content_label (void)
{
AdwButtonContent *content = g_object_ref_sink (ADW_BUTTON_CONTENT (adw_button_content_new ()));
char *label;
int notified = 0;
g_assert_nonnull (content);
g_signal_connect_swapped (content, "notify::label", G_CALLBACK (increment), ¬ified);
g_object_get (content, "label", &label, NULL);
g_assert_cmpstr (label, ==, "");
adw_button_content_set_label (content, "");
g_assert_cmpint (notified, ==, 0);
adw_button_content_set_label (content, "Open");
g_assert_cmpstr (adw_button_content_get_label (content), ==, "Open");
g_assert_cmpint (notified, ==, 1);
g_object_set (content, "label", "", NULL);
g_assert_cmpstr (adw_button_content_get_label (content), ==, "");
g_assert_cmpint (notified, ==, 2);
g_free (label);
g_assert_finalize_object (content);
}
static void
test_adw_button_content_use_underline (void)
{
AdwButtonContent *content = g_object_ref_sink (ADW_BUTTON_CONTENT (adw_button_content_new ()));
gboolean use_underline;
int notified = 0;
g_assert_nonnull (content);
g_signal_connect_swapped (content, "notify::use-underline", G_CALLBACK (increment), ¬ified);
g_object_get (content, "use-underline", &use_underline, NULL);
g_assert_false (use_underline);
adw_button_content_set_use_underline (content, FALSE);
g_assert_cmpint (notified, ==, 0);
adw_button_content_set_use_underline (content, TRUE);
g_assert_true (adw_button_content_get_use_underline (content));
g_assert_cmpint (notified, ==, 1);
g_object_set (content, "use-underline", FALSE, NULL);
g_assert_false (adw_button_content_get_use_underline (content));
g_assert_cmpint (notified, ==, 2);
g_assert_finalize_object (content);
}
static void
test_adw_button_content_style_class_button (void)
{
GtkWidget *window = gtk_window_new ();
GtkWidget *button = gtk_button_new ();
AdwButtonContent *content = ADW_BUTTON_CONTENT (adw_button_content_new ());
g_assert_nonnull (content);
gtk_window_set_child (GTK_WINDOW (window), button);
gtk_window_present (GTK_WINDOW (window));
gtk_button_set_child (GTK_BUTTON (button), GTK_WIDGET (content));
g_assert_true (gtk_widget_has_css_class (button, "image-text-button"));
gtk_button_set_child (GTK_BUTTON (button), NULL);
g_assert_false (gtk_widget_has_css_class (button, "image-text-button"));
g_assert_finalize_object (window);
}
static void
test_adw_button_content_style_class_split_button (void)
{
GtkWidget *window = gtk_window_new ();
GtkWidget *button = adw_split_button_new ();
AdwButtonContent *content = ADW_BUTTON_CONTENT (adw_button_content_new ());
g_assert_nonnull (content);
gtk_window_set_child (GTK_WINDOW (window), button);
gtk_window_present (GTK_WINDOW (window));
adw_split_button_set_child (ADW_SPLIT_BUTTON (button), GTK_WIDGET (content));
g_assert_true (gtk_widget_has_css_class (button, "image-text-button"));
adw_split_button_set_child (ADW_SPLIT_BUTTON (button), NULL);
g_assert_false (gtk_widget_has_css_class (button, "image-text-button"));
g_assert_finalize_object (window);
}
int
main (int argc,
char *argv[])
{
gtk_test_init (&argc, &argv, NULL);
adw_init ();
g_test_add_func ("/Adwaita/ButtonContent/icon_name", test_adw_button_content_icon_name);
g_test_add_func ("/Adwaita/ButtonContent/label", test_adw_button_content_label);
g_test_add_func ("/Adwaita/ButtonContent/use_underline", test_adw_button_content_use_underline);
g_test_add_func ("/Adwaita/ButtonContent/style_class_button", test_adw_button_content_style_class_button);
g_test_add_func ("/Adwaita/ButtonContent/style_class_split_button", test_adw_button_content_style_class_split_button);
return g_test_run ();
}
|