LCOV - code coverage report
Current view: top level - gio/tests - gsettings.c (source / functions) Coverage Total Hit
Test: unnamed Lines: 95.1 % 1810 1721
Test Date: 2024-11-26 05:23:01 Functions: 87.2 % 94 82
Branches: - 0 0

             Branch data     Line data    Source code
       1                 :             : #include "config.h"
       2                 :             : 
       3                 :             : #include <stdlib.h>
       4                 :             : #include <locale.h>
       5                 :             : #include <libintl.h>
       6                 :             : #include <unistd.h>
       7                 :             : #include <sys/types.h>
       8                 :             : #include <gio/gio.h>
       9                 :             : #include <gstdio.h>
      10                 :             : #define G_SETTINGS_ENABLE_BACKEND
      11                 :             : #include <gio/gsettingsbackend.h>
      12                 :             : 
      13                 :             : #include "testenum.h"
      14                 :             : 
      15                 :             : #ifdef HAVE_XLOCALE_H
      16                 :             : /* Needed on macOS and FreeBSD for uselocale() */
      17                 :             : #include <xlocale.h>
      18                 :             : #endif
      19                 :             : 
      20                 :             : static const gchar *locale_dir = ".";
      21                 :             : 
      22                 :             : static gboolean backend_set;
      23                 :             : 
      24                 :             : /* These tests rely on the schemas in org.gtk.test.gschema.xml
      25                 :             :  * to be compiled and installed in the same directory.
      26                 :             :  */
      27                 :             : 
      28                 :             : typedef struct
      29                 :             : {
      30                 :             :   gchar *tmp_dir;
      31                 :             : } Fixture;
      32                 :             : 
      33                 :             : static void
      34                 :           6 : setup (Fixture       *fixture,
      35                 :             :        gconstpointer  user_data)
      36                 :             : {
      37                 :           6 :   GError *error = NULL;
      38                 :             : 
      39                 :           6 :   fixture->tmp_dir = g_dir_make_tmp ("gio-test-gsettings_XXXXXX", &error);
      40                 :           6 :   g_assert_no_error (error);
      41                 :             : 
      42                 :           6 :   g_test_message ("Using temporary directory: %s", fixture->tmp_dir);
      43                 :           6 : }
      44                 :             : 
      45                 :             : static void
      46                 :           6 : teardown (Fixture       *fixture,
      47                 :             :           gconstpointer  user_data)
      48                 :             : {
      49                 :           6 :   g_assert_no_errno (g_rmdir (fixture->tmp_dir));
      50                 :           6 :   g_clear_pointer (&fixture->tmp_dir, g_free);
      51                 :           6 : }
      52                 :             : 
      53                 :             : static void
      54                 :           9 : check_and_free (GVariant    *value,
      55                 :             :                 const gchar *expected)
      56                 :             : {
      57                 :             :   gchar *printed;
      58                 :             : 
      59                 :           9 :   printed = g_variant_print (value, TRUE);
      60                 :           9 :   g_assert_cmpstr (printed, ==, expected);
      61                 :           9 :   g_free (printed);
      62                 :             : 
      63                 :           9 :   g_variant_unref (value);
      64                 :           9 : }
      65                 :             : 
      66                 :             : /* Wrapper around g_assert_cmpstr() which gets a setting from a #GSettings
      67                 :             :  * using g_settings_get(). */
      68                 :             : #define settings_assert_cmpstr(settings, key, op, expected_value) G_STMT_START { \
      69                 :             :   gchar *__str; \
      70                 :             :   g_settings_get ((settings), (key), "s", &__str); \
      71                 :             :   g_assert_cmpstr (__str, op, (expected_value)); \
      72                 :             :   g_free (__str); \
      73                 :             : } G_STMT_END
      74                 :             : 
      75                 :             : 
      76                 :             : /* Just to get warmed up: Read and set a string, and
      77                 :             :  * verify that can read the changed string back
      78                 :             :  */
      79                 :             : static void
      80                 :           1 : test_basic (void)
      81                 :             : {
      82                 :           1 :   gchar *str = NULL;
      83                 :             :   GObject *b;
      84                 :             :   gchar *path;
      85                 :             :   gboolean has_unapplied;
      86                 :             :   gboolean delay_apply;
      87                 :             :   GSettings *settings;
      88                 :             : 
      89                 :           1 :   settings = g_settings_new ("org.gtk.test");
      90                 :             : 
      91                 :           1 :   g_object_get (settings,
      92                 :             :                 "schema-id", &str,
      93                 :             :                 "backend", &b,
      94                 :             :                 "path", &path,
      95                 :             :                 "has-unapplied", &has_unapplied,
      96                 :             :                 "delay-apply", &delay_apply,
      97                 :             :                 NULL);
      98                 :           1 :   g_assert_cmpstr (str, ==, "org.gtk.test");
      99                 :           1 :   g_assert_nonnull (b);
     100                 :           1 :   g_assert_cmpstr (path, ==, "/tests/");
     101                 :           1 :   g_assert_false (has_unapplied);
     102                 :           1 :   g_assert_false (delay_apply);
     103                 :           1 :   g_free (str);
     104                 :           1 :   g_object_unref (b);
     105                 :           1 :   g_free (path);
     106                 :             : 
     107                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "Hello, earthlings");
     108                 :             : 
     109                 :           1 :   g_settings_set (settings, "greeting", "s", "goodbye world");
     110                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "goodbye world");
     111                 :             : 
     112                 :           1 :   if (!backend_set && g_test_undefined ())
     113                 :             :     {
     114                 :           1 :       GSettings *tmp_settings = g_settings_new ("org.gtk.test");
     115                 :             : 
     116                 :           1 :       g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
     117                 :             :                              "*g_settings_set_value*expects type*");
     118                 :           1 :       g_settings_set (tmp_settings, "greeting", "i", 555);
     119                 :           1 :       g_test_assert_expected_messages ();
     120                 :             : 
     121                 :           1 :       g_object_unref (tmp_settings);
     122                 :             :     }
     123                 :             : 
     124                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "goodbye world");
     125                 :             : 
     126                 :           1 :   g_settings_reset (settings, "greeting");
     127                 :           1 :   str = g_settings_get_string (settings, "greeting");
     128                 :           1 :   g_assert_cmpstr (str, ==, "Hello, earthlings");
     129                 :           1 :   g_free (str);
     130                 :             : 
     131                 :           1 :   g_settings_set (settings, "greeting", "s", "this is the end");
     132                 :           1 :   g_object_unref (settings);
     133                 :           1 : }
     134                 :             : 
     135                 :             : /* Check that we get an error when getting a key
     136                 :             :  * that is not in the schema
     137                 :             :  */
     138                 :             : static void
     139                 :           1 : test_unknown_key (void)
     140                 :             : {
     141                 :           1 :   if (!g_test_undefined ())
     142                 :           0 :     return;
     143                 :             : 
     144                 :           1 :   if (g_test_subprocess ())
     145                 :             :     {
     146                 :             :       GSettings *settings;
     147                 :             :       GVariant *value;
     148                 :             : 
     149                 :           0 :       settings = g_settings_new ("org.gtk.test");
     150                 :           0 :       value = g_settings_get_value (settings, "no_such_key");
     151                 :             : 
     152                 :           0 :       g_assert_null (value);
     153                 :             : 
     154                 :           0 :       g_object_unref (settings);
     155                 :           0 :       return;
     156                 :             :     }
     157                 :           1 :   g_test_trap_subprocess (NULL, 0, G_TEST_SUBPROCESS_DEFAULT);
     158                 :           1 :   g_test_trap_assert_failed ();
     159                 :           1 :   g_test_trap_assert_stderr ("*does not contain*");
     160                 :             : }
     161                 :             : 
     162                 :             : /* Check that we get an error when the schema
     163                 :             :  * has not been installed
     164                 :             :  */
     165                 :             : static void
     166                 :           1 : test_no_schema (void)
     167                 :             : {
     168                 :           1 :   if (!g_test_undefined ())
     169                 :           0 :     return;
     170                 :             : 
     171                 :           1 :   if (g_test_subprocess ())
     172                 :             :     {
     173                 :             :       GSettings *settings;
     174                 :             : 
     175                 :           0 :       settings = g_settings_new ("no.such.schema");
     176                 :             : 
     177                 :           0 :       g_assert_null (settings);
     178                 :           0 :       return;
     179                 :             :     }
     180                 :           1 :   g_test_trap_subprocess (NULL, 0, G_TEST_SUBPROCESS_DEFAULT);
     181                 :           1 :   g_test_trap_assert_failed ();
     182                 :           1 :   g_test_trap_assert_stderr ("*Settings schema 'no.such.schema' is not installed*");
     183                 :             : }
     184                 :             : 
     185                 :             : /* Check that we get an error when passing a type string
     186                 :             :  * that does not match the schema
     187                 :             :  */
     188                 :             : static void
     189                 :           1 : test_wrong_type (void)
     190                 :             : {
     191                 :             :   GSettings *settings;
     192                 :           1 :   gchar *str = NULL;
     193                 :             : 
     194                 :           1 :   if (!g_test_undefined ())
     195                 :           0 :     return;
     196                 :             : 
     197                 :           1 :   settings = g_settings_new ("org.gtk.test");
     198                 :             : 
     199                 :           1 :   g_test_expect_message ("GLib", G_LOG_LEVEL_CRITICAL,
     200                 :             :                          "*given value has a type of*");
     201                 :           1 :   g_test_expect_message ("GLib", G_LOG_LEVEL_CRITICAL,
     202                 :             :                          "*valid_format_string*");
     203                 :           1 :   g_settings_get (settings, "greeting", "o", &str);
     204                 :           1 :   g_test_assert_expected_messages ();
     205                 :             : 
     206                 :           1 :   g_assert_null (str);
     207                 :             : 
     208                 :           1 :   g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
     209                 :             :                          "*expects type 's'*");
     210                 :           1 :   g_settings_set (settings, "greeting", "o", "/a/path");
     211                 :           1 :   g_test_assert_expected_messages ();
     212                 :             : 
     213                 :           1 :   g_object_unref (settings);
     214                 :             : }
     215                 :             : 
     216                 :             : /* Check errors with explicit paths */
     217                 :             : static void
     218                 :           1 : test_wrong_path (void)
     219                 :             : {
     220                 :           1 :   if (!g_test_undefined ())
     221                 :           0 :     return;
     222                 :             : 
     223                 :           1 :   if (g_test_subprocess ())
     224                 :             :     {
     225                 :             :       GSettings *settings G_GNUC_UNUSED;
     226                 :             : 
     227                 :           0 :       settings = g_settings_new_with_path ("org.gtk.test", "/wrong-path/");
     228                 :           0 :       return;
     229                 :             :     }
     230                 :           1 :   g_test_trap_subprocess (NULL, 0, G_TEST_SUBPROCESS_DEFAULT);
     231                 :           1 :   g_test_trap_assert_failed ();
     232                 :           1 :   g_test_trap_assert_stderr ("*but path * specified by schema*");
     233                 :             : }
     234                 :             : 
     235                 :             : static void
     236                 :           1 : test_no_path (void)
     237                 :             : {
     238                 :           1 :   if (!g_test_undefined ())
     239                 :           0 :     return;
     240                 :             : 
     241                 :           1 :   if (g_test_subprocess ())
     242                 :             :     {
     243                 :             :       GSettings *settings G_GNUC_UNUSED;
     244                 :             : 
     245                 :           0 :       settings = g_settings_new ("org.gtk.test.no-path");
     246                 :           0 :       return;
     247                 :             :     }
     248                 :           1 :   g_test_trap_subprocess (NULL, 0, G_TEST_SUBPROCESS_DEFAULT);
     249                 :           1 :   g_test_trap_assert_failed ();
     250                 :           1 :   g_test_trap_assert_stderr ("*attempting to create schema * without a path**");
     251                 :             : }
     252                 :             : 
     253                 :             : 
     254                 :             : /* Check that we can successfully read and set the full
     255                 :             :  * range of all basic types
     256                 :             :  */
     257                 :             : static void
     258                 :           1 : test_basic_types (void)
     259                 :             : {
     260                 :             :   GSettings *settings;
     261                 :             :   gboolean b;
     262                 :             :   guint8 byte;
     263                 :             :   gint16 i16;
     264                 :             :   guint16 u16;
     265                 :             :   gint32 i32;
     266                 :             :   guint32 u32;
     267                 :             :   gint64 i64;
     268                 :             :   guint64 u64;
     269                 :             :   gdouble d;
     270                 :             :   gchar *str;
     271                 :             : 
     272                 :           1 :   settings = g_settings_new ("org.gtk.test.basic-types");
     273                 :             : 
     274                 :           1 :   g_settings_get (settings, "test-boolean", "b", &b);
     275                 :           1 :   g_assert_cmpint (b, ==, 1);
     276                 :             : 
     277                 :           1 :   g_settings_set (settings, "test-boolean", "b", 0);
     278                 :           1 :   g_settings_get (settings, "test-boolean", "b", &b);
     279                 :           1 :   g_assert_cmpint (b, ==, 0);
     280                 :             : 
     281                 :           1 :   g_settings_get (settings, "test-byte", "y", &byte);
     282                 :           1 :   g_assert_cmpint (byte, ==, 25);
     283                 :             : 
     284                 :           1 :   g_settings_set (settings, "test-byte", "y", G_MAXUINT8);
     285                 :           1 :   g_settings_get (settings, "test-byte", "y", &byte);
     286                 :           1 :   g_assert_cmpint (byte, ==, G_MAXUINT8);
     287                 :             : 
     288                 :           1 :   g_settings_get (settings, "test-int16", "n", &i16);
     289                 :           1 :   g_assert_cmpint (i16, ==, -1234);
     290                 :             : 
     291                 :           1 :   g_settings_set (settings, "test-int16", "n", G_MININT16);
     292                 :           1 :   g_settings_get (settings, "test-int16", "n", &i16);
     293                 :           1 :   g_assert_cmpint (i16, ==, G_MININT16);
     294                 :             : 
     295                 :           1 :   g_settings_set (settings, "test-int16", "n", G_MAXINT16);
     296                 :           1 :   g_settings_get (settings, "test-int16", "n", &i16);
     297                 :           1 :   g_assert_cmpint (i16, ==, G_MAXINT16);
     298                 :             : 
     299                 :           1 :   g_settings_get (settings, "test-uint16", "q", &u16);
     300                 :           1 :   g_assert_cmpuint (u16, ==, 1234);
     301                 :             : 
     302                 :           1 :   g_settings_set (settings, "test-uint16", "q", G_MAXUINT16);
     303                 :           1 :   g_settings_get (settings, "test-uint16", "q", &u16);
     304                 :           1 :   g_assert_cmpuint (u16, ==, G_MAXUINT16);
     305                 :             : 
     306                 :           1 :   g_settings_get (settings, "test-int32", "i", &i32);
     307                 :           1 :   g_assert_cmpint (i32, ==, -123456);
     308                 :             : 
     309                 :           1 :   g_settings_set (settings, "test-int32", "i", G_MININT32);
     310                 :           1 :   g_settings_get (settings, "test-int32", "i", &i32);
     311                 :           1 :   g_assert_cmpint (i32, ==, G_MININT32);
     312                 :             : 
     313                 :           1 :   g_settings_set (settings, "test-int32", "i", G_MAXINT32);
     314                 :           1 :   g_settings_get (settings, "test-int32", "i", &i32);
     315                 :           1 :   g_assert_cmpint (i32, ==, G_MAXINT32);
     316                 :             : 
     317                 :           1 :   g_settings_get (settings, "test-uint32", "u", &u32);
     318                 :           1 :   g_assert_cmpuint (u32, ==, 123456);
     319                 :             : 
     320                 :           1 :   g_settings_set (settings, "test-uint32", "u", G_MAXUINT32);
     321                 :           1 :   g_settings_get (settings, "test-uint32", "u", &u32);
     322                 :           1 :   g_assert_cmpuint (u32, ==, G_MAXUINT32);
     323                 :             : 
     324                 :           1 :   g_settings_get (settings, "test-int64", "x", &i64);
     325                 :           1 :   g_assert_cmpuint (i64, ==, -123456789);
     326                 :             : 
     327                 :           1 :   g_settings_set (settings, "test-int64", "x", G_MININT64);
     328                 :           1 :   g_settings_get (settings, "test-int64", "x", &i64);
     329                 :           1 :   g_assert_cmpuint (i64, ==, G_MININT64);
     330                 :             : 
     331                 :           1 :   g_settings_set (settings, "test-int64", "x", G_MAXINT64);
     332                 :           1 :   g_settings_get (settings, "test-int64", "x", &i64);
     333                 :           1 :   g_assert_cmpuint (i64, ==, G_MAXINT64);
     334                 :             : 
     335                 :           1 :   g_settings_get (settings, "test-uint64", "t", &u64);
     336                 :           1 :   g_assert_cmpuint (u64, ==, 123456789);
     337                 :             : 
     338                 :           1 :   g_settings_set (settings, "test-uint64", "t", G_MAXUINT64);
     339                 :           1 :   g_settings_get (settings, "test-uint64", "t", &u64);
     340                 :           1 :   g_assert_cmpuint (u64, ==, G_MAXUINT64);
     341                 :             : 
     342                 :           1 :   g_settings_get (settings, "test-double", "d", &d);
     343                 :           1 :   g_assert_cmpfloat (d, ==, 123.456);
     344                 :             : 
     345                 :           1 :   g_settings_set (settings, "test-double", "d", G_MINDOUBLE);
     346                 :           1 :   g_settings_get (settings, "test-double", "d", &d);
     347                 :           1 :   g_assert_cmpfloat (d, ==, G_MINDOUBLE);
     348                 :             : 
     349                 :           1 :   g_settings_set (settings, "test-double", "d", G_MAXDOUBLE);
     350                 :           1 :   g_settings_get (settings, "test-double", "d", &d);
     351                 :           1 :   g_assert_cmpfloat (d, ==, G_MAXDOUBLE);
     352                 :             : 
     353                 :           1 :   settings_assert_cmpstr (settings, "test-string", ==, "a string, it seems");
     354                 :             : 
     355                 :           1 :   g_settings_get (settings, "test-objectpath", "o", &str);
     356                 :           1 :   g_assert_cmpstr (str, ==, "/a/object/path");
     357                 :           1 :   g_object_unref (settings);
     358                 :           1 :   g_free (str);
     359                 :           1 :   str = NULL;
     360                 :           1 : }
     361                 :             : 
     362                 :             : /* Check that we can read an set complex types like
     363                 :             :  * tuples, arrays and dictionaries
     364                 :             :  */
     365                 :             : static void
     366                 :           1 : test_complex_types (void)
     367                 :             : {
     368                 :             :   GSettings *settings;
     369                 :             :   gchar *s;
     370                 :             :   gint i1, i2;
     371                 :           1 :   GVariantIter *iter = NULL;
     372                 :           1 :   GVariant *v = NULL;
     373                 :             : 
     374                 :           1 :   settings = g_settings_new ("org.gtk.test.complex-types");
     375                 :             : 
     376                 :           1 :   g_settings_get (settings, "test-tuple", "(s(ii))", &s, &i1, &i2);
     377                 :           1 :   g_assert_cmpstr (s, ==, "one");
     378                 :           1 :   g_assert_cmpint (i1,==, 2);
     379                 :           1 :   g_assert_cmpint (i2,==, 3);
     380                 :           1 :   g_free (s) ;
     381                 :           1 :   s = NULL;
     382                 :             : 
     383                 :           1 :   g_settings_set (settings, "test-tuple", "(s(ii))", "none", 0, 0);
     384                 :           1 :   g_settings_get (settings, "test-tuple", "(s(ii))", &s, &i1, &i2);
     385                 :           1 :   g_assert_cmpstr (s, ==, "none");
     386                 :           1 :   g_assert_cmpint (i1,==, 0);
     387                 :           1 :   g_assert_cmpint (i2,==, 0);
     388                 :           1 :   g_free (s);
     389                 :           1 :   s = NULL;
     390                 :             : 
     391                 :           1 :   g_settings_get (settings, "test-array", "ai", &iter);
     392                 :           1 :   g_assert_cmpint (g_variant_iter_n_children (iter), ==, 6);
     393                 :           1 :   g_assert_true (g_variant_iter_next (iter, "i", &i1));
     394                 :           1 :   g_assert_cmpint (i1, ==, 0);
     395                 :           1 :   g_assert_true (g_variant_iter_next (iter, "i", &i1));
     396                 :           1 :   g_assert_cmpint (i1, ==, 1);
     397                 :           1 :   g_assert_true (g_variant_iter_next (iter, "i", &i1));
     398                 :           1 :   g_assert_cmpint (i1, ==, 2);
     399                 :           1 :   g_assert_true (g_variant_iter_next (iter, "i", &i1));
     400                 :           1 :   g_assert_cmpint (i1, ==, 3);
     401                 :           1 :   g_assert_true (g_variant_iter_next (iter, "i", &i1));
     402                 :           1 :   g_assert_cmpint (i1, ==, 4);
     403                 :           1 :   g_assert_true (g_variant_iter_next (iter, "i", &i1));
     404                 :           1 :   g_assert_cmpint (i1, ==, 5);
     405                 :           1 :   g_assert_false (g_variant_iter_next (iter, "i", &i1));
     406                 :           1 :   g_variant_iter_free (iter);
     407                 :             : 
     408                 :           1 :   g_settings_get (settings, "test-dict", "a{sau}", &iter);
     409                 :           1 :   g_assert_cmpint (g_variant_iter_n_children (iter), ==, 2);
     410                 :           1 :   g_assert_true (g_variant_iter_next (iter, "{&s@au}", &s, &v));
     411                 :           1 :   g_assert_cmpstr (s, ==, "AC");
     412                 :           1 :   g_assert_cmpstr ((char *)g_variant_get_type (v), ==, "au");
     413                 :           1 :   g_variant_unref (v);
     414                 :           1 :   g_assert_true (g_variant_iter_next (iter, "{&s@au}", &s, &v));
     415                 :           1 :   g_assert_cmpstr (s, ==, "IV");
     416                 :           1 :   g_assert_cmpstr ((char *)g_variant_get_type (v), ==, "au");
     417                 :           1 :   g_variant_unref (v);
     418                 :           1 :   g_variant_iter_free (iter);
     419                 :             : 
     420                 :           1 :   v = g_settings_get_value (settings, "test-dict");
     421                 :           1 :   g_assert_cmpstr ((char *)g_variant_get_type (v), ==, "a{sau}");
     422                 :           1 :   g_variant_unref (v);
     423                 :             : 
     424                 :           1 :   g_object_unref (settings);
     425                 :           1 : }
     426                 :             : 
     427                 :             : static gboolean changed_cb_called;
     428                 :             : 
     429                 :             : static void
     430                 :           2 : changed_cb (GSettings   *settings,
     431                 :             :             const gchar *key,
     432                 :             :             gpointer     data)
     433                 :             : {
     434                 :           2 :   changed_cb_called = TRUE;
     435                 :             : 
     436                 :           2 :   g_assert_cmpstr (key, ==, data);
     437                 :           2 : }
     438                 :             : 
     439                 :             : /* Test that basic change notification with the changed signal works.
     440                 :             :  */
     441                 :             : static void
     442                 :           1 : test_changes (void)
     443                 :             : {
     444                 :             :   GSettings *settings;
     445                 :             :   GSettings *settings2;
     446                 :             : 
     447                 :           1 :   settings = g_settings_new ("org.gtk.test");
     448                 :             : 
     449                 :           1 :   g_signal_connect (settings, "changed",
     450                 :             :                     G_CALLBACK (changed_cb), "greeting");
     451                 :             : 
     452                 :           1 :   changed_cb_called = FALSE;
     453                 :             : 
     454                 :           1 :   g_settings_set (settings, "greeting", "s", "new greeting");
     455                 :           1 :   g_assert_true (changed_cb_called);
     456                 :             : 
     457                 :           1 :   settings2 = g_settings_new ("org.gtk.test");
     458                 :             : 
     459                 :           1 :   changed_cb_called = FALSE;
     460                 :             : 
     461                 :           1 :   g_settings_set (settings2, "greeting", "s", "hi");
     462                 :           1 :   g_assert_true (changed_cb_called);
     463                 :             : 
     464                 :           1 :   g_object_unref (settings2);
     465                 :           1 :   g_object_unref (settings);
     466                 :           1 : }
     467                 :             : 
     468                 :             : static gboolean changed_cb_called2;
     469                 :             : 
     470                 :             : static void
     471                 :          16 : changed_cb2 (GSettings   *settings,
     472                 :             :              const gchar *key,
     473                 :             :              gpointer     data)
     474                 :             : {
     475                 :          16 :   gboolean *p = data;
     476                 :             : 
     477                 :          16 :   *p = TRUE;
     478                 :          16 : }
     479                 :             : 
     480                 :             : /* Test that changes done to a delay-mode instance
     481                 :             :  * don't appear to the outside world until apply. Also
     482                 :             :  * check that we get change notification when they are
     483                 :             :  * applied.
     484                 :             :  * Also test that the has-unapplied property is properly
     485                 :             :  * maintained.
     486                 :             :  */
     487                 :             : static void
     488                 :           1 : test_delay_apply (void)
     489                 :             : {
     490                 :             :   GSettings *settings;
     491                 :             :   GSettings *settings2;
     492                 :             :   gboolean writable;
     493                 :             :   GVariant *v;
     494                 :             :   const gchar *s;
     495                 :             : 
     496                 :           1 :   settings = g_settings_new ("org.gtk.test");
     497                 :           1 :   settings2 = g_settings_new ("org.gtk.test");
     498                 :             : 
     499                 :           1 :   g_settings_set (settings2, "greeting", "s", "top o' the morning");
     500                 :             : 
     501                 :           1 :   changed_cb_called = FALSE;
     502                 :           1 :   changed_cb_called2 = FALSE;
     503                 :             : 
     504                 :           1 :   g_signal_connect (settings, "changed",
     505                 :             :                     G_CALLBACK (changed_cb2), &changed_cb_called);
     506                 :           1 :   g_signal_connect (settings2, "changed",
     507                 :             :                     G_CALLBACK (changed_cb2), &changed_cb_called2);
     508                 :             : 
     509                 :           1 :   g_settings_delay (settings);
     510                 :             : 
     511                 :           1 :   g_settings_set (settings, "greeting", "s", "greetings from test_delay_apply");
     512                 :             : 
     513                 :           1 :   g_assert_true (changed_cb_called);
     514                 :           1 :   g_assert_false (changed_cb_called2);
     515                 :             : 
     516                 :             :   /* Try resetting the key and ensure a notification is emitted on the delayed #GSettings object. */
     517                 :           1 :   changed_cb_called = FALSE;
     518                 :           1 :   changed_cb_called2 = FALSE;
     519                 :             : 
     520                 :           1 :   g_settings_reset (settings, "greeting");
     521                 :             : 
     522                 :           1 :   g_assert_true (changed_cb_called);
     523                 :           1 :   g_assert_false (changed_cb_called2);
     524                 :             : 
     525                 :             :   /* Locally change the greeting again. */
     526                 :           1 :   changed_cb_called = FALSE;
     527                 :           1 :   changed_cb_called2 = FALSE;
     528                 :             : 
     529                 :           1 :   g_settings_set (settings, "greeting", "s", "greetings from test_delay_apply");
     530                 :             : 
     531                 :           1 :   g_assert_true (changed_cb_called);
     532                 :           1 :   g_assert_false (changed_cb_called2);
     533                 :             : 
     534                 :           1 :   writable = g_settings_is_writable (settings, "greeting");
     535                 :           1 :   g_assert_true (writable);
     536                 :             : 
     537                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "greetings from test_delay_apply");
     538                 :             : 
     539                 :           1 :   v = g_settings_get_user_value (settings, "greeting");
     540                 :           1 :   s = g_variant_get_string (v, NULL);
     541                 :           1 :   g_assert_cmpstr (s, ==, "greetings from test_delay_apply");
     542                 :           1 :   g_variant_unref (v);
     543                 :             : 
     544                 :           1 :   settings_assert_cmpstr (settings2, "greeting", ==, "top o' the morning");
     545                 :             : 
     546                 :           1 :   g_assert_true (g_settings_get_has_unapplied (settings));
     547                 :           1 :   g_assert_false (g_settings_get_has_unapplied (settings2));
     548                 :             : 
     549                 :           1 :   changed_cb_called = FALSE;
     550                 :           1 :   changed_cb_called2 = FALSE;
     551                 :             : 
     552                 :           1 :   g_settings_apply (settings);
     553                 :             : 
     554                 :           1 :   g_assert_false (changed_cb_called);
     555                 :           1 :   g_assert_true (changed_cb_called2);
     556                 :             : 
     557                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "greetings from test_delay_apply");
     558                 :           1 :   settings_assert_cmpstr (settings2, "greeting", ==, "greetings from test_delay_apply");
     559                 :             : 
     560                 :           1 :   g_assert_false (g_settings_get_has_unapplied (settings));
     561                 :           1 :   g_assert_false (g_settings_get_has_unapplied (settings2));
     562                 :             : 
     563                 :           1 :   g_settings_reset (settings, "greeting");
     564                 :           1 :   g_settings_apply (settings);
     565                 :             : 
     566                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "Hello, earthlings");
     567                 :             : 
     568                 :           1 :   g_object_unref (settings2);
     569                 :           1 :   g_object_unref (settings);
     570                 :           1 : }
     571                 :             : 
     572                 :             : /* Test that reverting unapplied changes in a delay-apply
     573                 :             :  * settings instance works.
     574                 :             :  */
     575                 :             : static void
     576                 :           1 : test_delay_revert (void)
     577                 :             : {
     578                 :             :   GSettings *settings;
     579                 :             :   GSettings *settings2;
     580                 :             : 
     581                 :           1 :   settings = g_settings_new ("org.gtk.test");
     582                 :           1 :   settings2 = g_settings_new ("org.gtk.test");
     583                 :             : 
     584                 :           1 :   g_settings_set (settings2, "greeting", "s", "top o' the morning");
     585                 :             : 
     586                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "top o' the morning");
     587                 :             : 
     588                 :           1 :   g_settings_delay (settings);
     589                 :             : 
     590                 :           1 :   g_settings_set (settings, "greeting", "s", "greetings from test_delay_revert");
     591                 :             : 
     592                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "greetings from test_delay_revert");
     593                 :           1 :   settings_assert_cmpstr (settings2, "greeting", ==, "top o' the morning");
     594                 :             : 
     595                 :           1 :   g_assert_true (g_settings_get_has_unapplied (settings));
     596                 :             : 
     597                 :           1 :   g_settings_revert (settings);
     598                 :             : 
     599                 :           1 :   g_assert_false (g_settings_get_has_unapplied (settings));
     600                 :             : 
     601                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "top o' the morning");
     602                 :           1 :   settings_assert_cmpstr (settings2, "greeting", ==, "top o' the morning");
     603                 :             : 
     604                 :           1 :   g_object_unref (settings2);
     605                 :           1 :   g_object_unref (settings);
     606                 :           1 : }
     607                 :             : 
     608                 :             : static void
     609                 :           1 : test_delay_child (void)
     610                 :             : {
     611                 :             :   GSettings *base;
     612                 :             :   GSettings *settings;
     613                 :             :   GSettings *child;
     614                 :             :   guint8 byte;
     615                 :             :   gboolean delay;
     616                 :             : 
     617                 :           1 :   base = g_settings_new ("org.gtk.test.basic-types");
     618                 :           1 :   g_settings_set (base, "test-byte", "y", 36);
     619                 :             : 
     620                 :           1 :   settings = g_settings_new ("org.gtk.test");
     621                 :           1 :   g_settings_delay (settings);
     622                 :           1 :   g_object_get (settings, "delay-apply", &delay, NULL);
     623                 :           1 :   g_assert_true (delay);
     624                 :             : 
     625                 :           1 :   child = g_settings_get_child (settings, "basic-types");
     626                 :           1 :   g_assert_nonnull (child);
     627                 :             : 
     628                 :           1 :   g_object_get (child, "delay-apply", &delay, NULL);
     629                 :           1 :   g_assert_true (delay);
     630                 :             : 
     631                 :           1 :   g_settings_get (child, "test-byte", "y", &byte);
     632                 :           1 :   g_assert_cmpuint (byte, ==, 36);
     633                 :             : 
     634                 :           1 :   g_settings_set (child, "test-byte", "y", 42);
     635                 :             : 
     636                 :             :   /* make sure the child was delayed too */
     637                 :           1 :   g_settings_get (base, "test-byte", "y", &byte);
     638                 :           1 :   g_assert_cmpuint (byte, ==, 36);
     639                 :             : 
     640                 :             :   /* apply the child and the changes should be saved */
     641                 :           1 :   g_settings_apply (child);
     642                 :           1 :   g_settings_get (base, "test-byte", "y", &byte);
     643                 :           1 :   g_assert_cmpuint (byte, ==, 42);
     644                 :             : 
     645                 :           1 :   g_object_unref (child);
     646                 :           1 :   g_object_unref (settings);
     647                 :           1 :   g_object_unref (base);
     648                 :           1 : }
     649                 :             : 
     650                 :             : static void
     651                 :           1 : test_delay_reset_key (void)
     652                 :             : {
     653                 :           1 :   GSettings *direct_settings = NULL, *delayed_settings = NULL;
     654                 :             : 
     655                 :           1 :   g_test_summary ("Test that resetting a key on a delayed settings instance works");
     656                 :             : 
     657                 :           1 :   delayed_settings = g_settings_new ("org.gtk.test");
     658                 :           1 :   direct_settings = g_settings_new ("org.gtk.test");
     659                 :             : 
     660                 :           1 :   g_settings_set (direct_settings, "greeting", "s", "ey up");
     661                 :             : 
     662                 :           1 :   settings_assert_cmpstr (delayed_settings, "greeting", ==, "ey up");
     663                 :             : 
     664                 :             :   /* Set up a delayed settings backend. */
     665                 :           1 :   g_settings_delay (delayed_settings);
     666                 :             : 
     667                 :           1 :   g_settings_set (delayed_settings, "greeting", "s", "how do");
     668                 :             : 
     669                 :           1 :   settings_assert_cmpstr (delayed_settings, "greeting", ==, "how do");
     670                 :           1 :   settings_assert_cmpstr (direct_settings, "greeting", ==, "ey up");
     671                 :             : 
     672                 :           1 :   g_assert_true (g_settings_get_has_unapplied (delayed_settings));
     673                 :             : 
     674                 :           1 :   g_settings_reset (delayed_settings, "greeting");
     675                 :             : 
     676                 :             :   /* There are still unapplied settings, because the reset is resetting to the
     677                 :             :    * value from the schema, not the value from @direct_settings. */
     678                 :           1 :   g_assert_true (g_settings_get_has_unapplied (delayed_settings));
     679                 :             : 
     680                 :           1 :   settings_assert_cmpstr (delayed_settings, "greeting", ==, "Hello, earthlings");
     681                 :           1 :   settings_assert_cmpstr (direct_settings, "greeting", ==, "ey up");
     682                 :             : 
     683                 :             :   /* Apply the settings changes (i.e. the reset). */
     684                 :           1 :   g_settings_apply (delayed_settings);
     685                 :             : 
     686                 :           1 :   g_assert_false (g_settings_get_has_unapplied (delayed_settings));
     687                 :             : 
     688                 :           1 :   settings_assert_cmpstr (delayed_settings, "greeting", ==, "Hello, earthlings");
     689                 :           1 :   settings_assert_cmpstr (direct_settings, "greeting", ==, "Hello, earthlings");
     690                 :             : 
     691                 :           1 :   g_object_unref (direct_settings);
     692                 :           1 :   g_object_unref (delayed_settings);
     693                 :           1 : }
     694                 :             : 
     695                 :             : static void
     696                 :           1 : keys_changed_cb (GSettings    *settings,
     697                 :             :                  const GQuark *keys,
     698                 :             :                  gint          n_keys)
     699                 :             : {
     700                 :           1 :   g_assert_cmpint (n_keys, ==, 2);
     701                 :             : 
     702                 :           1 :   g_assert_true ((keys[0] == g_quark_from_static_string ("greeting") &&
     703                 :             :                   keys[1] == g_quark_from_static_string ("farewell")) ||
     704                 :             :                  (keys[1] == g_quark_from_static_string ("greeting") &&
     705                 :             :                   keys[0] == g_quark_from_static_string ("farewell")));
     706                 :             : 
     707                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "greetings from test_atomic");
     708                 :           1 :   settings_assert_cmpstr (settings, "farewell", ==, "atomic bye-bye");
     709                 :           1 : }
     710                 :             : 
     711                 :             : /* Check that delay-applied changes appear atomically.
     712                 :             :  * More specifically, verify that all changed keys appear
     713                 :             :  * with their new value while handling the change-event signal.
     714                 :             :  */
     715                 :             : static void
     716                 :           1 : test_atomic (void)
     717                 :             : {
     718                 :             :   GSettings *settings;
     719                 :             :   GSettings *settings2;
     720                 :             : 
     721                 :           1 :   settings = g_settings_new ("org.gtk.test");
     722                 :           1 :   settings2 = g_settings_new ("org.gtk.test");
     723                 :             : 
     724                 :           1 :   g_settings_set (settings2, "greeting", "s", "top o' the morning");
     725                 :             : 
     726                 :           1 :   changed_cb_called = FALSE;
     727                 :           1 :   changed_cb_called2 = FALSE;
     728                 :             : 
     729                 :           1 :   g_signal_connect (settings2, "change-event",
     730                 :             :                     G_CALLBACK (keys_changed_cb), NULL);
     731                 :             : 
     732                 :           1 :   g_settings_delay (settings);
     733                 :             : 
     734                 :           1 :   g_settings_set (settings, "greeting", "s", "greetings from test_atomic");
     735                 :           1 :   g_settings_set (settings, "farewell", "s", "atomic bye-bye");
     736                 :             : 
     737                 :           1 :   g_settings_apply (settings);
     738                 :             : 
     739                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "greetings from test_atomic");
     740                 :           1 :   settings_assert_cmpstr (settings, "farewell", ==, "atomic bye-bye");
     741                 :           1 :   settings_assert_cmpstr (settings2, "greeting", ==, "greetings from test_atomic");
     742                 :           1 :   settings_assert_cmpstr (settings2, "farewell", ==, "atomic bye-bye");
     743                 :             : 
     744                 :           1 :   g_object_unref (settings2);
     745                 :           1 :   g_object_unref (settings);
     746                 :           1 : }
     747                 :             : 
     748                 :             : /* On Windows the interaction between the C library locale and libintl
     749                 :             :  * (from GNU gettext) is not like on POSIX, so just skip these tests
     750                 :             :  * for now.
     751                 :             :  *
     752                 :             :  * There are several issues:
     753                 :             :  *
     754                 :             :  * 1) The C library doesn't use LC_MESSAGES, that is implemented only
     755                 :             :  * in libintl (defined in its <libintl.h>).
     756                 :             :  *
     757                 :             :  * 2) The locale names that uselocale() accepts and returns aren't in
     758                 :             :  * the "de_DE" style, but like "German_Germany".
     759                 :             :  *
     760                 :             :  * 3) libintl looks at the Win32 thread locale and not the C library
     761                 :             :  * locale. (And even if libintl would use the C library's locale, as
     762                 :             :  * there are several alternative C library DLLs, libintl might be
     763                 :             :  * linked to a different one than the application code, so they
     764                 :             :  * wouldn't have the same C library locale anyway.)
     765                 :             :  */
     766                 :             : 
     767                 :             : /* Test that translations work for schema defaults.
     768                 :             :  *
     769                 :             :  * This test relies on the de.po file in the same directory
     770                 :             :  * to be compiled into ./de/LC_MESSAGES/test.mo
     771                 :             :  */
     772                 :             : static void
     773                 :           1 : test_l10n (void)
     774                 :             : {
     775                 :             : #ifndef HAVE_USELOCALE
     776                 :             :   g_test_skip ("Unsafe to change locale because platform does not support uselocale()");
     777                 :             : #else
     778                 :             :   GSettings *settings;
     779                 :             :   gchar *str;
     780                 :             :   locale_t original_locale;
     781                 :             :   locale_t new_locale;
     782                 :             :   locale_t result;
     783                 :             : 
     784                 :           1 :   bindtextdomain ("test", locale_dir);
     785                 :           1 :   bind_textdomain_codeset ("test", "UTF-8");
     786                 :             : 
     787                 :           1 :   original_locale = uselocale ((locale_t) 0);
     788                 :           1 :   g_assert_true (original_locale != (locale_t) 0);
     789                 :           1 :   new_locale = newlocale (LC_MESSAGES_MASK, "C", (locale_t) 0);
     790                 :           1 :   g_assert_true (new_locale != (locale_t) 0);
     791                 :           1 :   result = uselocale (new_locale);
     792                 :           1 :   g_assert_true (result == original_locale);
     793                 :             : 
     794                 :           1 :   settings = g_settings_new ("org.gtk.test.localized");
     795                 :           1 :   str = g_settings_get_string (settings, "error-message");
     796                 :             : 
     797                 :           1 :   result = uselocale (original_locale);
     798                 :           1 :   g_assert_true (result == new_locale);
     799                 :           1 :   freelocale (new_locale);
     800                 :             : 
     801                 :           1 :   g_assert_cmpstr (str, ==, "Unnamed");
     802                 :           1 :   g_free (str);
     803                 :           1 :   str = NULL;
     804                 :             : 
     805                 :           1 :   new_locale = newlocale (LC_MESSAGES_MASK, "de_DE.UTF-8", (locale_t) 0);
     806                 :           1 :   if (new_locale == (locale_t) 0)
     807                 :             :     {
     808                 :           0 :       g_test_skip ("Cannot run test becaues de_DE.UTF-8 locale is not available");
     809                 :           0 :       g_object_unref (settings);
     810                 :           0 :       return;
     811                 :             :     }
     812                 :           1 :   result = uselocale (new_locale);
     813                 :           1 :   g_assert_true (result == original_locale);
     814                 :             : 
     815                 :             :   /* Only do the test if translation is actually working... */
     816                 :           1 :   if (g_str_equal (dgettext ("test", "\"Unnamed\""), "\"Unbenannt\""))
     817                 :             :     {
     818                 :           1 :       str = g_settings_get_string (settings, "error-message");
     819                 :             : 
     820                 :           1 :       g_assert_cmpstr (str, ==, "Unbenannt");
     821                 :           1 :       g_free (str);
     822                 :           1 :       str = NULL;
     823                 :             :     }
     824                 :             :   else
     825                 :             :     {
     826                 :           0 :       g_test_skip ("translation is not working");
     827                 :             :     }
     828                 :             : 
     829                 :           1 :   result = uselocale (original_locale);
     830                 :           1 :   g_assert_true (result == new_locale);
     831                 :           1 :   freelocale (new_locale);
     832                 :             : 
     833                 :           1 :   g_object_unref (settings);
     834                 :             : #endif
     835                 :             : }
     836                 :             : 
     837                 :             : /* Test that message context works as expected with translated
     838                 :             :  * schema defaults. Also, verify that non-ASCII UTF-8 content
     839                 :             :  * works.
     840                 :             :  *
     841                 :             :  * This test relies on the de.po file in the same directory
     842                 :             :  * to be compiled into ./de/LC_MESSAGES/test.mo
     843                 :             :  */
     844                 :             : static void
     845                 :           1 : test_l10n_context (void)
     846                 :             : {
     847                 :             : #ifndef HAVE_USELOCALE
     848                 :             :   g_test_skip ("Unsafe to change locale because platform does not support uselocale()");
     849                 :             : #else
     850                 :             :   GSettings *settings;
     851                 :             :   gchar *str;
     852                 :             :   locale_t original_locale;
     853                 :             :   locale_t new_locale;
     854                 :             :   locale_t result;
     855                 :             : 
     856                 :           1 :   bindtextdomain ("test", locale_dir);
     857                 :           1 :   bind_textdomain_codeset ("test", "UTF-8");
     858                 :             : 
     859                 :           1 :   settings = g_settings_new ("org.gtk.test.localized");
     860                 :             : 
     861                 :           1 :   original_locale = uselocale ((locale_t) 0);
     862                 :           1 :   g_assert_true (original_locale != (locale_t) 0);
     863                 :           1 :   new_locale = newlocale (LC_MESSAGES_MASK, "C", (locale_t) 0);
     864                 :           1 :   g_assert_true (new_locale != (locale_t) 0);
     865                 :           1 :   result = uselocale (new_locale);
     866                 :           1 :   g_assert_true (result == original_locale);
     867                 :             : 
     868                 :           1 :   g_settings_get (settings, "backspace", "s", &str);
     869                 :             : 
     870                 :           1 :   result = uselocale (original_locale);
     871                 :           1 :   g_assert_true (result == new_locale);
     872                 :           1 :   freelocale (new_locale);
     873                 :             : 
     874                 :           1 :   g_assert_cmpstr (str, ==, "BackSpace");
     875                 :           1 :   g_free (str);
     876                 :           1 :   str = NULL;
     877                 :             : 
     878                 :           1 :   new_locale = newlocale (LC_MESSAGES_MASK, "de_DE.UTF-8", (locale_t) 0);
     879                 :           1 :   if (new_locale == (locale_t) 0)
     880                 :             :     {
     881                 :           0 :       g_test_skip ("Cannot run test becaues de_DE.UTF-8 locale is not available");
     882                 :           0 :       g_object_unref (settings);
     883                 :           0 :       return;
     884                 :             :     }
     885                 :           1 :   result = uselocale (new_locale);
     886                 :           1 :   g_assert_true (result == original_locale);
     887                 :             : 
     888                 :             :   /* Only do the test if translation is actually working... */
     889                 :           1 :   if (g_str_equal (dgettext ("test", "\"Unnamed\""), "\"Unbenannt\""))
     890                 :           1 :     settings_assert_cmpstr (settings, "backspace", ==, "Löschen");
     891                 :             :   else
     892                 :           0 :     g_test_skip ("translation is not working");
     893                 :             : 
     894                 :           1 :   result = uselocale (original_locale);
     895                 :           1 :   g_assert_true (result == new_locale);
     896                 :           1 :   freelocale (new_locale);
     897                 :             : 
     898                 :           1 :   g_object_unref (settings);
     899                 :             : #endif
     900                 :             : }
     901                 :             : 
     902                 :             : /* Test use of l10n="time" and LC_TIME. */
     903                 :             : static void
     904                 :           1 : test_l10n_time (void)
     905                 :             : {
     906                 :             : #ifndef HAVE_USELOCALE
     907                 :             :   g_test_skip ("Unsafe to change locale because platform does not support uselocale()");
     908                 :             : #else
     909                 :             :   GSettings *settings;
     910                 :             :   gchar *str;
     911                 :             :   locale_t original_locale;
     912                 :             :   locale_t new_locale;
     913                 :             :   locale_t result;
     914                 :             : 
     915                 :           1 :   g_test_summary ("Test that l10n='time' attribute uses the correct category for translations");
     916                 :           1 :   g_test_bug ("https://gitlab.gnome.org/GNOME/glib/-/issues/2575");
     917                 :             : 
     918                 :           1 :   bindtextdomain ("test", locale_dir);
     919                 :           1 :   bind_textdomain_codeset ("test", "UTF-8");
     920                 :             : 
     921                 :           1 :   settings = g_settings_new ("org.gtk.test.localized");
     922                 :             : 
     923                 :           1 :   original_locale = uselocale ((locale_t) 0);
     924                 :           1 :   g_assert_true (original_locale != (locale_t) 0);
     925                 :           1 :   new_locale = duplocale (original_locale);
     926                 :           1 :   g_assert_true (new_locale != (locale_t) 0);
     927                 :           1 :   g_clear_pointer (&new_locale, freelocale);
     928                 :             : 
     929                 :           1 :   new_locale = newlocale (LC_TIME_MASK, "C", new_locale);
     930                 :           1 :   g_assert_true (new_locale != (locale_t) 0);
     931                 :           1 :   result = uselocale (new_locale);
     932                 :           1 :   g_assert_true (result == original_locale);
     933                 :             : 
     934                 :           1 :   str = g_settings_get_string (settings, "midnight");
     935                 :             : 
     936                 :           1 :   result = uselocale (original_locale);
     937                 :           1 :   g_assert_true (result == new_locale);
     938                 :             : 
     939                 :           1 :   g_assert_cmpstr (str, ==, "12:00 AM");
     940                 :           1 :   g_free (str);
     941                 :           1 :   g_clear_pointer (&new_locale, freelocale);
     942                 :           1 :   str = NULL;
     943                 :             : 
     944                 :           1 :   new_locale = newlocale (LC_TIME_MASK, "de_DE.UTF-8", new_locale);
     945                 :           1 :   if (new_locale == (locale_t) 0)
     946                 :             :     {
     947                 :           0 :       g_test_skip ("Cannot run test becaues de_DE.UTF-8 locale is not available");
     948                 :           0 :       g_object_unref (settings);
     949                 :           0 :       return;
     950                 :             :     }
     951                 :           1 :   result = uselocale (new_locale);
     952                 :           1 :   g_assert_true (result != (locale_t) 0);
     953                 :             : 
     954                 :             :   /* Only do the test if translation is actually working... */
     955                 :           1 :   if (g_str_equal (dgettext ("test", "\"12:00 AM\""), "\"00:00\""))
     956                 :             :     {
     957                 :           0 :       str = g_settings_get_string (settings, "midnight");
     958                 :             : 
     959                 :           0 :       g_assert_cmpstr (str, ==, "00:00");
     960                 :           0 :       g_free (str);
     961                 :           0 :       str = NULL;
     962                 :             :     }
     963                 :             :   else
     964                 :             :     {
     965                 :           1 :       g_test_skip ("translation is not working");
     966                 :             :     }
     967                 :             : 
     968                 :           1 :   result = uselocale (original_locale);
     969                 :           1 :   g_assert_true (result == new_locale);
     970                 :           1 :   g_clear_pointer (&new_locale, freelocale);
     971                 :             : 
     972                 :           1 :   g_object_unref (settings);
     973                 :             : #endif
     974                 :             : }
     975                 :             : 
     976                 :             : enum
     977                 :             : {
     978                 :             :   PROP_0,
     979                 :             :   PROP_BOOL,
     980                 :             :   PROP_ANTI_BOOL,
     981                 :             :   PROP_BYTE,
     982                 :             :   PROP_INT16,
     983                 :             :   PROP_UINT16,
     984                 :             :   PROP_INT,
     985                 :             :   PROP_UINT,
     986                 :             :   PROP_INT64,
     987                 :             :   PROP_UINT64,
     988                 :             :   PROP_DOUBLE,
     989                 :             :   PROP_STRING,
     990                 :             :   PROP_NO_READ,
     991                 :             :   PROP_NO_WRITE,
     992                 :             :   PROP_STRV,
     993                 :             :   PROP_ENUM,
     994                 :             :   PROP_FLAGS
     995                 :             : };
     996                 :             : 
     997                 :             : typedef struct
     998                 :             : {
     999                 :             :   GObject parent_instance;
    1000                 :             : 
    1001                 :             :   gboolean bool_prop;
    1002                 :             :   gboolean anti_bool_prop;
    1003                 :             :   gint8 byte_prop;
    1004                 :             :   gint int16_prop;
    1005                 :             :   guint16 uint16_prop;
    1006                 :             :   gint int_prop;
    1007                 :             :   guint uint_prop;
    1008                 :             :   gint64 int64_prop;
    1009                 :             :   guint64 uint64_prop;
    1010                 :             :   gdouble double_prop;
    1011                 :             :   gchar *string_prop;
    1012                 :             :   gchar *no_read_prop;
    1013                 :             :   gchar *no_write_prop;
    1014                 :             :   gchar **strv_prop;
    1015                 :             :   guint enum_prop;
    1016                 :             :   guint flags_prop;
    1017                 :             : } TestObject;
    1018                 :             : 
    1019                 :             : typedef struct
    1020                 :             : {
    1021                 :             :   GObjectClass parent_class;
    1022                 :             : } TestObjectClass;
    1023                 :             : 
    1024                 :             : static GType test_object_get_type (void);
    1025                 :          20 : G_DEFINE_TYPE (TestObject, test_object, G_TYPE_OBJECT)
    1026                 :             : 
    1027                 :             : static void
    1028                 :          12 : test_object_init (TestObject *object)
    1029                 :             : {
    1030                 :          12 : }
    1031                 :             : 
    1032                 :             : static void
    1033                 :          10 : test_object_finalize (GObject *object)
    1034                 :             : {
    1035                 :          10 :   TestObject *testo = (TestObject*)object;
    1036                 :          10 :   g_strfreev (testo->strv_prop);
    1037                 :          10 :   g_free (testo->string_prop);
    1038                 :          10 :   G_OBJECT_CLASS (test_object_parent_class)->finalize (object);
    1039                 :          10 : }
    1040                 :             : 
    1041                 :             : static void
    1042                 :          69 : test_object_get_property (GObject    *object,
    1043                 :             :                           guint       prop_id,
    1044                 :             :                           GValue     *value,
    1045                 :             :                           GParamSpec *pspec)
    1046                 :             : {
    1047                 :          69 :   TestObject *test_object = (TestObject *)object;
    1048                 :             : 
    1049                 :          69 :   switch (prop_id)
    1050                 :             :     {
    1051                 :          19 :     case PROP_BOOL:
    1052                 :          19 :       g_value_set_boolean (value, test_object->bool_prop);
    1053                 :          19 :       break;
    1054                 :           2 :     case PROP_ANTI_BOOL:
    1055                 :           2 :       g_value_set_boolean (value, test_object->anti_bool_prop);
    1056                 :           2 :       break;
    1057                 :           2 :     case PROP_BYTE:
    1058                 :           2 :       g_value_set_schar (value, test_object->byte_prop);
    1059                 :           2 :       break;
    1060                 :           2 :     case PROP_UINT16:
    1061                 :           2 :       g_value_set_uint (value, test_object->uint16_prop);
    1062                 :           2 :       break;
    1063                 :           2 :     case PROP_INT16:
    1064                 :           2 :       g_value_set_int (value, test_object->int16_prop);
    1065                 :           2 :       break;
    1066                 :           6 :     case PROP_INT:
    1067                 :           6 :       g_value_set_int (value, test_object->int_prop);
    1068                 :           6 :       break;
    1069                 :          10 :     case PROP_UINT:
    1070                 :          10 :       g_value_set_uint (value, test_object->uint_prop);
    1071                 :          10 :       break;
    1072                 :           2 :     case PROP_INT64:
    1073                 :           2 :       g_value_set_int64 (value, test_object->int64_prop);
    1074                 :           2 :       break;
    1075                 :           5 :     case PROP_UINT64:
    1076                 :           5 :       g_value_set_uint64 (value, test_object->uint64_prop);
    1077                 :           5 :       break;
    1078                 :           4 :     case PROP_DOUBLE:
    1079                 :           4 :       g_value_set_double (value, test_object->double_prop);
    1080                 :           4 :       break;
    1081                 :           6 :     case PROP_STRING:
    1082                 :           6 :       g_value_set_string (value, test_object->string_prop);
    1083                 :           6 :       break;
    1084                 :           1 :     case PROP_NO_WRITE:
    1085                 :           1 :       g_value_set_string (value, test_object->no_write_prop);
    1086                 :           1 :       break;
    1087                 :           3 :     case PROP_STRV:
    1088                 :           3 :       g_value_set_boxed (value, test_object->strv_prop);
    1089                 :           3 :       break;
    1090                 :           3 :     case PROP_ENUM:
    1091                 :           3 :       g_value_set_enum (value, test_object->enum_prop);
    1092                 :           3 :       break;
    1093                 :           2 :     case PROP_FLAGS:
    1094                 :           2 :       g_value_set_flags (value, test_object->flags_prop);
    1095                 :           2 :       break;
    1096                 :           0 :     default:
    1097                 :           0 :       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
    1098                 :           0 :       break;
    1099                 :             :     }
    1100                 :          69 : }
    1101                 :             : 
    1102                 :             : static void
    1103                 :          89 : test_object_set_property (GObject      *object,
    1104                 :             :                           guint         prop_id,
    1105                 :             :                           const GValue *value,
    1106                 :             :                           GParamSpec   *pspec)
    1107                 :             : {
    1108                 :          89 :   TestObject *test_object = (TestObject *)object;
    1109                 :             : 
    1110                 :          89 :   switch (prop_id)
    1111                 :             :     {
    1112                 :          27 :     case PROP_BOOL:
    1113                 :          27 :       test_object->bool_prop = g_value_get_boolean (value);
    1114                 :          27 :       break;
    1115                 :           3 :     case PROP_ANTI_BOOL:
    1116                 :           3 :       test_object->anti_bool_prop = g_value_get_boolean (value);
    1117                 :           3 :       break;
    1118                 :           3 :     case PROP_BYTE:
    1119                 :           3 :       test_object->byte_prop = g_value_get_schar (value);
    1120                 :           3 :       break;
    1121                 :           3 :     case PROP_INT16:
    1122                 :           3 :       test_object->int16_prop = g_value_get_int (value);
    1123                 :           3 :       break;
    1124                 :           3 :     case PROP_UINT16:
    1125                 :           3 :       test_object->uint16_prop = g_value_get_uint (value);
    1126                 :           3 :       break;
    1127                 :           8 :     case PROP_INT:
    1128                 :           8 :       test_object->int_prop = g_value_get_int (value);
    1129                 :           8 :       break;
    1130                 :           9 :     case PROP_UINT:
    1131                 :           9 :       test_object->uint_prop = g_value_get_uint (value);
    1132                 :           9 :       break;
    1133                 :           3 :     case PROP_INT64:
    1134                 :           3 :       test_object->int64_prop = g_value_get_int64 (value);
    1135                 :           3 :       break;
    1136                 :           6 :     case PROP_UINT64:
    1137                 :           6 :       test_object->uint64_prop = g_value_get_uint64 (value);
    1138                 :           6 :       break;
    1139                 :           5 :     case PROP_DOUBLE:
    1140                 :           5 :       test_object->double_prop = g_value_get_double (value);
    1141                 :           5 :       break;
    1142                 :           7 :     case PROP_STRING:
    1143                 :           7 :       g_free (test_object->string_prop);
    1144                 :           7 :       test_object->string_prop = g_value_dup_string (value);
    1145                 :           7 :       break;
    1146                 :           1 :     case PROP_NO_READ:
    1147                 :           1 :       g_free (test_object->no_read_prop);
    1148                 :           1 :       test_object->no_read_prop = g_value_dup_string (value);
    1149                 :           1 :       break;
    1150                 :           4 :     case PROP_STRV:
    1151                 :           4 :       g_strfreev (test_object->strv_prop);
    1152                 :           4 :       test_object->strv_prop = g_value_dup_boxed (value);
    1153                 :           4 :       break;
    1154                 :           4 :     case PROP_ENUM:
    1155                 :           4 :       test_object->enum_prop = g_value_get_enum (value);
    1156                 :           4 :       break;
    1157                 :           3 :     case PROP_FLAGS:
    1158                 :           3 :       test_object->flags_prop = g_value_get_flags (value);
    1159                 :           3 :       break;
    1160                 :           0 :     default:
    1161                 :           0 :       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
    1162                 :           0 :       break;
    1163                 :             :     }
    1164                 :          89 : }
    1165                 :             : 
    1166                 :             : static GType
    1167                 :           4 : test_enum_get_type (void)
    1168                 :             : {
    1169                 :             :   static GType define_type_id = 0;
    1170                 :             : 
    1171                 :           4 :   if (g_once_init_enter_pointer (&define_type_id))
    1172                 :             :     {
    1173                 :             :       static const GEnumValue values[] = {
    1174                 :             :         { TEST_ENUM_FOO, "TEST_ENUM_FOO", "foo" },
    1175                 :             :         { TEST_ENUM_BAR, "TEST_ENUM_BAR", "bar" },
    1176                 :             :         { TEST_ENUM_BAZ, "TEST_ENUM_BAZ", "baz" },
    1177                 :             :         { TEST_ENUM_QUUX, "TEST_ENUM_QUUX", "quux" },
    1178                 :             :         { 0, NULL, NULL }
    1179                 :             :       };
    1180                 :             : 
    1181                 :           4 :       GType type_id = g_enum_register_static ("TestEnum", values);
    1182                 :           4 :       g_once_init_leave_pointer (&define_type_id, type_id);
    1183                 :             :     }
    1184                 :             : 
    1185                 :           4 :   return define_type_id;
    1186                 :             : }
    1187                 :             : 
    1188                 :             : static GType
    1189                 :           4 : test_flags_get_type (void)
    1190                 :             : {
    1191                 :             :   static GType define_type_id = 0;
    1192                 :             : 
    1193                 :           4 :   if (g_once_init_enter_pointer (&define_type_id))
    1194                 :             :     {
    1195                 :             :       static const GFlagsValue values[] = {
    1196                 :             :         { TEST_FLAGS_NONE, "TEST_FLAGS_NONE", "none" },
    1197                 :             :         { TEST_FLAGS_MOURNING, "TEST_FLAGS_MOURNING", "mourning" },
    1198                 :             :         { TEST_FLAGS_LAUGHING, "TEST_FLAGS_LAUGHING", "laughing" },
    1199                 :             :         { TEST_FLAGS_WALKING, "TEST_FLAGS_WALKING", "walking" },
    1200                 :             :         { 0, NULL, NULL }
    1201                 :             :       };
    1202                 :             : 
    1203                 :           4 :       GType type_id = g_flags_register_static ("TestFlags", values);
    1204                 :           4 :       g_once_init_leave_pointer (&define_type_id, type_id);
    1205                 :             :     }
    1206                 :             : 
    1207                 :           4 :   return define_type_id;
    1208                 :             : }
    1209                 :             : 
    1210                 :             : static void
    1211                 :           4 : test_object_class_init (TestObjectClass *class)
    1212                 :             : {
    1213                 :           4 :   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
    1214                 :             : 
    1215                 :           4 :   gobject_class->get_property = test_object_get_property;
    1216                 :           4 :   gobject_class->set_property = test_object_set_property;
    1217                 :           4 :   gobject_class->finalize = test_object_finalize;
    1218                 :             : 
    1219                 :           4 :   g_object_class_install_property (gobject_class, PROP_BOOL,
    1220                 :             :     g_param_spec_boolean ("bool", "", "", FALSE, G_PARAM_READWRITE));
    1221                 :           4 :   g_object_class_install_property (gobject_class, PROP_ANTI_BOOL,
    1222                 :             :     g_param_spec_boolean ("anti-bool", "", "", FALSE, G_PARAM_READWRITE));
    1223                 :           4 :   g_object_class_install_property (gobject_class, PROP_BYTE,
    1224                 :             :     g_param_spec_char ("byte", "", "", G_MININT8, G_MAXINT8, 0, G_PARAM_READWRITE));
    1225                 :           4 :   g_object_class_install_property (gobject_class, PROP_INT16,
    1226                 :             :     g_param_spec_int ("int16", "", "", -G_MAXINT16, G_MAXINT16, 0, G_PARAM_READWRITE));
    1227                 :           4 :   g_object_class_install_property (gobject_class, PROP_UINT16,
    1228                 :             :     g_param_spec_uint ("uint16", "", "", 0, G_MAXUINT16, 0, G_PARAM_READWRITE));
    1229                 :           4 :   g_object_class_install_property (gobject_class, PROP_INT,
    1230                 :             :     g_param_spec_int ("int", "", "", G_MININT, G_MAXINT, 0, G_PARAM_READWRITE));
    1231                 :           4 :   g_object_class_install_property (gobject_class, PROP_UINT,
    1232                 :             :     g_param_spec_uint ("uint", "", "", 0, G_MAXUINT, 0, G_PARAM_READWRITE));
    1233                 :           4 :   g_object_class_install_property (gobject_class, PROP_INT64,
    1234                 :             :     g_param_spec_int64 ("int64", "", "", G_MININT64, G_MAXINT64, 0, G_PARAM_READWRITE));
    1235                 :           4 :   g_object_class_install_property (gobject_class, PROP_UINT64,
    1236                 :             :     g_param_spec_uint64 ("uint64", "", "", 0, G_MAXUINT64, 0, G_PARAM_READWRITE));
    1237                 :           4 :   g_object_class_install_property (gobject_class, PROP_DOUBLE,
    1238                 :             :     g_param_spec_double ("double", "", "", -G_MAXDOUBLE, G_MAXDOUBLE, 0.0, G_PARAM_READWRITE));
    1239                 :           4 :   g_object_class_install_property (gobject_class, PROP_STRING,
    1240                 :             :     g_param_spec_string ("string", "", "", NULL, G_PARAM_READWRITE));
    1241                 :           4 :   g_object_class_install_property (gobject_class, PROP_NO_WRITE,
    1242                 :             :     g_param_spec_string ("no-write", "", "", NULL, G_PARAM_READABLE));
    1243                 :           4 :   g_object_class_install_property (gobject_class, PROP_NO_READ,
    1244                 :             :     g_param_spec_string ("no-read", "", "", NULL, G_PARAM_WRITABLE));
    1245                 :           4 :   g_object_class_install_property (gobject_class, PROP_STRV,
    1246                 :             :     g_param_spec_boxed ("strv", "", "", G_TYPE_STRV, G_PARAM_READWRITE));
    1247                 :           4 :   g_object_class_install_property (gobject_class, PROP_ENUM,
    1248                 :             :     g_param_spec_enum ("enum", "", "", test_enum_get_type (), TEST_ENUM_FOO, G_PARAM_READWRITE));
    1249                 :           4 :   g_object_class_install_property (gobject_class, PROP_FLAGS,
    1250                 :             :     g_param_spec_flags ("flags", "", "", test_flags_get_type (), TEST_FLAGS_NONE, G_PARAM_READWRITE));
    1251                 :           4 : }
    1252                 :             : 
    1253                 :             : static TestObject *
    1254                 :          12 : test_object_new (void)
    1255                 :             : {
    1256                 :          12 :   return (TestObject*)g_object_new (test_object_get_type (), NULL);
    1257                 :             : }
    1258                 :             : 
    1259                 :             : /* Test basic binding functionality for simple types.
    1260                 :             :  * Verify that with bidirectional bindings, changes on either side
    1261                 :             :  * are notified on the other end.
    1262                 :             :  */
    1263                 :             : static void
    1264                 :           1 : test_simple_binding (void)
    1265                 :             : {
    1266                 :             :   TestObject *obj;
    1267                 :             :   GSettings *settings;
    1268                 :             :   gboolean b;
    1269                 :             :   gchar y;
    1270                 :             :   gint i;
    1271                 :             :   guint u;
    1272                 :             :   gint16 n;
    1273                 :             :   guint16 q;
    1274                 :             :   gint n2;
    1275                 :             :   guint q2;
    1276                 :             :   gint64 i64;
    1277                 :             :   guint64 u64;
    1278                 :             :   gdouble d;
    1279                 :             :   gchar *s;
    1280                 :             :   GVariant *value;
    1281                 :             :   gchar **strv;
    1282                 :             : 
    1283                 :           1 :   settings = g_settings_new ("org.gtk.test.binding");
    1284                 :           1 :   obj = test_object_new ();
    1285                 :             : 
    1286                 :           1 :   g_settings_bind (settings, "bool", obj, "bool", G_SETTINGS_BIND_DEFAULT);
    1287                 :           1 :   g_object_set (obj, "bool", TRUE, NULL);
    1288                 :           1 :   g_assert_cmpint (g_settings_get_boolean (settings, "bool"), ==, TRUE);
    1289                 :             : 
    1290                 :           1 :   g_settings_set_boolean (settings, "bool", FALSE);
    1291                 :           1 :   b = TRUE;
    1292                 :           1 :   g_object_get (obj, "bool", &b, NULL);
    1293                 :           1 :   g_assert_cmpint (b, ==, FALSE);
    1294                 :             : 
    1295                 :           1 :   g_settings_bind (settings, "anti-bool", obj, "anti-bool",
    1296                 :             :                    G_SETTINGS_BIND_INVERT_BOOLEAN);
    1297                 :           1 :   g_object_set (obj, "anti-bool", FALSE, NULL);
    1298                 :           1 :   g_assert_cmpint (g_settings_get_boolean (settings, "anti-bool"), ==, TRUE);
    1299                 :             : 
    1300                 :           1 :   g_settings_set_boolean (settings, "anti-bool", FALSE);
    1301                 :           1 :   b = FALSE;
    1302                 :           1 :   g_object_get (obj, "anti-bool", &b, NULL);
    1303                 :           1 :   g_assert_cmpint (b, ==, TRUE);
    1304                 :             : 
    1305                 :           1 :   g_settings_bind (settings, "byte", obj, "byte", G_SETTINGS_BIND_DEFAULT);
    1306                 :             : 
    1307                 :           1 :   g_object_set (obj, "byte", 123, NULL);
    1308                 :           1 :   y = 'c';
    1309                 :           1 :   g_settings_get (settings, "byte", "y", &y);
    1310                 :           1 :   g_assert_cmpint (y, ==, 123);
    1311                 :             : 
    1312                 :           1 :   g_settings_set (settings, "byte", "y", 54);
    1313                 :           1 :   y = 'c';
    1314                 :           1 :   g_object_get (obj, "byte", &y, NULL);
    1315                 :           1 :   g_assert_cmpint (y, ==, 54);
    1316                 :             : 
    1317                 :           1 :   g_settings_bind (settings, "int16", obj, "int16", G_SETTINGS_BIND_DEFAULT);
    1318                 :             : 
    1319                 :           1 :   g_object_set (obj, "int16", 1234, NULL);
    1320                 :           1 :   n = 4321;
    1321                 :           1 :   g_settings_get (settings, "int16", "n", &n);
    1322                 :           1 :   g_assert_cmpint (n, ==, 1234);
    1323                 :             : 
    1324                 :           1 :   g_settings_set (settings, "int16", "n", 4321);
    1325                 :           1 :   n2 = 1111;
    1326                 :           1 :   g_object_get (obj, "int16", &n2, NULL);
    1327                 :           1 :   g_assert_cmpint (n2, ==, 4321);
    1328                 :             : 
    1329                 :           1 :   g_settings_bind (settings, "uint16", obj, "uint16", G_SETTINGS_BIND_DEFAULT);
    1330                 :             : 
    1331                 :           1 :   g_object_set (obj, "uint16", (guint16) G_MAXUINT16, NULL);
    1332                 :           1 :   q = 1111;
    1333                 :           1 :   g_settings_get (settings, "uint16", "q", &q);
    1334                 :           1 :   g_assert_cmpuint (q, ==, G_MAXUINT16);
    1335                 :             : 
    1336                 :           1 :   g_settings_set (settings, "uint16", "q", (guint16) G_MAXINT16);
    1337                 :           1 :   q2 = 1111;
    1338                 :           1 :   g_object_get (obj, "uint16", &q2, NULL);
    1339                 :           1 :   g_assert_cmpuint (q2, ==, (guint16) G_MAXINT16);
    1340                 :             : 
    1341                 :           1 :   g_settings_bind (settings, "int", obj, "int", G_SETTINGS_BIND_DEFAULT);
    1342                 :             : 
    1343                 :           1 :   g_object_set (obj, "int", 12345, NULL);
    1344                 :           1 :   g_assert_cmpint (g_settings_get_int (settings, "int"), ==, 12345);
    1345                 :             : 
    1346                 :           1 :   g_settings_set_int (settings, "int", 54321);
    1347                 :           1 :   i = 1111;
    1348                 :           1 :   g_object_get (obj, "int", &i, NULL);
    1349                 :           1 :   g_assert_cmpint (i, ==, 54321);
    1350                 :             : 
    1351                 :           1 :   g_settings_bind (settings, "uint", obj, "uint", G_SETTINGS_BIND_DEFAULT);
    1352                 :             : 
    1353                 :           1 :   g_object_set (obj, "uint", 12345, NULL);
    1354                 :           1 :   g_assert_cmpuint (g_settings_get_uint (settings, "uint"), ==, 12345);
    1355                 :             : 
    1356                 :           1 :   g_settings_set_uint (settings, "uint", 54321);
    1357                 :           1 :   u = 1111;
    1358                 :           1 :   g_object_get (obj, "uint", &u, NULL);
    1359                 :           1 :   g_assert_cmpuint (u, ==, 54321);
    1360                 :             : 
    1361                 :           1 :   g_settings_bind (settings, "uint64", obj, "uint64", G_SETTINGS_BIND_DEFAULT);
    1362                 :             : 
    1363                 :           1 :   g_object_set (obj, "uint64", (guint64) 12345, NULL);
    1364                 :           1 :   g_assert_cmpuint (g_settings_get_uint64 (settings, "uint64"), ==, 12345);
    1365                 :             : 
    1366                 :           1 :   g_settings_set_uint64 (settings, "uint64", 54321);
    1367                 :           1 :   u64 = 1111;
    1368                 :           1 :   g_object_get (obj, "uint64", &u64, NULL);
    1369                 :           1 :   g_assert_cmpuint (u64, ==, 54321);
    1370                 :             : 
    1371                 :           1 :   g_settings_bind (settings, "int64", obj, "int64", G_SETTINGS_BIND_DEFAULT);
    1372                 :             : 
    1373                 :           1 :   g_object_set (obj, "int64", (gint64) G_MAXINT64, NULL);
    1374                 :           1 :   i64 = 1111;
    1375                 :           1 :   g_settings_get (settings, "int64", "x", &i64);
    1376                 :           1 :   g_assert_cmpint (i64, ==, G_MAXINT64);
    1377                 :             : 
    1378                 :           1 :   g_settings_set (settings, "int64", "x", (gint64) G_MININT64);
    1379                 :           1 :   i64 = 1111;
    1380                 :           1 :   g_object_get (obj, "int64", &i64, NULL);
    1381                 :           1 :   g_assert_cmpint (i64, ==, G_MININT64);
    1382                 :             : 
    1383                 :           1 :   g_settings_bind (settings, "uint64", obj, "uint64", G_SETTINGS_BIND_DEFAULT);
    1384                 :             : 
    1385                 :           1 :   g_object_set (obj, "uint64", (guint64) G_MAXUINT64, NULL);
    1386                 :           1 :   u64 = 1111;
    1387                 :           1 :   g_settings_get (settings, "uint64", "t", &u64);
    1388                 :           1 :   g_assert_cmpuint (u64, ==, G_MAXUINT64);
    1389                 :             : 
    1390                 :           1 :   g_settings_set (settings, "uint64", "t", (guint64) G_MAXINT64);
    1391                 :           1 :   u64 = 1111;
    1392                 :           1 :   g_object_get (obj, "uint64", &u64, NULL);
    1393                 :           1 :   g_assert_cmpuint (u64, ==, (guint64) G_MAXINT64);
    1394                 :             : 
    1395                 :           1 :   g_settings_bind (settings, "string", obj, "string", G_SETTINGS_BIND_DEFAULT);
    1396                 :             : 
    1397                 :           1 :   g_object_set (obj, "string", "bu ba", NULL);
    1398                 :           1 :   s = g_settings_get_string (settings, "string");
    1399                 :           1 :   g_assert_cmpstr (s, ==, "bu ba");
    1400                 :           1 :   g_free (s);
    1401                 :             : 
    1402                 :           1 :   g_settings_set_string (settings, "string", "bla bla");
    1403                 :           1 :   g_object_get (obj, "string", &s, NULL);
    1404                 :           1 :   g_assert_cmpstr (s, ==, "bla bla");
    1405                 :           1 :   g_free (s);
    1406                 :             : 
    1407                 :           1 :   g_settings_bind (settings, "chararray", obj, "string", G_SETTINGS_BIND_DEFAULT);
    1408                 :             : 
    1409                 :           1 :   g_object_set (obj, "string", "non-unicode:\315", NULL);
    1410                 :           1 :   value = g_settings_get_value (settings, "chararray");
    1411                 :           1 :   g_assert_cmpstr (g_variant_get_bytestring (value), ==, "non-unicode:\315");
    1412                 :           1 :   g_variant_unref (value);
    1413                 :             : 
    1414                 :           1 :   g_settings_bind (settings, "double", obj, "double", G_SETTINGS_BIND_DEFAULT);
    1415                 :             : 
    1416                 :           1 :   g_object_set (obj, "double", G_MAXFLOAT, NULL);
    1417                 :           1 :   g_assert_cmpfloat (g_settings_get_double (settings, "double"), ==, G_MAXFLOAT);
    1418                 :             : 
    1419                 :           1 :   g_settings_set_double (settings, "double", G_MINFLOAT);
    1420                 :           1 :   d = 1.0;
    1421                 :           1 :   g_object_get (obj, "double", &d, NULL);
    1422                 :           1 :   g_assert_cmpfloat (d, ==, G_MINFLOAT);
    1423                 :             : 
    1424                 :           1 :   g_object_set (obj, "double", G_MAXDOUBLE, NULL);
    1425                 :           1 :   g_assert_cmpfloat (g_settings_get_double (settings, "double"), ==, G_MAXDOUBLE);
    1426                 :             : 
    1427                 :           1 :   g_settings_set_double (settings, "double", -G_MINDOUBLE);
    1428                 :           1 :   d = 1.0;
    1429                 :           1 :   g_object_get (obj, "double", &d, NULL);
    1430                 :           1 :   g_assert_cmpfloat (d, ==, -G_MINDOUBLE);
    1431                 :             : 
    1432                 :           1 :   strv = g_strsplit ("plastic bag,middle class,polyethylene", ",", 0);
    1433                 :           1 :   g_settings_bind (settings, "strv", obj, "strv", G_SETTINGS_BIND_DEFAULT);
    1434                 :           1 :   g_object_set (obj, "strv", strv, NULL);
    1435                 :           1 :   g_strfreev (strv);
    1436                 :           1 :   strv = g_settings_get_strv (settings, "strv");
    1437                 :           1 :   s = g_strjoinv (",", strv);
    1438                 :           1 :   g_assert_cmpstr (s, ==, "plastic bag,middle class,polyethylene");
    1439                 :           1 :   g_strfreev (strv);
    1440                 :           1 :   g_free (s);
    1441                 :           1 :   strv = g_strsplit ("decaffeinate,unleaded,keep all surfaces clean", ",", 0);
    1442                 :           1 :   g_settings_set_strv (settings, "strv", (const gchar **) strv);
    1443                 :           1 :   g_strfreev (strv);
    1444                 :           1 :   g_object_get (obj, "strv", &strv, NULL);
    1445                 :           1 :   s = g_strjoinv (",", strv);
    1446                 :           1 :   g_assert_cmpstr (s, ==, "decaffeinate,unleaded,keep all surfaces clean");
    1447                 :           1 :   g_strfreev (strv);
    1448                 :           1 :   g_free (s);
    1449                 :           1 :   g_settings_set_strv (settings, "strv", NULL);
    1450                 :           1 :   g_object_get (obj, "strv", &strv, NULL);
    1451                 :           1 :   g_assert_nonnull (strv);
    1452                 :           1 :   g_assert_cmpint (g_strv_length (strv), ==, 0);
    1453                 :           1 :   g_strfreev (strv);
    1454                 :             : 
    1455                 :           1 :   g_settings_bind (settings, "enum", obj, "enum", G_SETTINGS_BIND_DEFAULT);
    1456                 :           1 :   g_object_set (obj, "enum", TEST_ENUM_BAZ, NULL);
    1457                 :           1 :   s = g_settings_get_string (settings, "enum");
    1458                 :           1 :   g_assert_cmpstr (s, ==, "baz");
    1459                 :           1 :   g_free (s);
    1460                 :           1 :   g_assert_cmpint (g_settings_get_enum (settings, "enum"), ==, TEST_ENUM_BAZ);
    1461                 :             : 
    1462                 :           1 :   g_settings_set_enum (settings, "enum", TEST_ENUM_QUUX);
    1463                 :           1 :   i = 230;
    1464                 :           1 :   g_object_get (obj, "enum", &i, NULL);
    1465                 :           1 :   g_assert_cmpint (i, ==, TEST_ENUM_QUUX);
    1466                 :             : 
    1467                 :           1 :   g_settings_set_string (settings, "enum", "baz");
    1468                 :           1 :   i = 230;
    1469                 :           1 :   g_object_get (obj, "enum", &i, NULL);
    1470                 :           1 :   g_assert_cmpint (i, ==, TEST_ENUM_BAZ);
    1471                 :             : 
    1472                 :           1 :   g_settings_bind (settings, "flags", obj, "flags", G_SETTINGS_BIND_DEFAULT);
    1473                 :           1 :   g_object_set (obj, "flags", TEST_FLAGS_MOURNING, NULL);
    1474                 :           1 :   strv = g_settings_get_strv (settings, "flags");
    1475                 :           1 :   g_assert_cmpint (g_strv_length (strv), ==, 1);
    1476                 :           1 :   g_assert_cmpstr (strv[0], ==, "mourning");
    1477                 :           1 :   g_strfreev (strv);
    1478                 :             : 
    1479                 :           1 :   g_assert_cmpint (g_settings_get_flags (settings, "flags"), ==, TEST_FLAGS_MOURNING);
    1480                 :             : 
    1481                 :           1 :   g_settings_set_flags (settings, "flags", TEST_FLAGS_MOURNING | TEST_FLAGS_WALKING);
    1482                 :           1 :   i = 230;
    1483                 :           1 :   g_object_get (obj, "flags", &i, NULL);
    1484                 :           1 :   g_assert_cmpint (i, ==, TEST_FLAGS_MOURNING | TEST_FLAGS_WALKING);
    1485                 :             : 
    1486                 :           1 :   g_settings_bind (settings, "uint", obj, "uint", G_SETTINGS_BIND_DEFAULT);
    1487                 :             : 
    1488                 :           1 :   g_object_set (obj, "uint", 12345, NULL);
    1489                 :           1 :   g_assert_cmpuint (g_settings_get_uint (settings, "uint"), ==, 12345);
    1490                 :             : 
    1491                 :           1 :   g_settings_set_uint (settings, "uint", 54321);
    1492                 :           1 :   u = 1111;
    1493                 :           1 :   g_object_get (obj, "uint", &u, NULL);
    1494                 :           1 :   g_assert_cmpuint (u, ==, 54321);
    1495                 :             : 
    1496                 :           1 :   g_settings_bind (settings, "range", obj, "uint", G_SETTINGS_BIND_DEFAULT);
    1497                 :           1 :   g_object_set (obj, "uint", 22, NULL);
    1498                 :           1 :   u = 1111;
    1499                 :           1 :   g_assert_cmpuint (g_settings_get_uint (settings, "range"), ==, 22);
    1500                 :           1 :   g_object_get (obj, "uint", &u, NULL);
    1501                 :           1 :   g_assert_cmpuint (u, ==, 22);
    1502                 :             : 
    1503                 :           1 :   g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
    1504                 :             :                          "* is out of schema-specified range for*");
    1505                 :           1 :   g_object_set (obj, "uint", 45, NULL);
    1506                 :           1 :   g_test_assert_expected_messages ();
    1507                 :           1 :   u = 1111;
    1508                 :           1 :   g_object_get (obj, "uint", &u, NULL);
    1509                 :           1 :   g_assert_cmpuint (g_settings_get_uint (settings, "range"), ==, 22);
    1510                 :             :   /* The value of the object is currently not reset back to its initial value
    1511                 :             :   g_assert_cmpuint (u, ==, 22); */
    1512                 :             : 
    1513                 :           1 :   g_object_unref (obj);
    1514                 :           1 :   g_object_unref (settings);
    1515                 :           1 : }
    1516                 :             : 
    1517                 :             : static void
    1518                 :           1 : test_unbind (void)
    1519                 :             : {
    1520                 :             :   TestObject *obj;
    1521                 :             :   GSettings *settings;
    1522                 :             : 
    1523                 :           1 :   settings = g_settings_new ("org.gtk.test.binding");
    1524                 :           1 :   obj = test_object_new ();
    1525                 :             : 
    1526                 :           1 :   g_settings_bind (settings, "int", obj, "int", G_SETTINGS_BIND_DEFAULT);
    1527                 :             : 
    1528                 :           1 :   g_object_set (obj, "int", 12345, NULL);
    1529                 :           1 :   g_assert_cmpint (g_settings_get_int (settings, "int"), ==, 12345);
    1530                 :             : 
    1531                 :           1 :   g_settings_unbind (obj, "int");
    1532                 :             : 
    1533                 :           1 :   g_object_set (obj, "int", 54321, NULL);
    1534                 :           1 :   g_assert_cmpint (g_settings_get_int (settings, "int"), ==, 12345);
    1535                 :             : 
    1536                 :           1 :   g_object_unref (obj);
    1537                 :           1 :   g_object_unref (settings);
    1538                 :           1 : }
    1539                 :             : 
    1540                 :             : static void
    1541                 :           1 : test_bind_writable (void)
    1542                 :             : {
    1543                 :             :   TestObject *obj;
    1544                 :             :   GSettings *settings;
    1545                 :             :   gboolean b;
    1546                 :             : 
    1547                 :           1 :   settings = g_settings_new ("org.gtk.test.binding");
    1548                 :           1 :   obj = test_object_new ();
    1549                 :             : 
    1550                 :           1 :   g_object_set (obj, "bool", FALSE, NULL);
    1551                 :             : 
    1552                 :           1 :   g_settings_bind_writable (settings, "int", obj, "bool", FALSE);
    1553                 :             : 
    1554                 :           1 :   g_object_get (obj, "bool", &b, NULL);
    1555                 :           1 :   g_assert_true (b);
    1556                 :             : 
    1557                 :           1 :   g_settings_unbind (obj, "bool");
    1558                 :             : 
    1559                 :           1 :   g_settings_bind_writable (settings, "int", obj, "bool", TRUE);
    1560                 :             : 
    1561                 :           1 :   g_object_get (obj, "bool", &b, NULL);
    1562                 :           1 :   g_assert_false (b);
    1563                 :             : 
    1564                 :           1 :   g_object_unref (obj);
    1565                 :           1 :   g_object_unref (settings);
    1566                 :           1 : }
    1567                 :             : 
    1568                 :             : /* Test one-way bindings.
    1569                 :             :  * Verify that changes on one side show up on the other,
    1570                 :             :  * but not vice versa
    1571                 :             :  */
    1572                 :             : static void
    1573                 :           1 : test_directional_binding (void)
    1574                 :             : {
    1575                 :             :   TestObject *obj;
    1576                 :             :   GSettings *settings;
    1577                 :             :   gboolean b;
    1578                 :             :   gint i;
    1579                 :             : 
    1580                 :           1 :   settings = g_settings_new ("org.gtk.test.binding");
    1581                 :           1 :   obj = test_object_new ();
    1582                 :             : 
    1583                 :           1 :   g_object_set (obj, "bool", FALSE, NULL);
    1584                 :           1 :   g_settings_set_boolean (settings, "bool", FALSE);
    1585                 :             : 
    1586                 :           1 :   g_settings_bind (settings, "bool", obj, "bool", G_SETTINGS_BIND_GET);
    1587                 :             : 
    1588                 :           1 :   g_settings_set_boolean (settings, "bool", TRUE);
    1589                 :           1 :   g_object_get (obj, "bool", &b, NULL);
    1590                 :           1 :   g_assert_cmpint (b, ==, TRUE);
    1591                 :             : 
    1592                 :           1 :   g_object_set (obj, "bool", FALSE, NULL);
    1593                 :           1 :   g_assert_cmpint (g_settings_get_boolean (settings, "bool"), ==, TRUE);
    1594                 :             : 
    1595                 :           1 :   g_object_set (obj, "int", 20, NULL);
    1596                 :           1 :   g_settings_set_int (settings, "int", 20);
    1597                 :             : 
    1598                 :           1 :   g_settings_bind (settings, "int", obj, "int", G_SETTINGS_BIND_SET);
    1599                 :             : 
    1600                 :           1 :   g_object_set (obj, "int", 32, NULL);
    1601                 :           1 :   g_assert_cmpint (g_settings_get_int (settings, "int"), ==, 32);
    1602                 :             : 
    1603                 :           1 :   g_settings_set_int (settings, "int", 20);
    1604                 :           1 :   g_object_get (obj, "int", &i, NULL);
    1605                 :           1 :   g_assert_cmpint (i, ==, 32);
    1606                 :             : 
    1607                 :           1 :   g_object_unref (obj);
    1608                 :           1 :   g_object_unref (settings);
    1609                 :           1 : }
    1610                 :             : 
    1611                 :             : /* Test that type mismatch is caught when creating a binding */
    1612                 :             : static void
    1613                 :           1 : test_typesafe_binding (void)
    1614                 :             : {
    1615                 :           1 :   if (!g_test_undefined ())
    1616                 :           0 :     return;
    1617                 :             : 
    1618                 :           1 :   if (g_test_subprocess ())
    1619                 :             :     {
    1620                 :             :       TestObject *obj;
    1621                 :             :       GSettings *settings;
    1622                 :             : 
    1623                 :           0 :       settings = g_settings_new ("org.gtk.test.binding");
    1624                 :           0 :       obj = test_object_new ();
    1625                 :             : 
    1626                 :           0 :       g_settings_bind (settings, "string", obj, "int", G_SETTINGS_BIND_DEFAULT);
    1627                 :             : 
    1628                 :           0 :       g_object_unref (obj);
    1629                 :           0 :       g_object_unref (settings);
    1630                 :           0 :       return;
    1631                 :             :     }
    1632                 :           1 :   g_test_trap_subprocess (NULL, 0, G_TEST_SUBPROCESS_DEFAULT);
    1633                 :           1 :   g_test_trap_assert_failed ();
    1634                 :           1 :   g_test_trap_assert_stderr ("*not compatible*");
    1635                 :             : }
    1636                 :             : 
    1637                 :             : static gboolean
    1638                 :           9 : string_to_bool (GValue   *value,
    1639                 :             :                 GVariant *variant,
    1640                 :             :                 gpointer  user_data)
    1641                 :             : {
    1642                 :             :   const gchar *s;
    1643                 :             : 
    1644                 :           9 :   s = g_variant_get_string (variant, NULL);
    1645                 :           9 :   g_value_set_boolean (value, g_strcmp0 (s, "true") == 0);
    1646                 :             : 
    1647                 :           9 :   return TRUE;
    1648                 :             : }
    1649                 :             : 
    1650                 :             : static GVariant *
    1651                 :           5 : bool_to_string (const GValue       *value,
    1652                 :             :                 const GVariantType *expected_type,
    1653                 :             :                 gpointer            user_data)
    1654                 :             : {
    1655                 :           5 :   if (g_value_get_boolean (value))
    1656                 :           3 :     return g_variant_new_string ("true");
    1657                 :             :   else
    1658                 :           2 :     return g_variant_new_string ("false");
    1659                 :             : }
    1660                 :             : 
    1661                 :             : static GVariant *
    1662                 :           2 : bool_to_bool (const GValue       *value,
    1663                 :             :               const GVariantType *expected_type,
    1664                 :             :               gpointer            user_data)
    1665                 :             : {
    1666                 :           2 :   return g_variant_new_boolean (g_value_get_boolean (value));
    1667                 :             : }
    1668                 :             : 
    1669                 :             : /* Test custom bindings.
    1670                 :             :  * Translate strings to booleans and back
    1671                 :             :  */
    1672                 :             : static void
    1673                 :           1 : test_custom_binding (void)
    1674                 :             : {
    1675                 :             :   TestObject *obj;
    1676                 :             :   GSettings *settings;
    1677                 :             :   gchar *s;
    1678                 :             :   gboolean b;
    1679                 :             : 
    1680                 :           1 :   settings = g_settings_new ("org.gtk.test.binding");
    1681                 :           1 :   obj = test_object_new ();
    1682                 :             : 
    1683                 :           1 :   g_settings_set_string (settings, "string", "true");
    1684                 :             : 
    1685                 :           1 :   g_settings_bind_with_mapping (settings, "string",
    1686                 :             :                                 obj, "bool",
    1687                 :             :                                 G_SETTINGS_BIND_DEFAULT,
    1688                 :             :                                 string_to_bool,
    1689                 :             :                                 bool_to_string,
    1690                 :             :                                 NULL, NULL);
    1691                 :             : 
    1692                 :           1 :   g_settings_set_string (settings, "string", "false");
    1693                 :           1 :   g_object_get (obj, "bool", &b, NULL);
    1694                 :           1 :   g_assert_cmpint (b, ==, FALSE);
    1695                 :             : 
    1696                 :           1 :   g_settings_set_string (settings, "string", "not true");
    1697                 :           1 :   g_object_get (obj, "bool", &b, NULL);
    1698                 :           1 :   g_assert_cmpint (b, ==, FALSE);
    1699                 :             : 
    1700                 :           1 :   g_object_set (obj, "bool", TRUE, NULL);
    1701                 :           1 :   s = g_settings_get_string (settings, "string");
    1702                 :           1 :   g_assert_cmpstr (s, ==, "true");
    1703                 :           1 :   g_free (s);
    1704                 :             : 
    1705                 :           1 :   g_settings_bind_with_mapping (settings, "string",
    1706                 :             :                                 obj, "bool",
    1707                 :             :                                 G_SETTINGS_BIND_DEFAULT,
    1708                 :             :                                 string_to_bool, bool_to_bool,
    1709                 :             :                                 NULL, NULL);
    1710                 :           1 :   g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
    1711                 :             :                          "*binding mapping function for key 'string' returned"
    1712                 :             :                          " GVariant of type 'b' when type 's' was requested*");
    1713                 :           1 :   g_object_set (obj, "bool", FALSE, NULL);
    1714                 :           1 :   g_test_assert_expected_messages ();
    1715                 :             : 
    1716                 :           1 :   g_object_unref (obj);
    1717                 :           1 :   g_object_unref (settings);
    1718                 :           1 : }
    1719                 :             : 
    1720                 :             : /* Same test as above, but with closures
    1721                 :             :  */
    1722                 :             : static void
    1723                 :           1 : test_bind_with_mapping_closures (void)
    1724                 :             : {
    1725                 :             :   TestObject *obj;
    1726                 :             :   GSettings *settings;
    1727                 :             :   char *s;
    1728                 :             :   gboolean b;
    1729                 :             :   GClosure *get;
    1730                 :             :   GClosure *set;
    1731                 :             : 
    1732                 :           1 :   settings = g_settings_new ("org.gtk.test.binding");
    1733                 :           1 :   obj = test_object_new ();
    1734                 :             : 
    1735                 :           1 :   g_settings_set_string (settings, "string", "true");
    1736                 :             : 
    1737                 :           1 :   get = g_cclosure_new (G_CALLBACK (string_to_bool), NULL, NULL);
    1738                 :           1 :   set = g_cclosure_new (G_CALLBACK (bool_to_string), NULL, NULL);
    1739                 :             : 
    1740                 :           1 :   g_settings_bind_with_mapping_closures (settings, "string",
    1741                 :           1 :                                          G_OBJECT (obj), "bool",
    1742                 :             :                                          G_SETTINGS_BIND_DEFAULT, get, set);
    1743                 :             : 
    1744                 :           1 :   g_settings_set_string (settings, "string", "false");
    1745                 :           1 :   g_object_get (obj, "bool", &b, NULL);
    1746                 :           1 :   g_assert_cmpint (b, ==, FALSE);
    1747                 :             : 
    1748                 :           1 :   g_settings_set_string (settings, "string", "not true");
    1749                 :           1 :   g_object_get (obj, "bool", &b, NULL);
    1750                 :           1 :   g_assert_cmpint (b, ==, FALSE);
    1751                 :             : 
    1752                 :           1 :   g_object_set (obj, "bool", TRUE, NULL);
    1753                 :           1 :   s = g_settings_get_string (settings, "string");
    1754                 :           1 :   g_assert_cmpstr (s, ==, "true");
    1755                 :           1 :   g_free (s);
    1756                 :             : 
    1757                 :           1 :   set = g_cclosure_new (G_CALLBACK (bool_to_bool), NULL, NULL);
    1758                 :             : 
    1759                 :           1 :   g_settings_bind_with_mapping_closures (settings, "string",
    1760                 :           1 :                                          G_OBJECT (obj), "bool",
    1761                 :             :                                          G_SETTINGS_BIND_DEFAULT, get, set);
    1762                 :           1 :   g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
    1763                 :             :                          "*binding mapping function for key 'string' returned"
    1764                 :             :                          " GVariant of type 'b' when type 's' was requested*");
    1765                 :           1 :   g_object_set (obj, "bool", FALSE, NULL);
    1766                 :           1 :   g_test_assert_expected_messages ();
    1767                 :             : 
    1768                 :           1 :   g_object_unref (obj);
    1769                 :           1 :   g_object_unref (settings);
    1770                 :           1 : }
    1771                 :             : 
    1772                 :             : typedef struct
    1773                 :             : {
    1774                 :             :   gboolean get_called;
    1775                 :             :   gboolean set_called;
    1776                 :             :   gboolean get_freed;
    1777                 :             :   gboolean set_freed;
    1778                 :             : } BindWithMappingData;
    1779                 :             : 
    1780                 :             : static gboolean
    1781                 :           1 : get_callback (GValue *value,
    1782                 :             :               GVariant *variant,
    1783                 :             :               void *user_data)
    1784                 :             : {
    1785                 :           1 :   BindWithMappingData *data = (BindWithMappingData *) user_data;
    1786                 :           1 :   data->get_called = TRUE;
    1787                 :             : 
    1788                 :           1 :   g_assert_true (G_VALUE_HOLDS_BOOLEAN (value));
    1789                 :           1 :   g_assert_true (g_variant_is_of_type (variant, G_VARIANT_TYPE_STRING));
    1790                 :             : 
    1791                 :           1 :   return string_to_bool (value, variant, NULL);
    1792                 :             : }
    1793                 :             : 
    1794                 :             : static GVariant *
    1795                 :           1 : set_callback (const GValue *value,
    1796                 :             :               const GVariantType *expected_type,
    1797                 :             :               void *user_data)
    1798                 :             : {
    1799                 :           1 :   BindWithMappingData *data = (BindWithMappingData *) user_data;
    1800                 :           1 :   data->set_called = TRUE;
    1801                 :             : 
    1802                 :           1 :   g_assert_true (G_VALUE_HOLDS_BOOLEAN (value));
    1803                 :           1 :   g_assert_true (g_variant_type_equal (expected_type, G_VARIANT_TYPE_STRING));
    1804                 :             : 
    1805                 :           1 :   return bool_to_string (value, expected_type, NULL);
    1806                 :             : }
    1807                 :             : 
    1808                 :             : static void
    1809                 :           1 : teardown_get (void *user_data, GClosure *closure)
    1810                 :             : {
    1811                 :           1 :   BindWithMappingData *data = (BindWithMappingData *) user_data;
    1812                 :           1 :   data->get_freed = TRUE;
    1813                 :           1 : }
    1814                 :             : 
    1815                 :             : static void
    1816                 :           1 : teardown_set (void *user_data, GClosure *closure)
    1817                 :             : {
    1818                 :           1 :   BindWithMappingData *data = (BindWithMappingData *) user_data;
    1819                 :           1 :   data->set_freed = TRUE;
    1820                 :           1 : }
    1821                 :             : 
    1822                 :             : /* Tests the types of GValue and GVariant passed to the closures */
    1823                 :             : static void
    1824                 :           1 : test_bind_with_mapping_closures_parameters (void)
    1825                 :             : {
    1826                 :             :   TestObject *obj;
    1827                 :             :   GSettings *settings;
    1828                 :             :   GClosure *get;
    1829                 :             :   GClosure *set;
    1830                 :           1 :   BindWithMappingData data = { FALSE, FALSE, FALSE, FALSE };
    1831                 :             : 
    1832                 :           1 :   settings = g_settings_new ("org.gtk.test.binding");
    1833                 :           1 :   obj = test_object_new ();
    1834                 :             : 
    1835                 :           1 :   g_settings_set_string (settings, "string", "true");
    1836                 :             : 
    1837                 :           1 :   get = g_cclosure_new (G_CALLBACK (get_callback), &data, teardown_get);
    1838                 :           1 :   set = g_cclosure_new (G_CALLBACK (set_callback), &data, teardown_set);
    1839                 :             : 
    1840                 :           1 :   g_settings_bind_with_mapping_closures (settings, "string",
    1841                 :           1 :                                          G_OBJECT (obj), "bool",
    1842                 :             :                                          G_SETTINGS_BIND_DEFAULT, get, set);
    1843                 :             : 
    1844                 :           1 :   g_assert_true (data.get_called);
    1845                 :           1 :   g_assert_false (data.set_called);
    1846                 :             : 
    1847                 :           1 :   data.get_called = FALSE;
    1848                 :           1 :   g_object_set (obj, "bool", FALSE, NULL);
    1849                 :           1 :   g_assert_true (data.set_called);
    1850                 :           1 :   g_assert_false (data.get_called);
    1851                 :             : 
    1852                 :           1 :   g_object_unref (obj);
    1853                 :             : 
    1854                 :           1 :   g_assert_true (data.get_freed);
    1855                 :           1 :   g_assert_true (data.set_freed);
    1856                 :             : 
    1857                 :           1 :   g_object_unref (settings);
    1858                 :           1 : }
    1859                 :             : 
    1860                 :             : /* Test that with G_SETTINGS_BIND_NO_CHANGES, the
    1861                 :             :  * initial settings value is transported to the object
    1862                 :             :  * side, but later settings changes do not affect the
    1863                 :             :  * object
    1864                 :             :  */
    1865                 :             : static void
    1866                 :           1 : test_no_change_binding (void)
    1867                 :             : {
    1868                 :             :   TestObject *obj;
    1869                 :             :   GSettings *settings;
    1870                 :             :   gboolean b;
    1871                 :             : 
    1872                 :           1 :   settings = g_settings_new ("org.gtk.test.binding");
    1873                 :           1 :   obj = test_object_new ();
    1874                 :             : 
    1875                 :           1 :   g_object_set (obj, "bool", TRUE, NULL);
    1876                 :           1 :   g_settings_set_boolean (settings, "bool", FALSE);
    1877                 :             : 
    1878                 :           1 :   g_settings_bind (settings, "bool", obj, "bool", G_SETTINGS_BIND_GET_NO_CHANGES);
    1879                 :             : 
    1880                 :           1 :   g_object_get (obj, "bool", &b, NULL);
    1881                 :           1 :   g_assert_cmpint (b, ==, FALSE);
    1882                 :             : 
    1883                 :           1 :   g_settings_set_boolean (settings, "bool", TRUE);
    1884                 :           1 :   g_object_get (obj, "bool", &b, NULL);
    1885                 :           1 :   g_assert_cmpint (b, ==, FALSE);
    1886                 :             : 
    1887                 :           1 :   g_settings_set_boolean (settings, "bool", FALSE);
    1888                 :           1 :   g_object_set (obj, "bool", TRUE, NULL);
    1889                 :           1 :   b = g_settings_get_boolean (settings, "bool");
    1890                 :           1 :   g_assert_cmpint (b, ==, TRUE);
    1891                 :             : 
    1892                 :           1 :   g_object_unref (obj);
    1893                 :           1 :   g_object_unref (settings);
    1894                 :           1 : }
    1895                 :             : 
    1896                 :             : /* Test that binding a non-readable property only
    1897                 :             :  * works in 'GET' mode.
    1898                 :             :  */
    1899                 :             : static void
    1900                 :           0 : test_no_read_binding_fail (void)
    1901                 :             : {
    1902                 :             :   TestObject *obj;
    1903                 :             :   GSettings *settings;
    1904                 :             : 
    1905                 :           0 :   settings = g_settings_new ("org.gtk.test.binding");
    1906                 :           0 :   obj = test_object_new ();
    1907                 :             : 
    1908                 :           0 :   g_settings_bind (settings, "string", obj, "no-read", 0);
    1909                 :           0 : }
    1910                 :             : 
    1911                 :             : static void
    1912                 :           1 : test_no_read_binding_pass (void)
    1913                 :             : {
    1914                 :             :   TestObject *obj;
    1915                 :             :   GSettings *settings;
    1916                 :             : 
    1917                 :           1 :   settings = g_settings_new ("org.gtk.test.binding");
    1918                 :           1 :   obj = test_object_new ();
    1919                 :             : 
    1920                 :           1 :   g_settings_bind (settings, "string", obj, "no-read", G_SETTINGS_BIND_GET);
    1921                 :             : 
    1922                 :           1 :   exit (0);
    1923                 :             : }
    1924                 :             : 
    1925                 :             : static void
    1926                 :           1 : test_no_read_binding (void)
    1927                 :             : {
    1928                 :           1 :   if (g_test_undefined ())
    1929                 :             :     {
    1930                 :           1 :       g_test_trap_subprocess ("/gsettings/no-read-binding/subprocess/fail", 0,
    1931                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    1932                 :           1 :       g_test_trap_assert_failed ();
    1933                 :           1 :       g_test_trap_assert_stderr ("*property*is not readable*");
    1934                 :             :     }
    1935                 :             : 
    1936                 :           1 :   g_test_trap_subprocess ("/gsettings/no-read-binding/subprocess/pass", 0,
    1937                 :             :                           G_TEST_SUBPROCESS_DEFAULT);
    1938                 :           1 :   g_test_trap_assert_passed ();
    1939                 :           1 : }
    1940                 :             : 
    1941                 :             : /* Test that binding a non-writable property only
    1942                 :             :  * works in 'SET' mode.
    1943                 :             :  */
    1944                 :             : static void
    1945                 :           0 : test_no_write_binding_fail (void)
    1946                 :             : {
    1947                 :             :   TestObject *obj;
    1948                 :             :   GSettings *settings;
    1949                 :             : 
    1950                 :           0 :   settings = g_settings_new ("org.gtk.test.binding");
    1951                 :           0 :   obj = test_object_new ();
    1952                 :             : 
    1953                 :           0 :   g_settings_bind (settings, "string", obj, "no-write", 0);
    1954                 :           0 : }
    1955                 :             : 
    1956                 :             : static void
    1957                 :           1 : test_no_write_binding_pass (void)
    1958                 :             : {
    1959                 :             :   TestObject *obj;
    1960                 :             :   GSettings *settings;
    1961                 :             : 
    1962                 :           1 :   settings = g_settings_new ("org.gtk.test.binding");
    1963                 :           1 :   obj = test_object_new ();
    1964                 :             : 
    1965                 :           1 :   g_settings_bind (settings, "string", obj, "no-write", G_SETTINGS_BIND_SET);
    1966                 :             : 
    1967                 :           1 :   exit (0);
    1968                 :             : }
    1969                 :             : 
    1970                 :             : static void
    1971                 :           1 : test_no_write_binding (void)
    1972                 :             : {
    1973                 :           1 :   if (g_test_undefined ())
    1974                 :             :     {
    1975                 :           1 :       g_test_trap_subprocess ("/gsettings/no-write-binding/subprocess/fail", 0,
    1976                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    1977                 :           1 :       g_test_trap_assert_failed ();
    1978                 :           1 :       g_test_trap_assert_stderr ("*property*is not writable*");
    1979                 :             :     }
    1980                 :             : 
    1981                 :           1 :   g_test_trap_subprocess ("/gsettings/no-write-binding/subprocess/pass", 0,
    1982                 :             :                           G_TEST_SUBPROCESS_DEFAULT);
    1983                 :           1 :   g_test_trap_assert_passed ();
    1984                 :           1 : }
    1985                 :             : 
    1986                 :             : static void
    1987                 :           3 : key_changed_cb (GSettings *settings, const gchar *key, gpointer data)
    1988                 :             : {
    1989                 :           3 :   gboolean *b = data;
    1990                 :           3 :   (*b) = TRUE;
    1991                 :           3 : }
    1992                 :             : 
    1993                 :             : typedef struct
    1994                 :             : {
    1995                 :             :   const gchar *path;
    1996                 :             :   const gchar *root_group;
    1997                 :             :   const gchar *keyfile_group;
    1998                 :             :   const gchar *root_path;
    1999                 :             : } KeyfileTestData;
    2000                 :             : 
    2001                 :             : /*
    2002                 :             :  * Test that using a keyfile works
    2003                 :             :  */
    2004                 :             : static void
    2005                 :           1 : test_keyfile (Fixture       *fixture,
    2006                 :             :               gconstpointer  user_data)
    2007                 :             : {
    2008                 :             :   GSettingsBackend *kf_backend;
    2009                 :             :   GSettings *settings;
    2010                 :             :   GKeyFile *keyfile;
    2011                 :             :   gchar *str;
    2012                 :             :   gboolean writable;
    2013                 :           1 :   GError *error = NULL;
    2014                 :             :   gchar *data;
    2015                 :             :   gsize len;
    2016                 :           1 :   gboolean called = FALSE;
    2017                 :           1 :   gchar *keyfile_path = NULL, *store_path = NULL;
    2018                 :             : 
    2019                 :           1 :   keyfile_path = g_build_filename (fixture->tmp_dir, "keyfile", NULL);
    2020                 :           1 :   store_path = g_build_filename (keyfile_path, "gsettings.store", NULL);
    2021                 :           1 :   kf_backend = g_keyfile_settings_backend_new (store_path, "/", "root");
    2022                 :           1 :   settings = g_settings_new_with_backend ("org.gtk.test", kf_backend);
    2023                 :           1 :   g_object_unref (kf_backend);
    2024                 :             : 
    2025                 :           1 :   g_settings_reset (settings, "greeting");
    2026                 :           1 :   str = g_settings_get_string (settings, "greeting");
    2027                 :           1 :   g_assert_cmpstr (str, ==, "Hello, earthlings");
    2028                 :           1 :   g_free (str);
    2029                 :             : 
    2030                 :           1 :   writable = g_settings_is_writable (settings, "greeting");
    2031                 :           1 :   g_assert_true (writable);
    2032                 :           1 :   g_settings_set (settings, "greeting", "s", "see if this works");
    2033                 :             : 
    2034                 :           1 :   str = g_settings_get_string (settings, "greeting");
    2035                 :           1 :   g_assert_cmpstr (str, ==, "see if this works");
    2036                 :           1 :   g_free (str);
    2037                 :             : 
    2038                 :           1 :   g_settings_delay (settings);
    2039                 :           1 :   g_settings_set (settings, "farewell", "s", "cheerio");
    2040                 :           1 :   g_settings_apply (settings);
    2041                 :             : 
    2042                 :           1 :   keyfile = g_key_file_new ();
    2043                 :           1 :   g_assert_true (g_key_file_load_from_file (keyfile, store_path, 0, NULL));
    2044                 :             : 
    2045                 :           1 :   str = g_key_file_get_string (keyfile, "tests", "greeting", NULL);
    2046                 :           1 :   g_assert_cmpstr (str, ==, "'see if this works'");
    2047                 :           1 :   g_free (str);
    2048                 :             : 
    2049                 :           1 :   str = g_key_file_get_string (keyfile, "tests", "farewell", NULL);
    2050                 :           1 :   g_assert_cmpstr (str, ==, "'cheerio'");
    2051                 :           1 :   g_free (str);
    2052                 :           1 :   g_key_file_free (keyfile);
    2053                 :             : 
    2054                 :           1 :   g_settings_reset (settings, "greeting");
    2055                 :           1 :   g_settings_apply (settings);
    2056                 :           1 :   keyfile = g_key_file_new ();
    2057                 :           1 :   g_assert_true (g_key_file_load_from_file (keyfile, store_path, 0, NULL));
    2058                 :             : 
    2059                 :           1 :   str = g_key_file_get_string (keyfile, "tests", "greeting", NULL);
    2060                 :           1 :   g_assert_null (str);
    2061                 :             : 
    2062                 :           1 :   called = FALSE;
    2063                 :           1 :   g_signal_connect (settings, "changed::greeting", G_CALLBACK (key_changed_cb), &called);
    2064                 :             : 
    2065                 :           1 :   g_key_file_set_string (keyfile, "tests", "greeting", "'howdy'");
    2066                 :           1 :   data = g_key_file_to_data (keyfile, &len, NULL);
    2067                 :           1 :   g_file_set_contents (store_path, data, len, &error);
    2068                 :           1 :   g_assert_no_error (error);
    2069                 :           2 :   while (!called)
    2070                 :           1 :     g_main_context_iteration (NULL, FALSE);
    2071                 :           1 :   g_signal_handlers_disconnect_by_func (settings, key_changed_cb, &called);
    2072                 :             : 
    2073                 :           1 :   str = g_settings_get_string (settings, "greeting");
    2074                 :           1 :   g_assert_cmpstr (str, ==, "howdy");
    2075                 :           1 :   g_free (str);
    2076                 :             : 
    2077                 :             :   /* Now check setting a string without quotes */
    2078                 :           1 :   called = FALSE;
    2079                 :           1 :   g_signal_connect (settings, "changed::greeting", G_CALLBACK (key_changed_cb), &called);
    2080                 :             : 
    2081                 :           1 :   g_key_file_set_string (keyfile, "tests", "greeting", "he\"l🤗uń");
    2082                 :           1 :   g_free (data);
    2083                 :           1 :   data = g_key_file_to_data (keyfile, &len, NULL);
    2084                 :           1 :   g_file_set_contents (store_path, data, len, &error);
    2085                 :           1 :   g_assert_no_error (error);
    2086                 :       31075 :   while (!called)
    2087                 :       31074 :     g_main_context_iteration (NULL, FALSE);
    2088                 :           1 :   g_signal_handlers_disconnect_by_func (settings, key_changed_cb, &called);
    2089                 :             : 
    2090                 :           1 :   str = g_settings_get_string (settings, "greeting");
    2091                 :           1 :   g_assert_cmpstr (str, ==, "he\"l🤗uń");
    2092                 :           1 :   g_free (str);
    2093                 :             : 
    2094                 :           1 :   g_settings_set (settings, "farewell", "s", "cheerio");
    2095                 :             : 
    2096                 :             :   /* Check that empty keys/groups are not allowed. */
    2097                 :           1 :   g_assert_false (g_settings_is_writable (settings, ""));
    2098                 :           1 :   g_assert_false (g_settings_is_writable (settings, "/"));
    2099                 :             : 
    2100                 :             :   /* When executing as root, changing the mode of the keyfile will have
    2101                 :             :    * no effect on the writability of the settings.
    2102                 :             :    */
    2103                 :           1 :   if (geteuid () != 0)
    2104                 :             :     {
    2105                 :           1 :       called = FALSE;
    2106                 :           1 :       g_signal_connect (settings, "writable-changed::greeting",
    2107                 :             :                         G_CALLBACK (key_changed_cb), &called);
    2108                 :             : 
    2109                 :           1 :       g_assert_no_errno (g_chmod (keyfile_path, 0500));
    2110                 :          22 :       while (!called)
    2111                 :          21 :         g_main_context_iteration (NULL, FALSE);
    2112                 :           1 :       g_signal_handlers_disconnect_by_func (settings, key_changed_cb, &called);
    2113                 :             : 
    2114                 :           1 :       writable = g_settings_is_writable (settings, "greeting");
    2115                 :           1 :       g_assert_false (writable);
    2116                 :             :     }
    2117                 :             : 
    2118                 :           1 :   g_key_file_free (keyfile);
    2119                 :           1 :   g_free (data);
    2120                 :             : 
    2121                 :           1 :   g_object_unref (settings);
    2122                 :             : 
    2123                 :             :   /* Clean up the temporary directory. */
    2124                 :           1 :   g_assert_no_errno (g_chmod (keyfile_path, 0777));
    2125                 :           1 :   g_assert_no_errno (g_remove (store_path));
    2126                 :           1 :   g_assert_no_errno (g_rmdir (keyfile_path));
    2127                 :           1 :   g_free (store_path);
    2128                 :           1 :   g_free (keyfile_path);
    2129                 :           1 : }
    2130                 :             : 
    2131                 :             : /*
    2132                 :             :  * Test that using a keyfile works with a schema with no path set.
    2133                 :             :  */
    2134                 :             : static void
    2135                 :           3 : test_keyfile_no_path (Fixture       *fixture,
    2136                 :             :                       gconstpointer  user_data)
    2137                 :             : {
    2138                 :           3 :   const KeyfileTestData *test_data = user_data;
    2139                 :             :   GSettingsBackend *kf_backend;
    2140                 :             :   GSettings *settings;
    2141                 :             :   GKeyFile *keyfile;
    2142                 :             :   gboolean writable;
    2143                 :           3 :   gchar *key = NULL;
    2144                 :           3 :   GError *error = NULL;
    2145                 :           3 :   gchar *keyfile_path = NULL, *store_path = NULL;
    2146                 :             : 
    2147                 :           3 :   keyfile_path = g_build_filename (fixture->tmp_dir, "keyfile", NULL);
    2148                 :           3 :   store_path = g_build_filename (keyfile_path, "gsettings.store", NULL);
    2149                 :           3 :   kf_backend = g_keyfile_settings_backend_new (store_path, test_data->root_path, test_data->root_group);
    2150                 :           3 :   settings = g_settings_new_with_backend_and_path ("org.gtk.test.no-path", kf_backend, test_data->path);
    2151                 :           3 :   g_object_unref (kf_backend);
    2152                 :             : 
    2153                 :           3 :   g_settings_reset (settings, "test-boolean");
    2154                 :           3 :   g_assert_true (g_settings_get_boolean (settings, "test-boolean"));
    2155                 :             : 
    2156                 :           3 :   writable = g_settings_is_writable (settings, "test-boolean");
    2157                 :           3 :   g_assert_true (writable);
    2158                 :           3 :   g_settings_set (settings, "test-boolean", "b", FALSE);
    2159                 :             : 
    2160                 :           3 :   g_assert_false (g_settings_get_boolean (settings, "test-boolean"));
    2161                 :             : 
    2162                 :           3 :   g_settings_delay (settings);
    2163                 :           3 :   g_settings_set (settings, "test-boolean", "b", TRUE);
    2164                 :           3 :   g_settings_apply (settings);
    2165                 :             : 
    2166                 :           3 :   keyfile = g_key_file_new ();
    2167                 :           3 :   g_assert_true (g_key_file_load_from_file (keyfile, store_path, 0, NULL));
    2168                 :             : 
    2169                 :           3 :   g_assert_true (g_key_file_get_boolean (keyfile, test_data->keyfile_group, "test-boolean", NULL));
    2170                 :             : 
    2171                 :           3 :   g_key_file_free (keyfile);
    2172                 :             : 
    2173                 :           3 :   g_settings_reset (settings, "test-boolean");
    2174                 :           3 :   g_settings_apply (settings);
    2175                 :           3 :   keyfile = g_key_file_new ();
    2176                 :           3 :   g_assert_true (g_key_file_load_from_file (keyfile, store_path, 0, NULL));
    2177                 :             : 
    2178                 :           3 :   g_assert_false (g_key_file_get_string (keyfile, test_data->keyfile_group, "test-boolean", &error));
    2179                 :           3 :   g_assert_error (error, G_KEY_FILE_ERROR, G_KEY_FILE_ERROR_KEY_NOT_FOUND);
    2180                 :           3 :   g_clear_error (&error);
    2181                 :             : 
    2182                 :             :   /* Check that empty keys/groups are not allowed. */
    2183                 :           3 :   g_assert_false (g_settings_is_writable (settings, ""));
    2184                 :           3 :   g_assert_false (g_settings_is_writable (settings, "/"));
    2185                 :             : 
    2186                 :             :   /* Keys which ghost the root group name are not allowed. This can only be
    2187                 :             :    * tested when the path is `/` as otherwise it acts as a prefix and prevents
    2188                 :             :    * any ghosting. */
    2189                 :           3 :   if (g_str_equal (test_data->path, "/"))
    2190                 :             :     {
    2191                 :           1 :       key = g_strdup_printf ("%s/%s", test_data->root_group, "");
    2192                 :           1 :       g_assert_false (g_settings_is_writable (settings, key));
    2193                 :           1 :       g_free (key);
    2194                 :             : 
    2195                 :           1 :       key = g_strdup_printf ("%s/%s", test_data->root_group, "/");
    2196                 :           1 :       g_assert_false (g_settings_is_writable (settings, key));
    2197                 :           1 :       g_free (key);
    2198                 :             : 
    2199                 :           1 :       key = g_strdup_printf ("%s/%s", test_data->root_group, "test-boolean");
    2200                 :           1 :       g_assert_false (g_settings_is_writable (settings, key));
    2201                 :           1 :       g_free (key);
    2202                 :             :     }
    2203                 :             : 
    2204                 :           3 :   g_key_file_free (keyfile);
    2205                 :           3 :   g_object_unref (settings);
    2206                 :             : 
    2207                 :             :   /* Clean up the temporary directory. */
    2208                 :           3 :   g_assert_no_errno (g_chmod (keyfile_path, 0777));
    2209                 :           3 :   g_assert_no_errno (g_remove (store_path));
    2210                 :           3 :   g_assert_no_errno (g_rmdir (keyfile_path));
    2211                 :           3 :   g_free (store_path);
    2212                 :           3 :   g_free (keyfile_path);
    2213                 :           3 : }
    2214                 :             : 
    2215                 :             : /*
    2216                 :             :  * Test that a keyfile rejects writes to keys outside its root path.
    2217                 :             :  */
    2218                 :             : static void
    2219                 :           1 : test_keyfile_outside_root_path (Fixture       *fixture,
    2220                 :             :                                 gconstpointer  user_data)
    2221                 :             : {
    2222                 :             :   GSettingsBackend *kf_backend;
    2223                 :             :   GSettings *settings;
    2224                 :           1 :   gchar *keyfile_path = NULL, *store_path = NULL;
    2225                 :             : 
    2226                 :           1 :   keyfile_path = g_build_filename (fixture->tmp_dir, "keyfile", NULL);
    2227                 :           1 :   store_path = g_build_filename (keyfile_path, "gsettings.store", NULL);
    2228                 :           1 :   kf_backend = g_keyfile_settings_backend_new (store_path, "/tests/basic-types/", "root");
    2229                 :           1 :   settings = g_settings_new_with_backend_and_path ("org.gtk.test.no-path", kf_backend, "/tests/");
    2230                 :           1 :   g_object_unref (kf_backend);
    2231                 :             : 
    2232                 :           1 :   g_assert_false (g_settings_is_writable (settings, "test-boolean"));
    2233                 :             : 
    2234                 :           1 :   g_object_unref (settings);
    2235                 :             : 
    2236                 :             :   /* Clean up the temporary directory. The keyfile probably doesn’t exist, so
    2237                 :             :    * don’t error on failure. */
    2238                 :           1 :   g_remove (store_path);
    2239                 :           1 :   g_assert_no_errno (g_rmdir (keyfile_path));
    2240                 :           1 :   g_free (store_path);
    2241                 :           1 :   g_free (keyfile_path);
    2242                 :           1 : }
    2243                 :             : 
    2244                 :             : /*
    2245                 :             :  * Test that a keyfile rejects writes to keys in the root if no root group is set.
    2246                 :             :  */
    2247                 :             : static void
    2248                 :           1 : test_keyfile_no_root_group (Fixture       *fixture,
    2249                 :             :                             gconstpointer  user_data)
    2250                 :             : {
    2251                 :             :   GSettingsBackend *kf_backend;
    2252                 :             :   GSettings *settings;
    2253                 :           1 :   gchar *keyfile_path = NULL, *store_path = NULL;
    2254                 :             : 
    2255                 :           1 :   keyfile_path = g_build_filename (fixture->tmp_dir, "keyfile", NULL);
    2256                 :           1 :   store_path = g_build_filename (keyfile_path, "gsettings.store", NULL);
    2257                 :           1 :   kf_backend = g_keyfile_settings_backend_new (store_path, "/", NULL);
    2258                 :           1 :   settings = g_settings_new_with_backend_and_path ("org.gtk.test.no-path", kf_backend, "/");
    2259                 :           1 :   g_object_unref (kf_backend);
    2260                 :             : 
    2261                 :           1 :   g_assert_false (g_settings_is_writable (settings, "test-boolean"));
    2262                 :           1 :   g_assert_true (g_settings_is_writable (settings, "child/test-boolean"));
    2263                 :             : 
    2264                 :           1 :   g_object_unref (settings);
    2265                 :             : 
    2266                 :             :   /* Clean up the temporary directory. The keyfile probably doesn’t exist, so
    2267                 :             :    * don’t error on failure. */
    2268                 :           1 :   g_remove (store_path);
    2269                 :           1 :   g_assert_no_errno (g_rmdir (keyfile_path));
    2270                 :           1 :   g_free (store_path);
    2271                 :           1 :   g_free (keyfile_path);
    2272                 :           1 : }
    2273                 :             : 
    2274                 :             : /* Test that getting child schemas works
    2275                 :             :  */
    2276                 :             : static void
    2277                 :           1 : test_child_schema (void)
    2278                 :             : {
    2279                 :             :   GSettings *settings;
    2280                 :             :   GSettings *child;
    2281                 :             :   guint8 byte;
    2282                 :             : 
    2283                 :             :   /* first establish some known conditions */
    2284                 :           1 :   settings = g_settings_new ("org.gtk.test.basic-types");
    2285                 :           1 :   g_settings_set (settings, "test-byte", "y", 36);
    2286                 :             : 
    2287                 :           1 :   g_settings_get (settings, "test-byte", "y", &byte);
    2288                 :           1 :   g_assert_cmpint (byte, ==, 36);
    2289                 :             : 
    2290                 :           1 :   g_object_unref (settings);
    2291                 :             : 
    2292                 :           1 :   settings = g_settings_new ("org.gtk.test");
    2293                 :           1 :   child = g_settings_get_child (settings, "basic-types");
    2294                 :           1 :   g_assert_nonnull (child);
    2295                 :             : 
    2296                 :           1 :   g_settings_get (child, "test-byte", "y", &byte);
    2297                 :           1 :   g_assert_cmpint (byte, ==, 36);
    2298                 :             : 
    2299                 :           1 :   g_object_unref (child);
    2300                 :           1 :   g_object_unref (settings);
    2301                 :           1 : }
    2302                 :             : 
    2303                 :             : #include "../strinfo.c"
    2304                 :             : 
    2305                 :             : static void
    2306                 :           1 : test_strinfo (void)
    2307                 :             : {
    2308                 :             :   /*  "foo" has a value of 1
    2309                 :             :    *  "bar" has a value of 2
    2310                 :             :    *  "baz" is an alias for "bar"
    2311                 :             :    */
    2312                 :           1 :   gchar array[] =
    2313                 :             :     "\1\0\0\0"      "\xff""foo"     "\0\0\0\xff"    "\2\0\0\0"
    2314                 :             :     "\xff" "bar"    "\0\0\0\xff"    "\3\0\0\0"      "\xfe""baz"
    2315                 :             :     "\0\0\0\xff";
    2316                 :           1 :   const guint32 *strinfo = (guint32 *) array;
    2317                 :           1 :   guint length = sizeof array / 4;
    2318                 :           1 :   guint result = 0;
    2319                 :             : 
    2320                 :             :   {
    2321                 :             :     /* build it and compare */
    2322                 :             :     GString *builder;
    2323                 :             : 
    2324                 :           1 :     builder = g_string_new (NULL);
    2325                 :           1 :     strinfo_builder_append_item (builder, "foo", 1);
    2326                 :           1 :     strinfo_builder_append_item (builder, "bar", 2);
    2327                 :           1 :     g_assert_true (strinfo_builder_append_alias (builder, "baz", "bar"));
    2328                 :           1 :     g_assert_cmpmem (builder->str, builder->len, strinfo, length * 4);
    2329                 :           1 :     g_string_free (builder, TRUE);
    2330                 :             :   }
    2331                 :             : 
    2332                 :           1 :   g_assert_cmpstr (strinfo_string_from_alias (strinfo, length, "foo"),
    2333                 :             :                    ==, NULL);
    2334                 :           1 :   g_assert_cmpstr (strinfo_string_from_alias (strinfo, length, "bar"),
    2335                 :             :                    ==, NULL);
    2336                 :           1 :   g_assert_cmpstr (strinfo_string_from_alias (strinfo, length, "baz"),
    2337                 :             :                    ==, "bar");
    2338                 :           1 :   g_assert_cmpstr (strinfo_string_from_alias (strinfo, length, "quux"),
    2339                 :             :                    ==, NULL);
    2340                 :             : 
    2341                 :           1 :   g_assert_true (strinfo_enum_from_string (strinfo, length, "foo", &result));
    2342                 :           1 :   g_assert_cmpint (result, ==, 1);
    2343                 :           1 :   g_assert_true (strinfo_enum_from_string (strinfo, length, "bar", &result));
    2344                 :           1 :   g_assert_cmpint (result, ==, 2);
    2345                 :           1 :   g_assert_false (strinfo_enum_from_string (strinfo, length, "baz", &result));
    2346                 :           1 :   g_assert_false (strinfo_enum_from_string (strinfo, length, "quux", &result));
    2347                 :             : 
    2348                 :           1 :   g_assert_cmpstr (strinfo_string_from_enum (strinfo, length, 0), ==, NULL);
    2349                 :           1 :   g_assert_cmpstr (strinfo_string_from_enum (strinfo, length, 1), ==, "foo");
    2350                 :           1 :   g_assert_cmpstr (strinfo_string_from_enum (strinfo, length, 2), ==, "bar");
    2351                 :           1 :   g_assert_cmpstr (strinfo_string_from_enum (strinfo, length, 3), ==, NULL);
    2352                 :             : 
    2353                 :           1 :   g_assert_true (strinfo_is_string_valid (strinfo, length, "foo"));
    2354                 :           1 :   g_assert_true (strinfo_is_string_valid (strinfo, length, "bar"));
    2355                 :           1 :   g_assert_false (strinfo_is_string_valid (strinfo, length, "baz"));
    2356                 :           1 :   g_assert_false (strinfo_is_string_valid (strinfo, length, "quux"));
    2357                 :           1 : }
    2358                 :             : 
    2359                 :             : static void
    2360                 :           0 : test_enums_non_enum_key (void)
    2361                 :             : {
    2362                 :             :   GSettings *direct;
    2363                 :             : 
    2364                 :           0 :   direct = g_settings_new ("org.gtk.test.enums.direct");
    2365                 :           0 :   g_settings_get_enum (direct, "test");
    2366                 :             :   g_assert_not_reached ();
    2367                 :             : }
    2368                 :             : 
    2369                 :             : static void
    2370                 :           0 : test_enums_non_enum_value (void)
    2371                 :             : {
    2372                 :             :   GSettings *settings;
    2373                 :             : 
    2374                 :           0 :   settings = g_settings_new ("org.gtk.test.enums");
    2375                 :           0 :   g_settings_set_enum (settings, "test", 42);
    2376                 :             :   g_assert_not_reached ();
    2377                 :             : }
    2378                 :             : 
    2379                 :             : static void
    2380                 :           0 : test_enums_range (void)
    2381                 :             : {
    2382                 :             :   GSettings *settings;
    2383                 :             : 
    2384                 :           0 :   settings = g_settings_new ("org.gtk.test.enums");
    2385                 :           0 :   g_settings_set_string (settings, "test", "qux");
    2386                 :             :   g_assert_not_reached ();
    2387                 :             : }
    2388                 :             : 
    2389                 :             : static void
    2390                 :           0 : test_enums_non_flags (void)
    2391                 :             : {
    2392                 :             :   GSettings *settings;
    2393                 :             : 
    2394                 :           0 :   settings = g_settings_new ("org.gtk.test.enums");
    2395                 :           0 :   g_settings_get_flags (settings, "test");
    2396                 :             :   g_assert_not_reached ();
    2397                 :             : }
    2398                 :             : 
    2399                 :             : static void
    2400                 :           1 : test_enums (void)
    2401                 :             : {
    2402                 :             :   GSettings *settings, *direct;
    2403                 :             :   gchar *str;
    2404                 :             : 
    2405                 :           1 :   settings = g_settings_new ("org.gtk.test.enums");
    2406                 :           1 :   direct = g_settings_new ("org.gtk.test.enums.direct");
    2407                 :             : 
    2408                 :           1 :   if (g_test_undefined () && !backend_set)
    2409                 :             :     {
    2410                 :           1 :       g_test_trap_subprocess ("/gsettings/enums/subprocess/non-enum-key", 0,
    2411                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    2412                 :           1 :       g_test_trap_assert_failed ();
    2413                 :           1 :       g_test_trap_assert_stderr ("*not associated with an enum*");
    2414                 :             : 
    2415                 :           1 :       g_test_trap_subprocess ("/gsettings/enums/subprocess/non-enum-value", 0,
    2416                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    2417                 :           1 :       g_test_trap_assert_failed ();
    2418                 :           1 :       g_test_trap_assert_stderr ("*invalid enum value 42*");
    2419                 :             : 
    2420                 :           1 :       g_test_trap_subprocess ("/gsettings/enums/subprocess/range", 0,
    2421                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    2422                 :           1 :       g_test_trap_assert_failed ();
    2423                 :           1 :       g_test_trap_assert_stderr ("*g_settings_set_value*valid range*");
    2424                 :             : 
    2425                 :           1 :       g_test_trap_subprocess ("/gsettings/enums/subprocess/non-flags", 0,
    2426                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    2427                 :           1 :       g_test_trap_assert_failed ();
    2428                 :           1 :       g_test_trap_assert_stderr ("*not associated with a flags*");
    2429                 :             :     }
    2430                 :             : 
    2431                 :           1 :   str = g_settings_get_string (settings, "test");
    2432                 :           1 :   g_assert_cmpstr (str, ==, "bar");
    2433                 :           1 :   g_free (str);
    2434                 :             : 
    2435                 :           1 :   g_settings_set_enum (settings, "test", TEST_ENUM_FOO);
    2436                 :             : 
    2437                 :           1 :   str = g_settings_get_string (settings, "test");
    2438                 :           1 :   g_assert_cmpstr (str, ==, "foo");
    2439                 :           1 :   g_free (str);
    2440                 :             : 
    2441                 :           1 :   g_assert_cmpint (g_settings_get_enum (settings, "test"), ==, TEST_ENUM_FOO);
    2442                 :             : 
    2443                 :           1 :   g_settings_set_string (direct, "test", "qux");
    2444                 :             : 
    2445                 :           1 :   str = g_settings_get_string (direct, "test");
    2446                 :           1 :   g_assert_cmpstr (str, ==, "qux");
    2447                 :           1 :   g_free (str);
    2448                 :             : 
    2449                 :           1 :   str = g_settings_get_string (settings, "test");
    2450                 :           1 :   g_assert_cmpstr (str, ==, "quux");
    2451                 :           1 :   g_free (str);
    2452                 :             : 
    2453                 :           1 :   g_assert_cmpint (g_settings_get_enum (settings, "test"), ==, TEST_ENUM_QUUX);
    2454                 :             : 
    2455                 :           1 :   g_object_unref (direct);
    2456                 :           1 :   g_object_unref (settings);
    2457                 :           1 : }
    2458                 :             : 
    2459                 :             : static void
    2460                 :           0 : test_flags_non_flags_key (void)
    2461                 :             : {
    2462                 :             :   GSettings *direct;
    2463                 :             : 
    2464                 :           0 :   direct = g_settings_new ("org.gtk.test.enums.direct");
    2465                 :           0 :   g_settings_get_flags (direct, "test");
    2466                 :             :   g_assert_not_reached ();
    2467                 :             : }
    2468                 :             : 
    2469                 :             : static void
    2470                 :           0 : test_flags_non_flags_value (void)
    2471                 :             : {
    2472                 :             :   GSettings *settings;
    2473                 :             : 
    2474                 :           0 :   settings = g_settings_new ("org.gtk.test.enums");
    2475                 :           0 :   g_settings_set_flags (settings, "f-test", 0x42);
    2476                 :             :   g_assert_not_reached ();
    2477                 :             : }
    2478                 :             : 
    2479                 :             : static void
    2480                 :           0 : test_flags_range (void)
    2481                 :             : {
    2482                 :             :   GSettings *settings;
    2483                 :             : 
    2484                 :           0 :   settings = g_settings_new ("org.gtk.test.enums");
    2485                 :           0 :   g_settings_set_strv (settings, "f-test",
    2486                 :           0 :                        (const gchar **) g_strsplit ("rock", ",", 0));
    2487                 :             :   g_assert_not_reached ();
    2488                 :             : }
    2489                 :             : 
    2490                 :             : static void
    2491                 :           0 : test_flags_non_enum (void)
    2492                 :             : {
    2493                 :             :   GSettings *settings;
    2494                 :             : 
    2495                 :           0 :   settings = g_settings_new ("org.gtk.test.enums");
    2496                 :           0 :   g_settings_get_enum (settings, "f-test");
    2497                 :             :   g_assert_not_reached ();
    2498                 :             : }
    2499                 :             : 
    2500                 :             : static void
    2501                 :           1 : test_flags (void)
    2502                 :             : {
    2503                 :             :   GSettings *settings, *direct;
    2504                 :             :   gchar **strv;
    2505                 :             :   gchar *str;
    2506                 :             : 
    2507                 :           1 :   settings = g_settings_new ("org.gtk.test.enums");
    2508                 :           1 :   direct = g_settings_new ("org.gtk.test.enums.direct");
    2509                 :             : 
    2510                 :           1 :   if (g_test_undefined () && !backend_set)
    2511                 :             :     {
    2512                 :           1 :       g_test_trap_subprocess ("/gsettings/flags/subprocess/non-flags-key", 0,
    2513                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    2514                 :           1 :       g_test_trap_assert_failed ();
    2515                 :           1 :       g_test_trap_assert_stderr ("*not associated with a flags*");
    2516                 :             : 
    2517                 :           1 :       g_test_trap_subprocess ("/gsettings/flags/subprocess/non-flags-value", 0,
    2518                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    2519                 :           1 :       g_test_trap_assert_failed ();
    2520                 :           1 :       g_test_trap_assert_stderr ("*invalid flags value 0x00000042*");
    2521                 :             : 
    2522                 :           1 :       g_test_trap_subprocess ("/gsettings/flags/subprocess/range", 0,
    2523                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    2524                 :           1 :       g_test_trap_assert_failed ();
    2525                 :           1 :       g_test_trap_assert_stderr ("*g_settings_set_value*valid range*");
    2526                 :             : 
    2527                 :           1 :       g_test_trap_subprocess ("/gsettings/flags/subprocess/non-enum", 0,
    2528                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    2529                 :           1 :       g_test_trap_assert_failed ();
    2530                 :           1 :       g_test_trap_assert_stderr ("*not associated with an enum*");
    2531                 :             :     }
    2532                 :             : 
    2533                 :           1 :   strv = g_settings_get_strv (settings, "f-test");
    2534                 :           1 :   str = g_strjoinv (",", strv);
    2535                 :           1 :   g_assert_cmpstr (str, ==, "");
    2536                 :           1 :   g_strfreev (strv);
    2537                 :           1 :   g_free (str);
    2538                 :             : 
    2539                 :           1 :   g_settings_set_flags (settings, "f-test",
    2540                 :             :                         TEST_FLAGS_WALKING | TEST_FLAGS_TALKING);
    2541                 :             : 
    2542                 :           1 :   strv = g_settings_get_strv (settings, "f-test");
    2543                 :           1 :   str = g_strjoinv (",", strv);
    2544                 :           1 :   g_assert_cmpstr (str, ==, "talking,walking");
    2545                 :           1 :   g_strfreev (strv);
    2546                 :           1 :   g_free (str);
    2547                 :             : 
    2548                 :           1 :   g_assert_cmpint (g_settings_get_flags (settings, "f-test"), ==,
    2549                 :             :                    TEST_FLAGS_WALKING | TEST_FLAGS_TALKING);
    2550                 :             : 
    2551                 :           1 :   strv = g_strsplit ("speaking,laughing", ",", 0);
    2552                 :           1 :   g_settings_set_strv (direct, "f-test", (const gchar **) strv);
    2553                 :           1 :   g_strfreev (strv);
    2554                 :             : 
    2555                 :           1 :   strv = g_settings_get_strv (direct, "f-test");
    2556                 :           1 :   str = g_strjoinv (",", strv);
    2557                 :           1 :   g_assert_cmpstr (str, ==, "speaking,laughing");
    2558                 :           1 :   g_strfreev (strv);
    2559                 :           1 :   g_free (str);
    2560                 :             : 
    2561                 :           1 :   strv = g_settings_get_strv (settings, "f-test");
    2562                 :           1 :   str = g_strjoinv (",", strv);
    2563                 :           1 :   g_assert_cmpstr (str, ==, "talking,laughing");
    2564                 :           1 :   g_strfreev (strv);
    2565                 :           1 :   g_free (str);
    2566                 :             : 
    2567                 :           1 :   g_assert_cmpint (g_settings_get_flags (settings, "f-test"), ==,
    2568                 :             :                    TEST_FLAGS_TALKING | TEST_FLAGS_LAUGHING);
    2569                 :             : 
    2570                 :           1 :   g_object_unref (direct);
    2571                 :           1 :   g_object_unref (settings);
    2572                 :           1 : }
    2573                 :             : 
    2574                 :             : static void
    2575                 :           0 : test_range_high (void)
    2576                 :             : {
    2577                 :             :   GSettings *settings;
    2578                 :             : 
    2579                 :           0 :   settings = g_settings_new ("org.gtk.test.range");
    2580                 :           0 :   g_settings_set_int (settings, "val", 45);
    2581                 :             :   g_assert_not_reached ();
    2582                 :             : }
    2583                 :             : 
    2584                 :             : static void
    2585                 :           0 : test_range_low (void)
    2586                 :             : {
    2587                 :             :   GSettings *settings;
    2588                 :             : 
    2589                 :           0 :   settings = g_settings_new ("org.gtk.test.range");
    2590                 :           0 :   g_settings_set_int (settings, "val", 1);
    2591                 :             :   g_assert_not_reached ();
    2592                 :             : }
    2593                 :             : 
    2594                 :             : static void
    2595                 :           1 : test_range (void)
    2596                 :             : {
    2597                 :             :   GSettings *settings, *direct;
    2598                 :             :   GVariant *value;
    2599                 :             : 
    2600                 :           1 :   settings = g_settings_new ("org.gtk.test.range");
    2601                 :           1 :   direct = g_settings_new ("org.gtk.test.range.direct");
    2602                 :             : 
    2603                 :           1 :   if (g_test_undefined () && !backend_set)
    2604                 :             :     {
    2605                 :           1 :       g_test_trap_subprocess ("/gsettings/range/subprocess/high", 0,
    2606                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    2607                 :           1 :       g_test_trap_assert_failed ();
    2608                 :           1 :       g_test_trap_assert_stderr ("*g_settings_set_value*valid range*");
    2609                 :             : 
    2610                 :           1 :       g_test_trap_subprocess ("/gsettings/range/subprocess/low", 0,
    2611                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    2612                 :           1 :       g_test_trap_assert_failed ();
    2613                 :           1 :       g_test_trap_assert_stderr ("*g_settings_set_value*valid range*");
    2614                 :             :     }
    2615                 :             : 
    2616                 :           1 :   g_assert_cmpint (g_settings_get_int (settings, "val"), ==, 33);
    2617                 :           1 :   g_settings_set_int (direct, "val", 22);
    2618                 :           1 :   g_assert_cmpint (g_settings_get_int (direct, "val"), ==, 22);
    2619                 :           1 :   g_assert_cmpint (g_settings_get_int (settings, "val"), ==, 22);
    2620                 :           1 :   g_settings_set_int (direct, "val", 45);
    2621                 :           1 :   g_assert_cmpint (g_settings_get_int (direct, "val"), ==, 45);
    2622                 :           1 :   g_assert_cmpint (g_settings_get_int (settings, "val"), ==, 33);
    2623                 :           1 :   g_settings_set_int (direct, "val", 1);
    2624                 :           1 :   g_assert_cmpint (g_settings_get_int (direct, "val"), ==, 1);
    2625                 :           1 :   g_assert_cmpint (g_settings_get_int (settings, "val"), ==, 33);
    2626                 :             : 
    2627                 :             : G_GNUC_BEGIN_IGNORE_DEPRECATIONS
    2628                 :           1 :   value = g_variant_new_int32 (1);
    2629                 :           1 :   g_assert_false (g_settings_range_check (settings, "val", value));
    2630                 :           1 :   g_variant_unref (value);
    2631                 :           1 :   value = g_variant_new_int32 (33);
    2632                 :           1 :   g_assert_true (g_settings_range_check (settings, "val", value));
    2633                 :           1 :   g_variant_unref (value);
    2634                 :           1 :   value = g_variant_new_int32 (45);
    2635                 :           1 :   g_assert_false (g_settings_range_check (settings, "val", value));
    2636                 :           1 :   g_variant_unref (value);
    2637                 :             : G_GNUC_END_IGNORE_DEPRECATIONS
    2638                 :             : 
    2639                 :           1 :   g_object_unref (direct);
    2640                 :           1 :   g_object_unref (settings);
    2641                 :           1 : }
    2642                 :             : 
    2643                 :             : static gboolean
    2644                 :           6 : strv_set_equal (const gchar * const *strv, ...)
    2645                 :             : {
    2646                 :             :   gsize count;
    2647                 :             :   va_list list;
    2648                 :             :   const gchar *str;
    2649                 :             :   gboolean res;
    2650                 :             : 
    2651                 :           6 :   res = TRUE;
    2652                 :           6 :   count = 0;
    2653                 :           6 :   va_start (list, strv);
    2654                 :             :   while (1)
    2655                 :             :     {
    2656                 :          31 :       str = va_arg (list, const gchar *);
    2657                 :          31 :       if (str == NULL)
    2658                 :           6 :         break;
    2659                 :          25 :       if (!g_strv_contains (strv, str))
    2660                 :             :         {
    2661                 :           0 :           res = FALSE;
    2662                 :           0 :           break;
    2663                 :             :         }
    2664                 :          25 :       count++;
    2665                 :             :     }
    2666                 :           6 :   va_end (list);
    2667                 :             : 
    2668                 :           6 :   if (res)
    2669                 :           6 :     res = g_strv_length ((gchar**)strv) == count;
    2670                 :             : 
    2671                 :           6 :   return res;
    2672                 :             : }
    2673                 :             : 
    2674                 :             : static void
    2675                 :           1 : test_list_items (void)
    2676                 :             : {
    2677                 :             :   GSettingsSchema *schema;
    2678                 :             :   GSettings *settings;
    2679                 :             :   gchar **children;
    2680                 :             :   gchar **keys;
    2681                 :             : 
    2682                 :           1 :   settings = g_settings_new ("org.gtk.test");
    2683                 :           1 :   g_object_get (settings, "settings-schema", &schema, NULL);
    2684                 :           1 :   children = g_settings_list_children (settings);
    2685                 :           1 :   keys = g_settings_schema_list_keys (schema);
    2686                 :             : 
    2687                 :           1 :   g_assert_true (strv_set_equal ((const gchar * const *) children, "basic-types", "complex-types", "localized", NULL));
    2688                 :           1 :   g_assert_true (strv_set_equal ((const gchar * const *) keys, "greeting", "farewell", NULL));
    2689                 :             : 
    2690                 :           1 :   g_strfreev (children);
    2691                 :           1 :   g_strfreev (keys);
    2692                 :             : 
    2693                 :           1 :   g_settings_schema_unref (schema);
    2694                 :           1 :   g_object_unref (settings);
    2695                 :           1 : }
    2696                 :             : 
    2697                 :             : static void
    2698                 :           1 : test_list_schemas (void)
    2699                 :             : {
    2700                 :             :   const gchar * const *schemas;
    2701                 :             :   const gchar * const *relocs;
    2702                 :             : 
    2703                 :             : G_GNUC_BEGIN_IGNORE_DEPRECATIONS
    2704                 :           1 :   relocs = g_settings_list_relocatable_schemas ();
    2705                 :           1 :   schemas = g_settings_list_schemas ();
    2706                 :             : G_GNUC_END_IGNORE_DEPRECATIONS
    2707                 :             : 
    2708                 :           1 :   g_assert_true (strv_set_equal (relocs,
    2709                 :             :                                  "org.gtk.test.no-path",
    2710                 :             :                                  "org.gtk.test.extends.base",
    2711                 :             :                                  "org.gtk.test.extends.extended",
    2712                 :             :                                  NULL));
    2713                 :             : 
    2714                 :           1 :   g_assert_true (strv_set_equal (schemas,
    2715                 :             :                                  "org.gtk.test",
    2716                 :             :                                  "org.gtk.test.basic-types",
    2717                 :             :                                  "org.gtk.test.complex-types",
    2718                 :             :                                  "org.gtk.test.localized",
    2719                 :             :                                  "org.gtk.test.binding",
    2720                 :             :                                  "org.gtk.test.enums",
    2721                 :             :                                  "org.gtk.test.enums.direct",
    2722                 :             :                                  "org.gtk.test.range",
    2723                 :             :                                  "org.gtk.test.range.direct",
    2724                 :             :                                  "org.gtk.test.mapped",
    2725                 :             :                                  "org.gtk.test.descriptions",
    2726                 :             :                                  "org.gtk.test.per-desktop",
    2727                 :             :                                  NULL));
    2728                 :           1 : }
    2729                 :             : 
    2730                 :             : static gboolean
    2731                 :           3 : map_func (GVariant *value,
    2732                 :             :           gpointer *result,
    2733                 :             :           gpointer  user_data)
    2734                 :             : {
    2735                 :           3 :   gint *state = user_data;
    2736                 :             :   gint v;
    2737                 :             : 
    2738                 :           3 :   if (value)
    2739                 :           2 :     v = g_variant_get_int32 (value);
    2740                 :             :   else
    2741                 :           1 :     v = -1;
    2742                 :             : 
    2743                 :           3 :   if (*state == 0)
    2744                 :             :     {
    2745                 :           1 :       g_assert_cmpint (v, ==, 1);
    2746                 :           1 :       (*state)++;
    2747                 :           1 :       return FALSE;
    2748                 :             :     }
    2749                 :           2 :   else if (*state == 1)
    2750                 :             :     {
    2751                 :           1 :       g_assert_cmpint (v, ==, 0);
    2752                 :           1 :       (*state)++;
    2753                 :           1 :       return FALSE;
    2754                 :             :     }
    2755                 :             :   else
    2756                 :             :     {
    2757                 :           1 :       g_assert_null (value);
    2758                 :           1 :       *result = g_variant_new_int32 (5);
    2759                 :           1 :       return TRUE;
    2760                 :             :     }
    2761                 :             : }
    2762                 :             : 
    2763                 :             : static void
    2764                 :           1 : test_get_mapped (void)
    2765                 :             : {
    2766                 :             :   GSettings *settings;
    2767                 :             :   gint state;
    2768                 :             :   gpointer p;
    2769                 :             :   gint val;
    2770                 :             : 
    2771                 :           1 :   settings = g_settings_new ("org.gtk.test.mapped");
    2772                 :           1 :   g_settings_set_int (settings, "val", 1);
    2773                 :             : 
    2774                 :           1 :   state = 0;
    2775                 :           1 :   p = g_settings_get_mapped (settings, "val", map_func, &state);
    2776                 :           1 :   val = g_variant_get_int32 ((GVariant*)p);
    2777                 :           1 :   g_assert_cmpint (val, ==, 5);
    2778                 :             : 
    2779                 :           1 :   g_variant_unref (p);
    2780                 :           1 :   g_object_unref (settings);
    2781                 :           1 : }
    2782                 :             : 
    2783                 :             : static void
    2784                 :           1 : test_get_range (void)
    2785                 :             : {
    2786                 :             :   GSettings *settings;
    2787                 :             :   GVariant *range;
    2788                 :             : 
    2789                 :             : G_GNUC_BEGIN_IGNORE_DEPRECATIONS
    2790                 :           1 :   settings = g_settings_new ("org.gtk.test.range");
    2791                 :           1 :   range = g_settings_get_range (settings, "val");
    2792                 :           1 :   check_and_free (range, "('range', <(2, 44)>)");
    2793                 :           1 :   g_object_unref (settings);
    2794                 :             : 
    2795                 :           1 :   settings = g_settings_new ("org.gtk.test.enums");
    2796                 :           1 :   range = g_settings_get_range (settings, "test");
    2797                 :           1 :   check_and_free (range, "('enum', <['foo', 'bar', 'baz', 'quux']>)");
    2798                 :           1 :   g_object_unref (settings);
    2799                 :             : 
    2800                 :           1 :   settings = g_settings_new ("org.gtk.test.enums");
    2801                 :           1 :   range = g_settings_get_range (settings, "f-test");
    2802                 :           1 :   check_and_free (range, "('flags', "
    2803                 :             :                   "<['mourning', 'laughing', 'talking', 'walking']>)");
    2804                 :           1 :   g_object_unref (settings);
    2805                 :             : 
    2806                 :           1 :   settings = g_settings_new ("org.gtk.test");
    2807                 :           1 :   range = g_settings_get_range (settings, "greeting");
    2808                 :           1 :   check_and_free (range, "('type', <@as []>)");
    2809                 :           1 :   g_object_unref (settings);
    2810                 :             : G_GNUC_END_IGNORE_DEPRECATIONS
    2811                 :           1 : }
    2812                 :             : 
    2813                 :             : static void
    2814                 :           1 : test_schema_source (void)
    2815                 :             : {
    2816                 :             :   GSettingsSchemaSource *parent;
    2817                 :             :   GSettingsSchemaSource *source;
    2818                 :             :   GSettingsBackend *backend;
    2819                 :             :   GSettingsSchema *schema;
    2820                 :           1 :   GError *error = NULL;
    2821                 :             :   GSettings *settings, *child;
    2822                 :             :   gboolean enabled;
    2823                 :             : 
    2824                 :           1 :   backend = g_settings_backend_get_default ();
    2825                 :             : 
    2826                 :             :   /* make sure it fails properly */
    2827                 :           1 :   parent = g_settings_schema_source_get_default ();
    2828                 :           1 :   source = g_settings_schema_source_new_from_directory ("/path/that/does/not/exist", parent,  TRUE, &error);
    2829                 :           1 :   g_assert_null (source);
    2830                 :           1 :   g_assert_error (error, G_FILE_ERROR, G_FILE_ERROR_NOENT);
    2831                 :           1 :   g_clear_error (&error);
    2832                 :             : 
    2833                 :             :   /* Test error handling of corrupt compiled files. */
    2834                 :           1 :   source = g_settings_schema_source_new_from_directory ("schema-source-corrupt", parent, TRUE, &error);
    2835                 :           1 :   g_assert_error (error, G_FILE_ERROR, G_FILE_ERROR_INVAL);
    2836                 :           1 :   g_assert_null (source);
    2837                 :           1 :   g_clear_error (&error);
    2838                 :             : 
    2839                 :             :   /* Test error handling of empty compiled files. */
    2840                 :           1 :   source = g_settings_schema_source_new_from_directory ("schema-source-empty", parent, TRUE, &error);
    2841                 :           1 :   g_assert_error (error, G_FILE_ERROR, G_FILE_ERROR_INVAL);
    2842                 :           1 :   g_assert_null (source);
    2843                 :           1 :   g_clear_error (&error);
    2844                 :             : 
    2845                 :             :   /* create a source with the parent */
    2846                 :           1 :   source = g_settings_schema_source_new_from_directory ("schema-source", parent, TRUE, &error);
    2847                 :           1 :   g_assert_no_error (error);
    2848                 :           1 :   g_assert_nonnull (source);
    2849                 :             : 
    2850                 :             :   /* check recursive lookups are working */
    2851                 :           1 :   schema = g_settings_schema_source_lookup (source, "org.gtk.test", TRUE);
    2852                 :           1 :   g_assert_nonnull (schema);
    2853                 :           1 :   g_settings_schema_unref (schema);
    2854                 :             : 
    2855                 :             :   /* check recursive lookups for non-existent schemas */
    2856                 :           1 :   schema = g_settings_schema_source_lookup (source, "org.gtk.doesnotexist", TRUE);
    2857                 :           1 :   g_assert_null (schema);
    2858                 :             : 
    2859                 :             :   /* check non-recursive for schema that only exists in lower layers */
    2860                 :           1 :   schema = g_settings_schema_source_lookup (source, "org.gtk.test", FALSE);
    2861                 :           1 :   g_assert_null (schema);
    2862                 :             : 
    2863                 :             :   /* check non-recursive lookup for non-existent */
    2864                 :           1 :   schema = g_settings_schema_source_lookup (source, "org.gtk.doesnotexist", FALSE);
    2865                 :           1 :   g_assert_null (schema);
    2866                 :             : 
    2867                 :             :   /* check non-recursive for schema that exists in toplevel */
    2868                 :           1 :   schema = g_settings_schema_source_lookup (source, "org.gtk.schemasourcecheck", FALSE);
    2869                 :           1 :   g_assert_nonnull (schema);
    2870                 :           1 :   g_settings_schema_unref (schema);
    2871                 :             : 
    2872                 :             :   /* check recursive for schema that exists in toplevel */
    2873                 :           1 :   schema = g_settings_schema_source_lookup (source, "org.gtk.schemasourcecheck", TRUE);
    2874                 :           1 :   g_assert_nonnull (schema);
    2875                 :             : 
    2876                 :             :   /* try to use it for something */
    2877                 :           1 :   settings = g_settings_new_full (schema, backend, "/test/");
    2878                 :           1 :   g_settings_schema_unref (schema);
    2879                 :           1 :   enabled = FALSE;
    2880                 :           1 :   g_settings_get (settings, "enabled", "b", &enabled);
    2881                 :           1 :   g_assert_true (enabled);
    2882                 :             : 
    2883                 :             :   /* Check that child schemas are resolved from the correct schema source, see glib#1884 */
    2884                 :           1 :   child = g_settings_get_child (settings, "child");
    2885                 :           1 :   g_settings_get (settings, "enabled", "b", &enabled);
    2886                 :             : 
    2887                 :           1 :   g_object_unref (child);
    2888                 :           1 :   g_object_unref (settings);
    2889                 :           1 :   g_settings_schema_source_unref (source);
    2890                 :             : 
    2891                 :             :   /* try again, but with no parent */
    2892                 :           1 :   source = g_settings_schema_source_new_from_directory ("schema-source", NULL, FALSE, NULL);
    2893                 :           1 :   g_assert_nonnull (source);
    2894                 :             : 
    2895                 :             :   /* should not find it this time, even if recursive... */
    2896                 :           1 :   schema = g_settings_schema_source_lookup (source, "org.gtk.test", FALSE);
    2897                 :           1 :   g_assert_null (schema);
    2898                 :           1 :   schema = g_settings_schema_source_lookup (source, "org.gtk.test", TRUE);
    2899                 :           1 :   g_assert_null (schema);
    2900                 :             : 
    2901                 :             :   /* should still find our own... */
    2902                 :           1 :   schema = g_settings_schema_source_lookup (source, "org.gtk.schemasourcecheck", TRUE);
    2903                 :           1 :   g_assert_nonnull (schema);
    2904                 :           1 :   g_settings_schema_unref (schema);
    2905                 :           1 :   schema = g_settings_schema_source_lookup (source, "org.gtk.schemasourcecheck", FALSE);
    2906                 :           1 :   g_assert_nonnull (schema);
    2907                 :           1 :   g_settings_schema_unref (schema);
    2908                 :             : 
    2909                 :           1 :   g_settings_schema_source_unref (source);
    2910                 :           1 :   g_object_unref (backend);
    2911                 :           1 : }
    2912                 :             : 
    2913                 :             : static void
    2914                 :           1 : test_schema_list_keys (void)
    2915                 :             : {
    2916                 :             :   gchar                 **keys;
    2917                 :           1 :   GSettingsSchemaSource  *src    = g_settings_schema_source_get_default ();
    2918                 :           1 :   GSettingsSchema        *schema = g_settings_schema_source_lookup (src, "org.gtk.test", TRUE);
    2919                 :           1 :   g_assert_nonnull (schema);
    2920                 :             : 
    2921                 :           1 :   keys = g_settings_schema_list_keys (schema);
    2922                 :             : 
    2923                 :           1 :   g_assert_true (strv_set_equal ((const gchar * const *) keys,
    2924                 :             :                                  "greeting",
    2925                 :             :                                  "farewell",
    2926                 :             :                                  NULL));
    2927                 :             : 
    2928                 :           1 :   g_strfreev (keys);
    2929                 :           1 :   g_settings_schema_unref (schema);
    2930                 :           1 : }
    2931                 :             : 
    2932                 :             : static void
    2933                 :           1 : test_actions (void)
    2934                 :             : {
    2935                 :             :   GAction *string, *toggle;
    2936                 :             :   gboolean c1, c2, c3;
    2937                 :             :   GSettings *settings;
    2938                 :             :   gchar *name;
    2939                 :             :   GVariantType *param_type;
    2940                 :             :   gboolean enabled;
    2941                 :             :   GVariantType *state_type;
    2942                 :             :   GVariant *state;
    2943                 :             : 
    2944                 :           1 :   settings = g_settings_new ("org.gtk.test.basic-types");
    2945                 :           1 :   string = g_settings_create_action (settings, "test-string");
    2946                 :           1 :   toggle = g_settings_create_action (settings, "test-boolean");
    2947                 :           1 :   g_object_unref (settings); /* should be held by the actions */
    2948                 :             : 
    2949                 :           1 :   g_signal_connect (settings, "changed", G_CALLBACK (changed_cb2), &c1);
    2950                 :           1 :   g_signal_connect (string, "notify::state", G_CALLBACK (changed_cb2), &c2);
    2951                 :           1 :   g_signal_connect (toggle, "notify::state", G_CALLBACK (changed_cb2), &c3);
    2952                 :             : 
    2953                 :           1 :   c1 = c2 = c3 = FALSE;
    2954                 :           1 :   g_settings_set_string (settings, "test-string", "hello world");
    2955                 :           1 :   check_and_free (g_action_get_state (string), "'hello world'");
    2956                 :           1 :   g_assert_true (c1 && c2 && !c3);
    2957                 :           1 :   c1 = c2 = c3 = FALSE;
    2958                 :             : 
    2959                 :           1 :   g_action_activate (string, g_variant_new_string ("hihi"));
    2960                 :           1 :   check_and_free (g_settings_get_value (settings, "test-string"), "'hihi'");
    2961                 :           1 :   g_assert_true (c1 && c2 && !c3);
    2962                 :           1 :   c1 = c2 = c3 = FALSE;
    2963                 :             : 
    2964                 :           1 :   g_action_change_state (string, g_variant_new_string ("kthxbye"));
    2965                 :           1 :   check_and_free (g_settings_get_value (settings, "test-string"), "'kthxbye'");
    2966                 :           1 :   g_assert_true (c1 && c2 && !c3);
    2967                 :           1 :   c1 = c2 = c3 = FALSE;
    2968                 :             : 
    2969                 :           1 :   g_action_change_state (toggle, g_variant_new_boolean (TRUE));
    2970                 :           1 :   g_assert_true (g_settings_get_boolean (settings, "test-boolean"));
    2971                 :           1 :   g_assert_true (c1 && !c2 && c3);
    2972                 :           1 :   c1 = c2 = c3 = FALSE;
    2973                 :             : 
    2974                 :           1 :   g_action_activate (toggle, NULL);
    2975                 :           1 :   g_assert_false (g_settings_get_boolean (settings, "test-boolean"));
    2976                 :           1 :   g_assert_true (c1 && !c2 && c3);
    2977                 :             : 
    2978                 :           1 :   g_object_get (string,
    2979                 :             :                 "name", &name,
    2980                 :             :                 "parameter-type", &param_type,
    2981                 :             :                 "enabled", &enabled,
    2982                 :             :                 "state-type", &state_type,
    2983                 :             :                 "state", &state,
    2984                 :             :                 NULL);
    2985                 :             : 
    2986                 :           1 :   g_assert_cmpstr (name, ==, "test-string");
    2987                 :           1 :   g_assert_true (g_variant_type_equal (param_type, G_VARIANT_TYPE_STRING));
    2988                 :           1 :   g_assert_true (enabled);
    2989                 :           1 :   g_assert_true (g_variant_type_equal (state_type, G_VARIANT_TYPE_STRING));
    2990                 :           1 :   g_assert_cmpstr (g_variant_get_string (state, NULL), ==, "kthxbye");
    2991                 :             : 
    2992                 :           1 :   g_free (name);
    2993                 :           1 :   g_variant_type_free (param_type);
    2994                 :           1 :   g_variant_type_free (state_type);
    2995                 :           1 :   g_variant_unref (state);
    2996                 :             : 
    2997                 :           1 :   g_object_unref (string);
    2998                 :           1 :   g_object_unref (toggle);
    2999                 :           1 : }
    3000                 :             : 
    3001                 :             : static void
    3002                 :           1 : test_null_backend (void)
    3003                 :             : {
    3004                 :             :   GSettingsBackend *backend;
    3005                 :             :   GSettings *settings;
    3006                 :             :   gchar *str;
    3007                 :             :   gboolean writable;
    3008                 :             : 
    3009                 :           1 :   backend = g_null_settings_backend_new ();
    3010                 :           1 :   settings = g_settings_new_with_backend_and_path ("org.gtk.test", backend, "/tests/");
    3011                 :             : 
    3012                 :           1 :   g_object_get (settings, "schema-id", &str, NULL);
    3013                 :           1 :   g_assert_cmpstr (str, ==, "org.gtk.test");
    3014                 :           1 :   g_free (str);
    3015                 :             : 
    3016                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "Hello, earthlings");
    3017                 :             : 
    3018                 :           1 :   g_settings_set (settings, "greeting", "s", "goodbye world");
    3019                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "Hello, earthlings");
    3020                 :             : 
    3021                 :           1 :   writable = g_settings_is_writable (settings, "greeting");
    3022                 :           1 :   g_assert_false (writable);
    3023                 :             : 
    3024                 :           1 :   g_settings_reset (settings, "greeting");
    3025                 :             : 
    3026                 :           1 :   g_settings_delay (settings);
    3027                 :           1 :   g_settings_set (settings, "greeting", "s", "goodbye world");
    3028                 :           1 :   g_settings_apply (settings);
    3029                 :           1 :   settings_assert_cmpstr (settings, "greeting", ==, "Hello, earthlings");
    3030                 :             : 
    3031                 :           1 :   g_object_unref (settings);
    3032                 :           1 :   g_object_unref (backend);
    3033                 :           1 : }
    3034                 :             : 
    3035                 :             : static void
    3036                 :           1 : test_memory_backend (void)
    3037                 :             : {
    3038                 :             :   GSettingsBackend *backend;
    3039                 :             : 
    3040                 :           1 :   backend = g_memory_settings_backend_new ();
    3041                 :           1 :   g_assert_true (G_IS_SETTINGS_BACKEND (backend));
    3042                 :           1 :   g_object_unref (backend);
    3043                 :           1 : }
    3044                 :             : 
    3045                 :             : static void
    3046                 :           1 : test_read_descriptions (void)
    3047                 :             : {
    3048                 :             :   GSettingsSchema *schema;
    3049                 :             :   GSettingsSchemaKey *key;
    3050                 :             :   GSettings *settings;
    3051                 :             : 
    3052                 :           1 :   settings = g_settings_new ("org.gtk.test");
    3053                 :           1 :   g_object_get (settings, "settings-schema", &schema, NULL);
    3054                 :           1 :   key = g_settings_schema_get_key (schema, "greeting");
    3055                 :             : 
    3056                 :           1 :   g_assert_cmpstr (g_settings_schema_key_get_summary (key), ==, "A greeting");
    3057                 :           1 :   g_assert_cmpstr (g_settings_schema_key_get_description (key), ==, "Greeting of the invading martians");
    3058                 :             : 
    3059                 :           1 :   g_settings_schema_key_unref (key);
    3060                 :           1 :   g_settings_schema_unref (schema);
    3061                 :             : 
    3062                 :           1 :   g_object_unref (settings);
    3063                 :             : 
    3064                 :           1 :   settings = g_settings_new ("org.gtk.test.descriptions");
    3065                 :           1 :   g_object_get (settings, "settings-schema", &schema, NULL);
    3066                 :           1 :   key = g_settings_schema_get_key (schema, "a");
    3067                 :             : 
    3068                 :           1 :   g_assert_cmpstr (g_settings_schema_key_get_summary (key), ==,
    3069                 :             :                    "a paragraph.\n\n"
    3070                 :             :                    "with some whitespace.\n\n"
    3071                 :             :                    "because not everyone has a great editor.\n\n"
    3072                 :             :                    "lots of space is as one.");
    3073                 :             : 
    3074                 :           1 :   g_settings_schema_key_unref (key);
    3075                 :           1 :   g_settings_schema_unref (schema);
    3076                 :             : 
    3077                 :           1 :   g_object_unref (settings);
    3078                 :           1 : }
    3079                 :             : 
    3080                 :             : static void
    3081                 :           1 : test_default_value (void)
    3082                 :             : {
    3083                 :             :   GSettings *settings;
    3084                 :             :   GSettingsSchema *schema;
    3085                 :             :   GSettingsSchemaKey *key;
    3086                 :             :   GVariant *v;
    3087                 :             :   const gchar *str;
    3088                 :             :   gchar *s;
    3089                 :             : 
    3090                 :           1 :   settings = g_settings_new ("org.gtk.test");
    3091                 :           1 :   g_object_get (settings, "settings-schema", &schema, NULL);
    3092                 :           1 :   key = g_settings_schema_get_key (schema, "greeting");
    3093                 :           1 :   g_settings_schema_unref (schema);
    3094                 :           1 :   g_settings_schema_key_ref (key);
    3095                 :             : 
    3096                 :           1 :   g_assert_true (g_variant_type_equal (g_settings_schema_key_get_value_type (key), G_VARIANT_TYPE_STRING));
    3097                 :             : 
    3098                 :           1 :   v = g_settings_schema_key_get_default_value (key);
    3099                 :           1 :   str = g_variant_get_string (v, NULL);
    3100                 :           1 :   g_assert_cmpstr (str, ==, "Hello, earthlings");
    3101                 :           1 :   g_variant_unref (v);
    3102                 :             : 
    3103                 :           1 :   g_settings_schema_key_unref (key);
    3104                 :           1 :   g_settings_schema_key_unref (key);
    3105                 :             : 
    3106                 :           1 :   g_settings_set (settings, "greeting", "s", "goodbye world");
    3107                 :             : 
    3108                 :           1 :   v = g_settings_get_user_value (settings, "greeting");
    3109                 :           1 :   str = g_variant_get_string (v, NULL);
    3110                 :           1 :   g_assert_cmpstr (str, ==, "goodbye world");
    3111                 :           1 :   g_variant_unref (v);
    3112                 :             : 
    3113                 :           1 :   v = g_settings_get_default_value (settings, "greeting");
    3114                 :           1 :   str = g_variant_get_string (v, NULL);
    3115                 :           1 :   g_assert_cmpstr (str, ==, "Hello, earthlings");
    3116                 :           1 :   g_variant_unref (v);
    3117                 :             : 
    3118                 :           1 :   g_settings_reset (settings, "greeting");
    3119                 :             : 
    3120                 :           1 :   v = g_settings_get_user_value (settings, "greeting");
    3121                 :           1 :   g_assert_null (v);
    3122                 :             : 
    3123                 :           1 :   s = g_settings_get_string (settings, "greeting");
    3124                 :           1 :   g_assert_cmpstr (s, ==, "Hello, earthlings");
    3125                 :           1 :   g_free (s);
    3126                 :             : 
    3127                 :           1 :   g_object_unref (settings);
    3128                 :           1 : }
    3129                 :             : 
    3130                 :             : static gboolean
    3131                 :           2 : string_map_func (GVariant *value,
    3132                 :             :                  gpointer *result,
    3133                 :             :                  gpointer  user_data)
    3134                 :             : {
    3135                 :             :   const gchar *str;
    3136                 :             : 
    3137                 :           2 :   str = g_variant_get_string (value, NULL);
    3138                 :           2 :   *result = g_variant_new_string (str);
    3139                 :             : 
    3140                 :           2 :   return TRUE;
    3141                 :             : }
    3142                 :             : 
    3143                 :             : /* Test that per-desktop values from org.gtk.test.gschema.override
    3144                 :             :  * does not change default value if current desktop is not listed in
    3145                 :             :  * $XDG_CURRENT_DESKTOP.
    3146                 :             :  */
    3147                 :             : static void
    3148                 :           1 : test_per_desktop (void)
    3149                 :             : {
    3150                 :             :   GSettings *settings;
    3151                 :             :   GAction *action_string;
    3152                 :             :   TestObject *obj;
    3153                 :             :   gpointer p;
    3154                 :             :   gchar *str;
    3155                 :             : 
    3156                 :           1 :   settings = g_settings_new ("org.gtk.test.per-desktop");
    3157                 :           1 :   obj = test_object_new ();
    3158                 :             : 
    3159                 :           1 :   if (!g_test_subprocess ())
    3160                 :             :     {
    3161                 :           1 :       g_test_trap_subprocess ("/gsettings/per-desktop/subprocess", 0,
    3162                 :             :                               G_TEST_SUBPROCESS_DEFAULT);
    3163                 :           1 :       g_test_trap_assert_passed ();
    3164                 :             :     }
    3165                 :             : 
    3166                 :           1 :   str = g_settings_get_string (settings, "desktop");
    3167                 :           1 :   g_assert_cmpstr (str, ==, "GNOME");
    3168                 :           1 :   g_free (str);
    3169                 :             : 
    3170                 :           1 :   p = g_settings_get_mapped (settings, "desktop", string_map_func, NULL);
    3171                 :             : 
    3172                 :           1 :   str = g_variant_dup_string (p, NULL);
    3173                 :           1 :   g_assert_cmpstr (str, ==, "GNOME");
    3174                 :           1 :   g_free (str);
    3175                 :             : 
    3176                 :           1 :   g_variant_unref (p);
    3177                 :             : 
    3178                 :           1 :   g_settings_bind (settings, "desktop", obj, "string", G_SETTINGS_BIND_DEFAULT);
    3179                 :             : 
    3180                 :           1 :   g_object_get (obj, "string", &str, NULL);
    3181                 :           1 :   g_assert_cmpstr (str, ==, "GNOME");
    3182                 :           1 :   g_free (str);
    3183                 :             : 
    3184                 :           1 :   action_string = g_settings_create_action (settings, "desktop");
    3185                 :           1 :   check_and_free (g_action_get_state (action_string), "'GNOME'");
    3186                 :             : 
    3187                 :           1 :   g_clear_object (&action_string);
    3188                 :           1 :   g_object_unref (settings);
    3189                 :           1 :   g_object_unref (obj);
    3190                 :           1 : }
    3191                 :             : 
    3192                 :             : /* Test that per-desktop values from org.gtk.test.gschema.override
    3193                 :             :  * are successfully loaded based on the value of $XDG_CURRENT_DESKTOP.
    3194                 :             :  */
    3195                 :             : static void
    3196                 :           1 : test_per_desktop_subprocess (void)
    3197                 :             : {
    3198                 :             :   GSettings *settings;
    3199                 :             :   GAction *action_string;
    3200                 :             :   TestObject *obj;
    3201                 :             :   gpointer p;
    3202                 :             :   gchar *str;
    3203                 :             : 
    3204                 :           1 :   g_setenv ("XDG_CURRENT_DESKTOP", "GNOME-Classic:GNOME", TRUE);
    3205                 :             : 
    3206                 :           1 :   settings = g_settings_new ("org.gtk.test.per-desktop");
    3207                 :           1 :   obj = test_object_new ();
    3208                 :             : 
    3209                 :           1 :   str = g_settings_get_string (settings, "desktop");
    3210                 :           1 :   g_assert_cmpstr (str, ==, "GNOME Classic");
    3211                 :           1 :   g_free (str);
    3212                 :             : 
    3213                 :           1 :   p = g_settings_get_mapped (settings, "desktop", string_map_func, NULL);
    3214                 :             : 
    3215                 :           1 :   str = g_variant_dup_string (p, NULL);
    3216                 :           1 :   g_assert_cmpstr (str, ==, "GNOME Classic");
    3217                 :           1 :   g_free (str);
    3218                 :             : 
    3219                 :           1 :   g_variant_unref (p);
    3220                 :             : 
    3221                 :           1 :   g_settings_bind (settings, "desktop", obj, "string", G_SETTINGS_BIND_DEFAULT);
    3222                 :             : 
    3223                 :           1 :   g_object_get (obj, "string", &str, NULL);
    3224                 :           1 :   g_assert_cmpstr (str, ==, "GNOME Classic");
    3225                 :           1 :   g_free (str);
    3226                 :             : 
    3227                 :           1 :   action_string = g_settings_create_action (settings, "desktop");
    3228                 :           1 :   check_and_free (g_action_get_state (action_string), "'GNOME Classic'");
    3229                 :             : 
    3230                 :           1 :   g_clear_object (&action_string);
    3231                 :           1 :   g_object_unref (settings);
    3232                 :           1 :   g_object_unref (obj);
    3233                 :           1 : }
    3234                 :             : 
    3235                 :             : static void
    3236                 :           1 : test_extended_schema (void)
    3237                 :             : {
    3238                 :             :   GSettingsSchema *schema;
    3239                 :             :   GSettings *settings;
    3240                 :             :   gchar **keys;
    3241                 :             : 
    3242                 :           1 :   settings = g_settings_new_with_path ("org.gtk.test.extends.extended", "/test/extendes/");
    3243                 :           1 :   g_object_get (settings, "settings-schema", &schema, NULL);
    3244                 :           1 :   keys = g_settings_schema_list_keys (schema);
    3245                 :           1 :   g_assert_true (strv_set_equal ((const gchar * const *) keys, "int32", "string", "another-int32", NULL));
    3246                 :           1 :   g_strfreev (keys);
    3247                 :           1 :   g_object_unref (settings);
    3248                 :           1 :   g_settings_schema_unref (schema);
    3249                 :           1 : }
    3250                 :             : 
    3251                 :             : int
    3252                 :           4 : main (int argc, char *argv[])
    3253                 :             : {
    3254                 :             :   gchar *schema_text;
    3255                 :             :   gchar *override_text;
    3256                 :             :   gchar *enums;
    3257                 :             :   gint result;
    3258                 :           4 :   const KeyfileTestData keyfile_test_data_explicit_path = { "/tests/", "root", "tests", "/" };
    3259                 :           4 :   const KeyfileTestData keyfile_test_data_empty_path = { "/", "root", "root", "/" };
    3260                 :           4 :   const KeyfileTestData keyfile_test_data_long_path = {
    3261                 :             :     "/tests/path/is/very/long/and/this/makes/some/comparisons/take/a/different/branch/",
    3262                 :             :     "root",
    3263                 :             :     "tests/path/is/very/long/and/this/makes/some/comparisons/take/a/different/branch",
    3264                 :             :     "/"
    3265                 :             :   };
    3266                 :             : 
    3267                 :             : /* Meson build sets this */
    3268                 :             : #ifdef TEST_LOCALE_PATH
    3269                 :           4 :   if (g_str_has_suffix (TEST_LOCALE_PATH, "LC_MESSAGES"))
    3270                 :             :     {
    3271                 :           4 :       locale_dir = TEST_LOCALE_PATH G_DIR_SEPARATOR_S ".." G_DIR_SEPARATOR_S "..";
    3272                 :             :     }
    3273                 :             : #endif
    3274                 :             : 
    3275                 :           4 :   setlocale (LC_ALL, "");
    3276                 :             : 
    3277                 :           4 :   g_test_init (&argc, &argv, NULL);
    3278                 :             : 
    3279                 :           4 :   if (!g_test_subprocess ())
    3280                 :             :     {
    3281                 :           1 :       GError *local_error = NULL;
    3282                 :           1 :       char *subprocess_stdout = NULL;
    3283                 :             : 
    3284                 :             :       /* A GVDB header is 6 guint32s, and requires a magic number in the first
    3285                 :             :        * two guint32s. A set of zero bytes of a greater length is considered
    3286                 :             :        * corrupt. */
    3287                 :           1 :       const guint8 gschemas_compiled_corrupt[sizeof (guint32) * 7] = { 0, };
    3288                 :             : 
    3289                 :           1 :       backend_set = g_getenv ("GSETTINGS_BACKEND") != NULL;
    3290                 :             : 
    3291                 :           1 :       g_setenv ("XDG_DATA_DIRS", ".", TRUE);
    3292                 :           1 :       g_setenv ("XDG_DATA_HOME", ".", TRUE);
    3293                 :           1 :       g_setenv ("GSETTINGS_SCHEMA_DIR", ".", TRUE);
    3294                 :           1 :       g_setenv ("XDG_CURRENT_DESKTOP", "", TRUE);
    3295                 :             : 
    3296                 :           1 :       if (!backend_set)
    3297                 :           1 :         g_setenv ("GSETTINGS_BACKEND", "memory", TRUE);
    3298                 :             : 
    3299                 :           1 :       g_remove ("org.gtk.test.enums.xml");
    3300                 :             :       /* #GLIB_MKENUMS is defined in meson.build */
    3301                 :           1 :       g_assert_true (g_spawn_command_line_sync (GLIB_MKENUMS " "
    3302                 :             :                                                 "--template " SRCDIR "/enums.xml.template "
    3303                 :             :                                                 SRCDIR "/testenum.h",
    3304                 :             :                                                 &enums, NULL, &result, NULL));
    3305                 :           1 :       g_assert_cmpint (result, ==, 0);
    3306                 :           1 :       g_assert_true (g_file_set_contents ("org.gtk.test.enums.xml", enums, -1, NULL));
    3307                 :           1 :       g_free (enums);
    3308                 :             : 
    3309                 :           1 :       g_assert_true (g_file_get_contents (SRCDIR "/org.gtk.test.gschema.xml.orig", &schema_text, NULL, NULL));
    3310                 :           1 :       g_assert_true (g_file_set_contents ("org.gtk.test.gschema.xml", schema_text, -1, NULL));
    3311                 :           1 :       g_free (schema_text);
    3312                 :             : 
    3313                 :           1 :       g_assert_true (g_file_get_contents (SRCDIR "/org.gtk.test.gschema.override.orig", &override_text, NULL, NULL));
    3314                 :           1 :       g_assert_true (g_file_set_contents ("org.gtk.test.gschema.override", override_text, -1, NULL));
    3315                 :           1 :       g_free (override_text);
    3316                 :             : 
    3317                 :           1 :       g_remove ("gschemas.compiled");
    3318                 :             :       /* #GLIB_COMPILE_SCHEMAS is defined in meson.build */
    3319                 :           1 :       g_assert_true (g_spawn_command_line_sync (GLIB_COMPILE_SCHEMAS " --targetdir=. "
    3320                 :             :                                                 "--schema-file=org.gtk.test.enums.xml "
    3321                 :             :                                                 "--schema-file=org.gtk.test.gschema.xml "
    3322                 :             :                                                 "--override-file=org.gtk.test.gschema.override",
    3323                 :             :                                                 &subprocess_stdout, NULL, &result, NULL));
    3324                 :           1 :       if (subprocess_stdout && *g_strstrip (subprocess_stdout) != '\0')
    3325                 :           1 :         g_test_message ("%s", subprocess_stdout);
    3326                 :           1 :       g_clear_pointer (&subprocess_stdout, g_free);
    3327                 :           1 :       g_assert_cmpint (result, ==, 0);
    3328                 :             : 
    3329                 :           1 :       g_remove ("schema-source/gschemas.compiled");
    3330                 :           1 :       g_mkdir ("schema-source", 0777);
    3331                 :           1 :       g_assert_true (g_spawn_command_line_sync (GLIB_COMPILE_SCHEMAS " --targetdir=schema-source "
    3332                 :             :                                                 "--schema-file=" SRCDIR "/org.gtk.schemasourcecheck.gschema.xml",
    3333                 :             :                                                 &subprocess_stdout, NULL, &result, NULL));
    3334                 :           1 :       if (subprocess_stdout && *g_strstrip (subprocess_stdout) != '\0')
    3335                 :           0 :         g_test_message ("%s", subprocess_stdout);
    3336                 :           1 :       g_clear_pointer (&subprocess_stdout, g_free);
    3337                 :           1 :       g_assert_cmpint (result, ==, 0);
    3338                 :             : 
    3339                 :           1 :       g_remove ("schema-source-corrupt/gschemas.compiled");
    3340                 :           1 :       g_mkdir ("schema-source-corrupt", 0777);
    3341                 :           1 :       g_file_set_contents ("schema-source-corrupt/gschemas.compiled",
    3342                 :             :                            (const gchar *) gschemas_compiled_corrupt,
    3343                 :             :                            sizeof (gschemas_compiled_corrupt),
    3344                 :             :                            &local_error);
    3345                 :           1 :       g_assert_no_error (local_error);
    3346                 :             : 
    3347                 :           1 :       g_remove ("schema-source-empty/gschemas.compiled");
    3348                 :           1 :       g_mkdir ("schema-source-empty", 0777);
    3349                 :           1 :       g_file_set_contents ("schema-source-empty/gschemas.compiled",
    3350                 :             :                            "", 0,
    3351                 :             :                            &local_error);
    3352                 :           1 :       g_assert_no_error (local_error);
    3353                 :             :    }
    3354                 :             : 
    3355                 :           4 :   g_test_add_func ("/gsettings/basic", test_basic);
    3356                 :             : 
    3357                 :           4 :   if (!backend_set)
    3358                 :             :     {
    3359                 :           4 :       g_test_add_func ("/gsettings/no-schema", test_no_schema);
    3360                 :           4 :       g_test_add_func ("/gsettings/unknown-key", test_unknown_key);
    3361                 :           4 :       g_test_add_func ("/gsettings/wrong-type", test_wrong_type);
    3362                 :           4 :       g_test_add_func ("/gsettings/wrong-path", test_wrong_path);
    3363                 :           4 :       g_test_add_func ("/gsettings/no-path", test_no_path);
    3364                 :             :     }
    3365                 :             : 
    3366                 :           4 :   g_test_add_func ("/gsettings/basic-types", test_basic_types);
    3367                 :           4 :   g_test_add_func ("/gsettings/complex-types", test_complex_types);
    3368                 :           4 :   g_test_add_func ("/gsettings/changes", test_changes);
    3369                 :             : 
    3370                 :           4 :   g_test_add_func ("/gsettings/l10n", test_l10n);
    3371                 :           4 :   g_test_add_func ("/gsettings/l10n-context", test_l10n_context);
    3372                 :           4 :   g_test_add_func ("/gsettings/l10n-time", test_l10n_time);
    3373                 :             : 
    3374                 :           4 :   g_test_add_func ("/gsettings/delay-apply", test_delay_apply);
    3375                 :           4 :   g_test_add_func ("/gsettings/delay-revert", test_delay_revert);
    3376                 :           4 :   g_test_add_func ("/gsettings/delay-child", test_delay_child);
    3377                 :           4 :   g_test_add_func ("/gsettings/delay-reset-key", test_delay_reset_key);
    3378                 :           4 :   g_test_add_func ("/gsettings/atomic", test_atomic);
    3379                 :             : 
    3380                 :           4 :   g_test_add_func ("/gsettings/simple-binding", test_simple_binding);
    3381                 :           4 :   g_test_add_func ("/gsettings/directional-binding", test_directional_binding);
    3382                 :           4 :   g_test_add_func ("/gsettings/custom-binding", test_custom_binding);
    3383                 :           4 :   g_test_add_func ("/gsettings/bind-with-mapping-closures", test_bind_with_mapping_closures);
    3384                 :           4 :   g_test_add_func ("/gsettings/bind-with-mapping-closures-parameters", test_bind_with_mapping_closures_parameters);
    3385                 :           4 :   g_test_add_func ("/gsettings/no-change-binding", test_no_change_binding);
    3386                 :           4 :   g_test_add_func ("/gsettings/unbinding", test_unbind);
    3387                 :           4 :   g_test_add_func ("/gsettings/writable-binding", test_bind_writable);
    3388                 :             : 
    3389                 :           4 :   if (!backend_set)
    3390                 :             :     {
    3391                 :           4 :       g_test_add_func ("/gsettings/typesafe-binding", test_typesafe_binding);
    3392                 :           4 :       g_test_add_func ("/gsettings/no-read-binding", test_no_read_binding);
    3393                 :           4 :       g_test_add_func ("/gsettings/no-read-binding/subprocess/fail", test_no_read_binding_fail);
    3394                 :           4 :       g_test_add_func ("/gsettings/no-read-binding/subprocess/pass", test_no_read_binding_pass);
    3395                 :           4 :       g_test_add_func ("/gsettings/no-write-binding", test_no_write_binding);
    3396                 :           4 :       g_test_add_func ("/gsettings/no-write-binding/subprocess/fail", test_no_write_binding_fail);
    3397                 :           4 :       g_test_add_func ("/gsettings/no-write-binding/subprocess/pass", test_no_write_binding_pass);
    3398                 :             :     }
    3399                 :             : 
    3400                 :           4 :   g_test_add ("/gsettings/keyfile", Fixture, NULL, setup, test_keyfile, teardown);
    3401                 :           4 :   g_test_add ("/gsettings/keyfile/explicit-path", Fixture, &keyfile_test_data_explicit_path, setup, test_keyfile_no_path, teardown);
    3402                 :           4 :   g_test_add ("/gsettings/keyfile/empty-path", Fixture, &keyfile_test_data_empty_path, setup, test_keyfile_no_path, teardown);
    3403                 :           4 :   g_test_add ("/gsettings/keyfile/long-path", Fixture, &keyfile_test_data_long_path, setup, test_keyfile_no_path, teardown);
    3404                 :           4 :   g_test_add ("/gsettings/keyfile/outside-root-path", Fixture, NULL, setup, test_keyfile_outside_root_path, teardown);
    3405                 :           4 :   g_test_add ("/gsettings/keyfile/no-root-group", Fixture, NULL, setup, test_keyfile_no_root_group, teardown);
    3406                 :           4 :   g_test_add_func ("/gsettings/child-schema", test_child_schema);
    3407                 :           4 :   g_test_add_func ("/gsettings/strinfo", test_strinfo);
    3408                 :           4 :   g_test_add_func ("/gsettings/enums", test_enums);
    3409                 :           4 :   g_test_add_func ("/gsettings/enums/subprocess/non-enum-key", test_enums_non_enum_key);
    3410                 :           4 :   g_test_add_func ("/gsettings/enums/subprocess/non-enum-value", test_enums_non_enum_value);
    3411                 :           4 :   g_test_add_func ("/gsettings/enums/subprocess/range", test_enums_range);
    3412                 :           4 :   g_test_add_func ("/gsettings/enums/subprocess/non-flags", test_enums_non_flags);
    3413                 :           4 :   g_test_add_func ("/gsettings/flags", test_flags);
    3414                 :           4 :   g_test_add_func ("/gsettings/flags/subprocess/non-flags-key", test_flags_non_flags_key);
    3415                 :           4 :   g_test_add_func ("/gsettings/flags/subprocess/non-flags-value", test_flags_non_flags_value);
    3416                 :           4 :   g_test_add_func ("/gsettings/flags/subprocess/range", test_flags_range);
    3417                 :           4 :   g_test_add_func ("/gsettings/flags/subprocess/non-enum", test_flags_non_enum);
    3418                 :           4 :   g_test_add_func ("/gsettings/range", test_range);
    3419                 :           4 :   g_test_add_func ("/gsettings/range/subprocess/high", test_range_high);
    3420                 :           4 :   g_test_add_func ("/gsettings/range/subprocess/low", test_range_low);
    3421                 :           4 :   g_test_add_func ("/gsettings/list-items", test_list_items);
    3422                 :           4 :   g_test_add_func ("/gsettings/list-schemas", test_list_schemas);
    3423                 :           4 :   g_test_add_func ("/gsettings/mapped", test_get_mapped);
    3424                 :           4 :   g_test_add_func ("/gsettings/get-range", test_get_range);
    3425                 :           4 :   g_test_add_func ("/gsettings/schema-source", test_schema_source);
    3426                 :           4 :   g_test_add_func ("/gsettings/schema-list-keys", test_schema_list_keys);
    3427                 :           4 :   g_test_add_func ("/gsettings/actions", test_actions);
    3428                 :           4 :   g_test_add_func ("/gsettings/null-backend", test_null_backend);
    3429                 :           4 :   g_test_add_func ("/gsettings/memory-backend", test_memory_backend);
    3430                 :           4 :   g_test_add_func ("/gsettings/read-descriptions", test_read_descriptions);
    3431                 :           4 :   g_test_add_func ("/gsettings/test-extended-schema", test_extended_schema);
    3432                 :           4 :   g_test_add_func ("/gsettings/default-value", test_default_value);
    3433                 :           4 :   g_test_add_func ("/gsettings/per-desktop", test_per_desktop);
    3434                 :           4 :   g_test_add_func ("/gsettings/per-desktop/subprocess", test_per_desktop_subprocess);
    3435                 :             : 
    3436                 :           4 :   result = g_test_run ();
    3437                 :             : 
    3438                 :           2 :   g_settings_sync ();
    3439                 :             : 
    3440                 :             :   /* FIXME: Due to the way #GSettings objects can be used without specifying a
    3441                 :             :    * backend, the default backend is leaked. In order to be able to run this
    3442                 :             :    * test under valgrind and get meaningful checking for real leaks, use this
    3443                 :             :    * hack to drop the final reference to the default #GSettingsBackend.
    3444                 :             :    *
    3445                 :             :    * This should not be used in production code. */
    3446                 :             :     {
    3447                 :             :       GSettingsBackend *backend;
    3448                 :             : 
    3449                 :           2 :       backend = g_settings_backend_get_default ();
    3450                 :           2 :       g_object_unref (backend);  /* reference from the *_get_default() call */
    3451                 :           2 :       g_assert_finalize_object (backend);  /* singleton reference owned by GLib */
    3452                 :             :     }
    3453                 :             : 
    3454                 :           2 :   return result;
    3455                 :             : }
        

Generated by: LCOV version 2.0-1