GSettings tests: reverse installed test complexity
[platform/upstream/glib.git] / gio / tests / gsettings.c
1 #include <stdlib.h>
2 #include <locale.h>
3 #include <libintl.h>
4 #include <gio/gio.h>
5 #include <gstdio.h>
6 #define G_SETTINGS_ENABLE_BACKEND
7 #include <gio/gsettingsbackend.h>
8
9 #include "testenum.h"
10
11 static gboolean backend_set;
12
13 /* These tests rely on the schemas in org.gtk.test.gschema.xml
14  * to be compiled and installed in the same directory.
15  */
16
17 static void
18 check_and_free (GVariant    *value,
19                 const gchar *expected)
20 {
21   gchar *printed;
22
23   printed = g_variant_print (value, TRUE);
24   g_assert_cmpstr (printed, ==, expected);
25   g_free (printed);
26
27   g_variant_unref (value);
28 }
29
30
31 /* Just to get warmed up: Read and set a string, and
32  * verify that can read the changed string back
33  */
34 static void
35 test_basic (void)
36 {
37   gchar *str = NULL;
38   GSettings *settings;
39
40   settings = g_settings_new ("org.gtk.test");
41
42   g_object_get (settings, "schema", &str, NULL);
43   g_assert_cmpstr (str, ==, "org.gtk.test");
44   g_free (str);
45
46   g_settings_get (settings, "greeting", "s", &str);
47   g_assert_cmpstr (str, ==, "Hello, earthlings");
48   g_free (str);
49
50   g_settings_set (settings, "greeting", "s", "goodbye world");
51   g_settings_get (settings, "greeting", "s", &str);
52   g_assert_cmpstr (str, ==, "goodbye world");
53   g_free (str);
54   str = NULL;
55
56   if (!backend_set && g_test_undefined ())
57     {
58       GSettings *tmp_settings = g_settings_new ("org.gtk.test");
59
60       g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
61                              "*g_settings_set_value*expects type*");
62       g_settings_set (tmp_settings, "greeting", "i", 555);
63       g_test_assert_expected_messages ();
64
65       g_object_unref (tmp_settings);
66     }
67
68   g_settings_get (settings, "greeting", "s", &str);
69   g_assert_cmpstr (str, ==, "goodbye world");
70   g_free (str);
71   str = NULL;
72
73   g_settings_reset (settings, "greeting");
74   str = g_settings_get_string (settings, "greeting");
75   g_assert_cmpstr (str, ==, "Hello, earthlings");
76   g_free (str);
77
78   g_settings_set (settings, "greeting", "s", "this is the end");
79   g_object_unref (settings);
80 }
81
82 /* Check that we get an error when getting a key
83  * that is not in the schema
84  */
85 static void
86 test_unknown_key_subprocess (void)
87 {
88   GSettings *settings;
89   GVariant *value;
90
91   settings = g_settings_new ("org.gtk.test");
92   value = g_settings_get_value (settings, "no_such_key");
93
94   g_assert (value == NULL);
95
96   g_object_unref (settings);
97 }
98
99 static void
100 test_unknown_key (void)
101 {
102   if (!g_test_undefined ())
103     return;
104
105   g_test_trap_subprocess ("/gsettings/unknown-key/subprocess", 0, 0);
106   g_test_trap_assert_failed ();
107   g_test_trap_assert_stderr ("*does not contain*");
108 }
109
110 /* Check that we get an error when the schema
111  * has not been installed
112  */
113 static void
114 test_no_schema_subprocess (void)
115 {
116   GSettings *settings;
117
118   settings = g_settings_new ("no.such.schema");
119
120   g_assert (settings == NULL);
121 }
122
123 static void
124 test_no_schema (void)
125 {
126   if (!g_test_undefined ())
127     return;
128
129   g_test_trap_subprocess ("/gsettings/no-schema/subprocess", 0, 0);
130   g_test_trap_assert_failed ();
131   g_test_trap_assert_stderr ("*Settings schema 'no.such.schema' is not installed*");
132 }
133
134 /* Check that we get an error when passing a type string
135  * that does not match the schema
136  */
137 static void
138 test_wrong_type (void)
139 {
140   GSettings *settings;
141   gchar *str = NULL;
142
143   if (!g_test_undefined ())
144     return;
145
146   settings = g_settings_new ("org.gtk.test");
147
148   g_test_expect_message ("GLib", G_LOG_LEVEL_CRITICAL,
149                          "*given value has a type of*");
150   g_test_expect_message ("GLib", G_LOG_LEVEL_CRITICAL,
151                          "*valid_format_string*");
152   g_settings_get (settings, "greeting", "o", &str);
153   g_test_assert_expected_messages ();
154
155   g_assert (str == NULL);
156
157   g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
158                          "*expects type 's'*");
159   g_settings_set (settings, "greeting", "o", "/a/path");
160   g_test_assert_expected_messages ();
161
162   g_object_unref (settings);
163 }
164
165 /* Check errors with explicit paths */
166 static void
167 test_wrong_path_subprocess (void)
168 {
169   GSettings *settings G_GNUC_UNUSED;
170
171   settings = g_settings_new_with_path ("org.gtk.test", "/wrong-path/");
172 }
173
174 static void
175 test_wrong_path (void)
176 {
177   if (!g_test_undefined ())
178     return;
179
180   g_test_trap_subprocess ("/gsettings/wrong-path/subprocess", 0, 0);
181   g_test_trap_assert_failed ();
182   g_test_trap_assert_stderr ("*but path * specified by schema*");
183 }
184
185 static void
186 test_no_path_subprocess (void)
187 {
188   GSettings *settings G_GNUC_UNUSED;
189
190   settings = g_settings_new ("org.gtk.test.no-path");
191 }
192
193 static void
194 test_no_path (void)
195 {
196   if (!g_test_undefined ())
197     return;
198
199   g_test_trap_subprocess ("/gsettings/no-path/subprocess", 0, 0);
200   g_test_trap_assert_failed ();
201   g_test_trap_assert_stderr ("*attempting to create schema * without a path**");
202 }
203
204
205 /* Check that we can successfully read and set the full
206  * range of all basic types
207  */
208 static void
209 test_basic_types (void)
210 {
211   GSettings *settings;
212   gboolean b;
213   guint8 byte;
214   gint16 i16;
215   guint16 u16;
216   gint32 i32;
217   guint32 u32;
218   gint64 i64;
219   guint64 u64;
220   gdouble d;
221   gchar *str;
222
223   settings = g_settings_new ("org.gtk.test.basic-types");
224
225   g_settings_get (settings, "test-boolean", "b", &b);
226   g_assert_cmpint (b, ==, 1);
227
228   g_settings_set (settings, "test-boolean", "b", 0);
229   g_settings_get (settings, "test-boolean", "b", &b);
230   g_assert_cmpint (b, ==, 0);
231
232   g_settings_get (settings, "test-byte", "y", &byte);
233   g_assert_cmpint (byte, ==, 25);
234
235   g_settings_set (settings, "test-byte", "y", G_MAXUINT8);
236   g_settings_get (settings, "test-byte", "y", &byte);
237   g_assert_cmpint (byte, ==, G_MAXUINT8);
238
239   g_settings_get (settings, "test-int16", "n", &i16);
240   g_assert_cmpint (i16, ==, -1234);
241
242   g_settings_set (settings, "test-int16", "n", G_MININT16);
243   g_settings_get (settings, "test-int16", "n", &i16);
244   g_assert_cmpint (i16, ==, G_MININT16);
245
246   g_settings_set (settings, "test-int16", "n", G_MAXINT16);
247   g_settings_get (settings, "test-int16", "n", &i16);
248   g_assert_cmpint (i16, ==, G_MAXINT16);
249
250   g_settings_get (settings, "test-uint16", "q", &u16);
251   g_assert_cmpuint (u16, ==, 1234);
252
253   g_settings_set (settings, "test-uint16", "q", G_MAXUINT16);
254   g_settings_get (settings, "test-uint16", "q", &u16);
255   g_assert_cmpuint (u16, ==, G_MAXUINT16);
256
257   g_settings_get (settings, "test-int32", "i", &i32);
258   g_assert_cmpint (i32, ==, -123456);
259
260   g_settings_set (settings, "test-int32", "i", G_MININT32);
261   g_settings_get (settings, "test-int32", "i", &i32);
262   g_assert_cmpint (i32, ==, G_MININT32);
263
264   g_settings_set (settings, "test-int32", "i", G_MAXINT32);
265   g_settings_get (settings, "test-int32", "i", &i32);
266   g_assert_cmpint (i32, ==, G_MAXINT32);
267
268   g_settings_get (settings, "test-uint32", "u", &u32);
269   g_assert_cmpuint (u32, ==, 123456);
270
271   g_settings_set (settings, "test-uint32", "u", G_MAXUINT32);
272   g_settings_get (settings, "test-uint32", "u", &u32);
273   g_assert_cmpuint (u32, ==, G_MAXUINT32);
274
275   g_settings_get (settings, "test-int64", "x", &i64);
276   g_assert_cmpuint (i64, ==, -123456789);
277
278   g_settings_set (settings, "test-int64", "x", G_MININT64);
279   g_settings_get (settings, "test-int64", "x", &i64);
280   g_assert_cmpuint (i64, ==, G_MININT64);
281
282   g_settings_set (settings, "test-int64", "x", G_MAXINT64);
283   g_settings_get (settings, "test-int64", "x", &i64);
284   g_assert_cmpuint (i64, ==, G_MAXINT64);
285
286   g_settings_get (settings, "test-uint64", "t", &u64);
287   g_assert_cmpuint (u64, ==, 123456789);
288
289   g_settings_set (settings, "test-uint64", "t", G_MAXUINT64);
290   g_settings_get (settings, "test-uint64", "t", &u64);
291   g_assert_cmpuint (u64, ==, G_MAXUINT64);
292
293   g_settings_get (settings, "test-double", "d", &d);
294   g_assert_cmpfloat (d, ==, 123.456);
295
296   g_settings_set (settings, "test-double", "d", G_MINDOUBLE);
297   g_settings_get (settings, "test-double", "d", &d);
298   g_assert_cmpfloat (d, ==, G_MINDOUBLE);
299
300   g_settings_set (settings, "test-double", "d", G_MAXDOUBLE);
301   g_settings_get (settings, "test-double", "d", &d);
302   g_assert_cmpfloat (d, ==, G_MAXDOUBLE);
303
304   g_settings_get (settings, "test-string", "s", &str);
305   g_assert_cmpstr (str, ==, "a string, it seems");
306   g_free (str);
307   str = NULL;
308
309   g_settings_get (settings, "test-objectpath", "o", &str);
310   g_assert_cmpstr (str, ==, "/a/object/path");
311   g_object_unref (settings);
312   g_free (str);
313   str = NULL;
314 }
315
316 /* Check that we can read an set complex types like
317  * tuples, arrays and dictionaries
318  */
319 static void
320 test_complex_types (void)
321 {
322   GSettings *settings;
323   gchar *s;
324   gint i1, i2;
325   GVariantIter *iter = NULL;
326
327   settings = g_settings_new ("org.gtk.test.complex-types");
328
329   g_settings_get (settings, "test-tuple", "(s(ii))", &s, &i1, &i2);
330   g_assert_cmpstr (s, ==, "one");
331   g_assert_cmpint (i1,==, 2);
332   g_assert_cmpint (i2,==, 3);
333   g_free (s) ;
334   s = NULL;
335
336   g_settings_set (settings, "test-tuple", "(s(ii))", "none", 0, 0);
337   g_settings_get (settings, "test-tuple", "(s(ii))", &s, &i1, &i2);
338   g_assert_cmpstr (s, ==, "none");
339   g_assert_cmpint (i1,==, 0);
340   g_assert_cmpint (i2,==, 0);
341   g_free (s);
342   s = NULL;
343
344   g_settings_get (settings, "test-array", "ai", &iter);
345   g_assert_cmpint (g_variant_iter_n_children (iter), ==, 6);
346   g_assert (g_variant_iter_next (iter, "i", &i1));
347   g_assert_cmpint (i1, ==, 0);
348   g_assert (g_variant_iter_next (iter, "i", &i1));
349   g_assert_cmpint (i1, ==, 1);
350   g_assert (g_variant_iter_next (iter, "i", &i1));
351   g_assert_cmpint (i1, ==, 2);
352   g_assert (g_variant_iter_next (iter, "i", &i1));
353   g_assert_cmpint (i1, ==, 3);
354   g_assert (g_variant_iter_next (iter, "i", &i1));
355   g_assert_cmpint (i1, ==, 4);
356   g_assert (g_variant_iter_next (iter, "i", &i1));
357   g_assert_cmpint (i1, ==, 5);
358   g_assert (!g_variant_iter_next (iter, "i", &i1));
359   g_variant_iter_free (iter);
360
361   g_object_unref (settings);
362 }
363
364 static gboolean changed_cb_called;
365
366 static void
367 changed_cb (GSettings   *settings,
368             const gchar *key,
369             gpointer     data)
370 {
371   changed_cb_called = TRUE;
372
373   g_assert_cmpstr (key, ==, data);
374 }
375
376 /* Test that basic change notification with the changed signal works.
377  */
378 static void
379 test_changes (void)
380 {
381   GSettings *settings;
382   GSettings *settings2;
383
384   settings = g_settings_new ("org.gtk.test");
385
386   g_signal_connect (settings, "changed",
387                     G_CALLBACK (changed_cb), "greeting");
388
389   changed_cb_called = FALSE;
390
391   g_settings_set (settings, "greeting", "s", "new greeting");
392   g_assert (changed_cb_called);
393
394   settings2 = g_settings_new ("org.gtk.test");
395
396   changed_cb_called = FALSE;
397
398   g_settings_set (settings2, "greeting", "s", "hi");
399   g_assert (changed_cb_called);
400
401   g_object_unref (settings2);
402   g_object_unref (settings);
403 }
404
405 static gboolean changed_cb_called2;
406
407 static void
408 changed_cb2 (GSettings   *settings,
409              const gchar *key,
410              gpointer     data)
411 {
412   gboolean *p = data;
413
414   *p = TRUE;
415 }
416
417 /* Test that changes done to a delay-mode instance
418  * don't appear to the outside world until apply. Also
419  * check that we get change notification when they are
420  * applied.
421  * Also test that the has-unapplied property is properly
422  * maintained.
423  */
424 static void
425 test_delay_apply (void)
426 {
427   GSettings *settings;
428   GSettings *settings2;
429   gchar *str;
430
431   settings = g_settings_new ("org.gtk.test");
432   settings2 = g_settings_new ("org.gtk.test");
433
434   g_settings_set (settings2, "greeting", "s", "top o' the morning");
435
436   changed_cb_called = FALSE;
437   changed_cb_called2 = FALSE;
438
439   g_signal_connect (settings, "changed",
440                     G_CALLBACK (changed_cb2), &changed_cb_called);
441   g_signal_connect (settings2, "changed",
442                     G_CALLBACK (changed_cb2), &changed_cb_called2);
443
444   g_settings_delay (settings);
445
446   g_settings_set (settings, "greeting", "s", "greetings from test_delay_apply");
447
448   g_assert (changed_cb_called);
449   g_assert (!changed_cb_called2);
450
451   g_settings_get (settings, "greeting", "s", &str);
452   g_assert_cmpstr (str, ==, "greetings from test_delay_apply");
453   g_free (str);
454   str = NULL;
455
456   g_settings_get (settings2, "greeting", "s", &str);
457   g_assert_cmpstr (str, ==, "top o' the morning");
458   g_free (str);
459   str = NULL;
460
461   g_assert (g_settings_get_has_unapplied (settings));
462   g_assert (!g_settings_get_has_unapplied (settings2));
463
464   changed_cb_called = FALSE;
465   changed_cb_called2 = FALSE;
466
467   g_settings_apply (settings);
468
469   g_assert (!changed_cb_called);
470   g_assert (changed_cb_called2);
471
472   g_settings_get (settings, "greeting", "s", &str);
473   g_assert_cmpstr (str, ==, "greetings from test_delay_apply");
474   g_free (str);
475   str = NULL;
476
477   g_settings_get (settings2, "greeting", "s", &str);
478   g_assert_cmpstr (str, ==, "greetings from test_delay_apply");
479   g_free (str);
480   str = NULL;
481
482   g_assert (!g_settings_get_has_unapplied (settings));
483   g_assert (!g_settings_get_has_unapplied (settings2));
484
485   g_object_unref (settings2);
486   g_object_unref (settings);
487 }
488
489 /* Test that reverting unapplied changes in a delay-apply
490  * settings instance works.
491  */
492 static void
493 test_delay_revert (void)
494 {
495   GSettings *settings;
496   GSettings *settings2;
497   gchar *str;
498
499   settings = g_settings_new ("org.gtk.test");
500   settings2 = g_settings_new ("org.gtk.test");
501
502   g_settings_set (settings2, "greeting", "s", "top o' the morning");
503
504   g_settings_delay (settings);
505
506   g_settings_set (settings, "greeting", "s", "greetings from test_delay_revert");
507
508   g_settings_get (settings, "greeting", "s", &str);
509   g_assert_cmpstr (str, ==, "greetings from test_delay_revert");
510   g_free (str);
511   str = NULL;
512
513   g_settings_get (settings2, "greeting", "s", &str);
514   g_assert_cmpstr (str, ==, "top o' the morning");
515   g_free (str);
516   str = NULL;
517
518   g_assert (g_settings_get_has_unapplied (settings));
519
520   g_settings_revert (settings);
521
522   g_assert (!g_settings_get_has_unapplied (settings));
523
524   g_settings_get (settings, "greeting", "s", &str);
525   g_assert_cmpstr (str, ==, "top o' the morning");
526   g_free (str);
527   str = NULL;
528
529   g_settings_get (settings2, "greeting", "s", &str);
530   g_assert_cmpstr (str, ==, "top o' the morning");
531   g_free (str);
532   str = NULL;
533
534   g_object_unref (settings2);
535   g_object_unref (settings);
536 }
537
538 static void
539 keys_changed_cb (GSettings    *settings,
540                  const GQuark *keys,
541                  gint          n_keys)
542 {
543   gchar *str;
544
545   g_assert_cmpint (n_keys, ==, 2);
546
547   g_assert ((keys[0] == g_quark_from_static_string ("greeting") &&
548              keys[1] == g_quark_from_static_string ("farewell")) ||
549             (keys[1] == g_quark_from_static_string ("greeting") &&
550              keys[0] == g_quark_from_static_string ("farewell")));
551
552   g_settings_get (settings, "greeting", "s", &str);
553   g_assert_cmpstr (str, ==, "greetings from test_atomic");
554   g_free (str);
555   str = NULL;
556
557   g_settings_get (settings, "farewell", "s", &str);
558   g_assert_cmpstr (str, ==, "atomic bye-bye");
559   g_free (str);
560   str = NULL;
561 }
562
563 /* Check that delay-applied changes appear atomically.
564  * More specifically, verify that all changed keys appear
565  * with their new value while handling the change-event signal.
566  */
567 static void
568 test_atomic (void)
569 {
570   GSettings *settings;
571   GSettings *settings2;
572   gchar *str;
573
574   settings = g_settings_new ("org.gtk.test");
575   settings2 = g_settings_new ("org.gtk.test");
576
577   g_settings_set (settings2, "greeting", "s", "top o' the morning");
578
579   changed_cb_called = FALSE;
580   changed_cb_called2 = FALSE;
581
582   g_signal_connect (settings2, "change-event",
583                     G_CALLBACK (keys_changed_cb), NULL);
584
585   g_settings_delay (settings);
586
587   g_settings_set (settings, "greeting", "s", "greetings from test_atomic");
588   g_settings_set (settings, "farewell", "s", "atomic bye-bye");
589
590   g_settings_apply (settings);
591
592   g_settings_get (settings, "greeting", "s", &str);
593   g_assert_cmpstr (str, ==, "greetings from test_atomic");
594   g_free (str);
595   str = NULL;
596
597   g_settings_get (settings, "farewell", "s", &str);
598   g_assert_cmpstr (str, ==, "atomic bye-bye");
599   g_free (str);
600   str = NULL;
601
602   g_settings_get (settings2, "greeting", "s", &str);
603   g_assert_cmpstr (str, ==, "greetings from test_atomic");
604   g_free (str);
605   str = NULL;
606
607   g_settings_get (settings2, "farewell", "s", &str);
608   g_assert_cmpstr (str, ==, "atomic bye-bye");
609   g_free (str);
610   str = NULL;
611
612   g_object_unref (settings2);
613   g_object_unref (settings);
614 }
615
616 /* On Windows the interaction between the C library locale and libintl
617  * (from GNU gettext) is not like on POSIX, so just skip these tests
618  * for now.
619  *
620  * There are several issues:
621  *
622  * 1) The C library doesn't use LC_MESSAGES, that is implemented only
623  * in libintl (defined in its <libintl.h>).
624  *
625  * 2) The locale names that setlocale() accepts and returns aren't in
626  * the "de_DE" style, but like "German_Germany".
627  *
628  * 3) libintl looks at the Win32 thread locale and not the C library
629  * locale. (And even if libintl would use the C library's locale, as
630  * there are several alternative C library DLLs, libintl might be
631  * linked to a different one than the application code, so they
632  * wouldn't have the same C library locale anyway.)
633  */
634
635 /* Test that translations work for schema defaults.
636  *
637  * This test relies on the de.po file in the same directory
638  * to be compiled into ./de/LC_MESSAGES/test.mo
639  */
640 static void
641 test_l10n (void)
642 {
643   GSettings *settings;
644   gchar *str;
645   gchar *locale;
646
647   bindtextdomain ("test", ".");
648   bind_textdomain_codeset ("test", "UTF-8");
649
650   locale = g_strdup (setlocale (LC_MESSAGES, NULL));
651
652   settings = g_settings_new ("org.gtk.test.localized");
653
654   setlocale (LC_MESSAGES, "C");
655   str = g_settings_get_string (settings, "error-message");
656   setlocale (LC_MESSAGES, locale);
657
658   g_assert_cmpstr (str, ==, "Unnamed");
659   g_free (str);
660   str = NULL;
661
662   setlocale (LC_MESSAGES, "de_DE");
663   /* Only do the test if translation is actually working... */
664   if (g_str_equal (dgettext ("test", "\"Unnamed\""), "\"Unbenannt\""))
665     {
666       str = g_settings_get_string (settings, "error-message");
667
668       g_assert_cmpstr (str, ==, "Unbenannt");
669       g_object_unref (settings);
670       g_free (str);
671       str = NULL;
672     }
673   else
674     g_printerr ("warning: translation is not working... skipping test. ");
675
676   setlocale (LC_MESSAGES, locale);
677   g_free (locale);
678 }
679
680 /* Test that message context works as expected with translated
681  * schema defaults. Also, verify that non-ASCII UTF-8 content
682  * works.
683  *
684  * This test relies on the de.po file in the same directory
685  * to be compiled into ./de/LC_MESSAGES/test.mo
686  */
687 static void
688 test_l10n_context (void)
689 {
690   GSettings *settings;
691   gchar *str;
692   gchar *locale;
693
694   bindtextdomain ("test", ".");
695   bind_textdomain_codeset ("test", "UTF-8");
696
697   locale = g_strdup (setlocale (LC_MESSAGES, NULL));
698
699   settings = g_settings_new ("org.gtk.test.localized");
700
701   setlocale (LC_MESSAGES, "C");
702   g_settings_get (settings, "backspace", "s", &str);
703   setlocale (LC_MESSAGES, locale);
704
705   g_assert_cmpstr (str, ==, "BackSpace");
706   g_free (str);
707   str = NULL;
708
709   setlocale (LC_MESSAGES, "de_DE");
710   /* Only do the test if translation is actually working... */
711   if (g_str_equal (dgettext ("test", "\"Unnamed\""), "\"Unbenannt\""))
712     {
713       g_settings_get (settings, "backspace", "s", &str);
714
715       g_assert_cmpstr (str, ==, "Löschen");
716       g_object_unref (settings);
717       g_free (str);
718       str = NULL;
719     }
720   else
721     g_printerr ("warning: translation is not working... skipping test.  ");
722
723   setlocale (LC_MESSAGES, locale);
724   g_free (locale);
725 }
726
727 enum
728 {
729   PROP_0,
730   PROP_BOOL,
731   PROP_ANTI_BOOL,
732   PROP_BYTE,
733   PROP_INT16,
734   PROP_UINT16,
735   PROP_INT,
736   PROP_UINT,
737   PROP_INT64,
738   PROP_UINT64,
739   PROP_DOUBLE,
740   PROP_STRING,
741   PROP_NO_READ,
742   PROP_NO_WRITE,
743   PROP_STRV,
744   PROP_ENUM,
745   PROP_FLAGS
746 };
747
748 typedef struct
749 {
750   GObject parent_instance;
751
752   gboolean bool_prop;
753   gboolean anti_bool_prop;
754   gint8 byte_prop;
755   gint int16_prop;
756   guint16 uint16_prop;
757   gint int_prop;
758   guint uint_prop;
759   gint64 int64_prop;
760   guint64 uint64_prop;
761   gdouble double_prop;
762   gchar *string_prop;
763   gchar *no_read_prop;
764   gchar *no_write_prop;
765   gchar **strv_prop;
766   guint enum_prop;
767   guint flags_prop;
768 } TestObject;
769
770 typedef struct
771 {
772   GObjectClass parent_class;
773 } TestObjectClass;
774
775 static GType test_object_get_type (void);
776 G_DEFINE_TYPE (TestObject, test_object, G_TYPE_OBJECT)
777
778 static void
779 test_object_init (TestObject *object)
780 {
781 }
782
783 static void
784 test_object_finalize (GObject *object)
785 {
786   TestObject *testo = (TestObject*)object;
787   g_strfreev (testo->strv_prop);
788   g_free (testo->string_prop);
789   G_OBJECT_CLASS (test_object_parent_class)->finalize (object);
790 }
791
792 static void
793 test_object_get_property (GObject    *object,
794                           guint       prop_id,
795                           GValue     *value,
796                           GParamSpec *pspec)
797 {
798   TestObject *test_object = (TestObject *)object;
799
800   switch (prop_id)
801     {
802     case PROP_BOOL:
803       g_value_set_boolean (value, test_object->bool_prop);
804       break;
805     case PROP_ANTI_BOOL:
806       g_value_set_boolean (value, test_object->anti_bool_prop);
807       break;
808     case PROP_BYTE:
809       g_value_set_schar (value, test_object->byte_prop);
810       break;
811     case PROP_UINT16:
812       g_value_set_uint (value, test_object->uint16_prop);
813       break;
814     case PROP_INT16:
815       g_value_set_int (value, test_object->int16_prop);
816       break;
817     case PROP_INT:
818       g_value_set_int (value, test_object->int_prop);
819       break;
820     case PROP_UINT:
821       g_value_set_uint (value, test_object->uint_prop);
822       break;
823     case PROP_INT64:
824       g_value_set_int64 (value, test_object->int64_prop);
825       break;
826     case PROP_UINT64:
827       g_value_set_uint64 (value, test_object->uint64_prop);
828       break;
829     case PROP_DOUBLE:
830       g_value_set_double (value, test_object->double_prop);
831       break;
832     case PROP_STRING:
833       g_value_set_string (value, test_object->string_prop);
834       break;
835     case PROP_NO_WRITE:
836       g_value_set_string (value, test_object->no_write_prop);
837       break;
838     case PROP_STRV:
839       g_value_set_boxed (value, test_object->strv_prop);
840       break;
841     case PROP_ENUM:
842       g_value_set_enum (value, test_object->enum_prop);
843       break;
844     case PROP_FLAGS:
845       g_value_set_flags (value, test_object->flags_prop);
846       break;
847     default:
848       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
849       break;
850     }
851 }
852
853 static void
854 test_object_set_property (GObject      *object,
855                           guint         prop_id,
856                           const GValue *value,
857                           GParamSpec   *pspec)
858 {
859   TestObject *test_object = (TestObject *)object;
860
861   switch (prop_id)
862     {
863     case PROP_BOOL:
864       test_object->bool_prop = g_value_get_boolean (value);
865       break;
866     case PROP_ANTI_BOOL:
867       test_object->anti_bool_prop = g_value_get_boolean (value);
868       break;
869     case PROP_BYTE:
870       test_object->byte_prop = g_value_get_schar (value);
871       break;
872     case PROP_INT16:
873       test_object->int16_prop = g_value_get_int (value);
874       break;
875     case PROP_UINT16:
876       test_object->uint16_prop = g_value_get_uint (value);
877       break;
878     case PROP_INT:
879       test_object->int_prop = g_value_get_int (value);
880       break;
881     case PROP_UINT:
882       test_object->uint_prop = g_value_get_uint (value);
883       break;
884     case PROP_INT64:
885       test_object->int64_prop = g_value_get_int64 (value);
886       break;
887     case PROP_UINT64:
888       test_object->uint64_prop = g_value_get_uint64 (value);
889       break;
890     case PROP_DOUBLE:
891       test_object->double_prop = g_value_get_double (value);
892       break;
893     case PROP_STRING:
894       g_free (test_object->string_prop);
895       test_object->string_prop = g_value_dup_string (value);
896       break;
897     case PROP_NO_READ:
898       g_free (test_object->no_read_prop);
899       test_object->no_read_prop = g_value_dup_string (value);
900       break;
901     case PROP_STRV:
902       g_strfreev (test_object->strv_prop);
903       test_object->strv_prop = g_value_dup_boxed (value);
904       break;
905     case PROP_ENUM:
906       test_object->enum_prop = g_value_get_enum (value);
907       break;
908     case PROP_FLAGS:
909       test_object->flags_prop = g_value_get_flags (value);
910       break;
911     default:
912       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
913       break;
914     }
915 }
916
917 static GType
918 test_enum_get_type (void)
919 {
920   static volatile gsize define_type_id = 0;
921
922   if (g_once_init_enter (&define_type_id))
923     {
924       static const GEnumValue values[] = {
925         { TEST_ENUM_FOO, "TEST_ENUM_FOO", "foo" },
926         { TEST_ENUM_BAR, "TEST_ENUM_BAR", "bar" },
927         { TEST_ENUM_BAZ, "TEST_ENUM_BAZ", "baz" },
928         { TEST_ENUM_QUUX, "TEST_ENUM_QUUX", "quux" },
929         { 0, NULL, NULL }
930       };
931
932       GType type_id = g_enum_register_static ("TestEnum", values);
933       g_once_init_leave (&define_type_id, type_id);
934     }
935
936   return define_type_id;
937 }
938
939 static GType
940 test_flags_get_type (void)
941 {
942   static volatile gsize define_type_id = 0;
943
944   if (g_once_init_enter (&define_type_id))
945     {
946       static const GFlagsValue values[] = {
947         { TEST_FLAGS_NONE, "TEST_FLAGS_NONE", "none" },
948         { TEST_FLAGS_MOURNING, "TEST_FLAGS_MOURNING", "mourning" },
949         { TEST_FLAGS_LAUGHING, "TEST_FLAGS_LAUGHING", "laughing" },
950         { TEST_FLAGS_WALKING, "TEST_FLAGS_WALKING", "walking" },
951         { 0, NULL, NULL }
952       };
953
954       GType type_id = g_flags_register_static ("TestFlags", values);
955       g_once_init_leave (&define_type_id, type_id);
956     }
957
958   return define_type_id;
959 }
960
961 static void
962 test_object_class_init (TestObjectClass *class)
963 {
964   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
965
966   gobject_class->get_property = test_object_get_property;
967   gobject_class->set_property = test_object_set_property;
968   gobject_class->finalize = test_object_finalize;
969
970   g_object_class_install_property (gobject_class, PROP_BOOL,
971     g_param_spec_boolean ("bool", "", "", FALSE, G_PARAM_READWRITE));
972   g_object_class_install_property (gobject_class, PROP_ANTI_BOOL,
973     g_param_spec_boolean ("anti-bool", "", "", FALSE, G_PARAM_READWRITE));
974   g_object_class_install_property (gobject_class, PROP_BYTE,
975     g_param_spec_char ("byte", "", "", G_MININT8, G_MAXINT8, 0, G_PARAM_READWRITE));
976   g_object_class_install_property (gobject_class, PROP_INT16,
977     g_param_spec_int ("int16", "", "", -G_MAXINT16, G_MAXINT16, 0, G_PARAM_READWRITE));
978   g_object_class_install_property (gobject_class, PROP_UINT16,
979     g_param_spec_uint ("uint16", "", "", 0, G_MAXUINT16, 0, G_PARAM_READWRITE));
980   g_object_class_install_property (gobject_class, PROP_INT,
981     g_param_spec_int ("int", "", "", G_MININT, G_MAXINT, 0, G_PARAM_READWRITE));
982   g_object_class_install_property (gobject_class, PROP_UINT,
983     g_param_spec_uint ("uint", "", "", 0, G_MAXUINT, 0, G_PARAM_READWRITE));
984   g_object_class_install_property (gobject_class, PROP_INT64,
985     g_param_spec_int64 ("int64", "", "", G_MININT64, G_MAXINT64, 0, G_PARAM_READWRITE));
986   g_object_class_install_property (gobject_class, PROP_UINT64,
987     g_param_spec_uint64 ("uint64", "", "", 0, G_MAXUINT64, 0, G_PARAM_READWRITE));
988   g_object_class_install_property (gobject_class, PROP_DOUBLE,
989     g_param_spec_double ("double", "", "", -G_MAXDOUBLE, G_MAXDOUBLE, 0.0, G_PARAM_READWRITE));
990   g_object_class_install_property (gobject_class, PROP_STRING,
991     g_param_spec_string ("string", "", "", NULL, G_PARAM_READWRITE));
992   g_object_class_install_property (gobject_class, PROP_NO_WRITE,
993     g_param_spec_string ("no-write", "", "", NULL, G_PARAM_READABLE));
994   g_object_class_install_property (gobject_class, PROP_NO_READ,
995     g_param_spec_string ("no-read", "", "", NULL, G_PARAM_WRITABLE));
996   g_object_class_install_property (gobject_class, PROP_STRV,
997     g_param_spec_boxed ("strv", "", "", G_TYPE_STRV, G_PARAM_READWRITE));
998   g_object_class_install_property (gobject_class, PROP_ENUM,
999     g_param_spec_enum ("enum", "", "", test_enum_get_type (), TEST_ENUM_FOO, G_PARAM_READWRITE));
1000   g_object_class_install_property (gobject_class, PROP_FLAGS,
1001     g_param_spec_flags ("flags", "", "", test_flags_get_type (), TEST_FLAGS_NONE, G_PARAM_READWRITE));
1002 }
1003
1004 static TestObject *
1005 test_object_new (void)
1006 {
1007   return (TestObject*)g_object_new (test_object_get_type (), NULL);
1008 }
1009
1010 /* Test basic binding functionality for simple types.
1011  * Verify that with bidirectional bindings, changes on either side
1012  * are notified on the other end.
1013  */
1014 static void
1015 test_simple_binding (void)
1016 {
1017   TestObject *obj;
1018   GSettings *settings;
1019   gboolean b;
1020   gchar y;
1021   gint i;
1022   guint u;
1023   gint16 n;
1024   guint16 q;
1025   gint n2;
1026   guint q2;
1027   gint64 i64;
1028   guint64 u64;
1029   gdouble d;
1030   gchar *s;
1031   GVariant *value;
1032   gchar **strv;
1033
1034   settings = g_settings_new ("org.gtk.test.binding");
1035   obj = test_object_new ();
1036
1037   g_settings_bind (settings, "bool", obj, "bool", G_SETTINGS_BIND_DEFAULT);
1038   g_object_set (obj, "bool", TRUE, NULL);
1039   g_assert_cmpint (g_settings_get_boolean (settings, "bool"), ==, TRUE);
1040
1041   g_settings_set_boolean (settings, "bool", FALSE);
1042   b = TRUE;
1043   g_object_get (obj, "bool", &b, NULL);
1044   g_assert_cmpint (b, ==, FALSE);
1045
1046   g_settings_bind (settings, "anti-bool", obj, "anti-bool",
1047                    G_SETTINGS_BIND_INVERT_BOOLEAN);
1048   g_object_set (obj, "anti-bool", FALSE, NULL);
1049   g_assert_cmpint (g_settings_get_boolean (settings, "anti-bool"), ==, TRUE);
1050
1051   g_settings_set_boolean (settings, "anti-bool", FALSE);
1052   b = FALSE;
1053   g_object_get (obj, "anti-bool", &b, NULL);
1054   g_assert_cmpint (b, ==, TRUE);
1055
1056   g_settings_bind (settings, "byte", obj, "byte", G_SETTINGS_BIND_DEFAULT);
1057
1058   g_object_set (obj, "byte", 123, NULL);
1059   y = 'c';
1060   g_settings_get (settings, "byte", "y", &y);
1061   g_assert_cmpint (y, ==, 123);
1062
1063   g_settings_set (settings, "byte", "y", 54);
1064   y = 'c';
1065   g_object_get (obj, "byte", &y, NULL);
1066   g_assert_cmpint (y, ==, 54);
1067
1068   g_settings_bind (settings, "int16", obj, "int16", G_SETTINGS_BIND_DEFAULT);
1069
1070   g_object_set (obj, "int16", 1234, NULL);
1071   n = 4321;
1072   g_settings_get (settings, "int16", "n", &n);
1073   g_assert_cmpint (n, ==, 1234);
1074
1075   g_settings_set (settings, "int16", "n", 4321);
1076   n2 = 1111;
1077   g_object_get (obj, "int16", &n2, NULL);
1078   g_assert_cmpint (n2, ==, 4321);
1079
1080   g_settings_bind (settings, "uint16", obj, "uint16", G_SETTINGS_BIND_DEFAULT);
1081
1082   g_object_set (obj, "uint16", (guint16) G_MAXUINT16, NULL);
1083   q = 1111;
1084   g_settings_get (settings, "uint16", "q", &q);
1085   g_assert_cmpuint (q, ==, G_MAXUINT16);
1086
1087   g_settings_set (settings, "uint16", "q", (guint16) G_MAXINT16);
1088   q2 = 1111;
1089   g_object_get (obj, "uint16", &q2, NULL);
1090   g_assert_cmpuint (q2, ==, (guint16) G_MAXINT16);
1091
1092   g_settings_bind (settings, "int", obj, "int", G_SETTINGS_BIND_DEFAULT);
1093
1094   g_object_set (obj, "int", 12345, NULL);
1095   g_assert_cmpint (g_settings_get_int (settings, "int"), ==, 12345);
1096
1097   g_settings_set_int (settings, "int", 54321);
1098   i = 1111;
1099   g_object_get (obj, "int", &i, NULL);
1100   g_assert_cmpint (i, ==, 54321);
1101
1102   g_settings_bind (settings, "uint", obj, "uint", G_SETTINGS_BIND_DEFAULT);
1103
1104   g_object_set (obj, "uint", 12345, NULL);
1105   g_assert_cmpuint (g_settings_get_uint (settings, "uint"), ==, 12345);
1106
1107   g_settings_set_uint (settings, "uint", 54321);
1108   u = 1111;
1109   g_object_get (obj, "uint", &u, NULL);
1110   g_assert_cmpuint (u, ==, 54321);
1111
1112   g_settings_bind (settings, "int64", obj, "int64", G_SETTINGS_BIND_DEFAULT);
1113
1114   g_object_set (obj, "int64", (gint64) G_MAXINT64, NULL);
1115   i64 = 1111;
1116   g_settings_get (settings, "int64", "x", &i64);
1117   g_assert_cmpint (i64, ==, G_MAXINT64);
1118
1119   g_settings_set (settings, "int64", "x", (gint64) G_MININT64);
1120   i64 = 1111;
1121   g_object_get (obj, "int64", &i64, NULL);
1122   g_assert_cmpint (i64, ==, G_MININT64);
1123
1124   g_settings_bind (settings, "uint64", obj, "uint64", G_SETTINGS_BIND_DEFAULT);
1125
1126   g_object_set (obj, "uint64", (guint64) G_MAXUINT64, NULL);
1127   u64 = 1111;
1128   g_settings_get (settings, "uint64", "t", &u64);
1129   g_assert_cmpuint (u64, ==, G_MAXUINT64);
1130
1131   g_settings_set (settings, "uint64", "t", (guint64) G_MAXINT64);
1132   u64 = 1111;
1133   g_object_get (obj, "uint64", &u64, NULL);
1134   g_assert_cmpuint (u64, ==, (guint64) G_MAXINT64);
1135
1136   g_settings_bind (settings, "string", obj, "string", G_SETTINGS_BIND_DEFAULT);
1137
1138   g_object_set (obj, "string", "bu ba", NULL);
1139   s = g_settings_get_string (settings, "string");
1140   g_assert_cmpstr (s, ==, "bu ba");
1141   g_free (s);
1142
1143   g_settings_set_string (settings, "string", "bla bla");
1144   g_object_get (obj, "string", &s, NULL);
1145   g_assert_cmpstr (s, ==, "bla bla");
1146   g_free (s);
1147
1148   g_settings_bind (settings, "chararray", obj, "string", G_SETTINGS_BIND_DEFAULT);
1149
1150   g_object_set (obj, "string", "non-unicode:\315", NULL);
1151   value = g_settings_get_value (settings, "chararray");
1152   g_assert_cmpstr (g_variant_get_bytestring (value), ==, "non-unicode:\315");
1153   g_variant_unref (value);
1154
1155   g_settings_bind (settings, "double", obj, "double", G_SETTINGS_BIND_DEFAULT);
1156
1157   g_object_set (obj, "double", G_MAXFLOAT, NULL);
1158   g_assert_cmpfloat (g_settings_get_double (settings, "double"), ==, G_MAXFLOAT);
1159
1160   g_settings_set_double (settings, "double", G_MINFLOAT);
1161   d = 1.0;
1162   g_object_get (obj, "double", &d, NULL);
1163   g_assert_cmpfloat (d, ==, G_MINFLOAT);
1164
1165   g_object_set (obj, "double", G_MAXDOUBLE, NULL);
1166   g_assert_cmpfloat (g_settings_get_double (settings, "double"), ==, G_MAXDOUBLE);
1167
1168   g_settings_set_double (settings, "double", -G_MINDOUBLE);
1169   d = 1.0;
1170   g_object_get (obj, "double", &d, NULL);
1171   g_assert_cmpfloat (d, ==, -G_MINDOUBLE);
1172
1173   strv = g_strsplit ("plastic bag,middle class,polyethylene", ",", 0);
1174   g_settings_bind (settings, "strv", obj, "strv", G_SETTINGS_BIND_DEFAULT);
1175   g_object_set (obj, "strv", strv, NULL);
1176   g_strfreev (strv);
1177   strv = g_settings_get_strv (settings, "strv");
1178   s = g_strjoinv (",", strv);
1179   g_assert_cmpstr (s, ==, "plastic bag,middle class,polyethylene");
1180   g_strfreev (strv);
1181   g_free (s);
1182   strv = g_strsplit ("decaffeinate,unleaded,keep all surfaces clean", ",", 0);
1183   g_settings_set_strv (settings, "strv", (const gchar **) strv);
1184   g_strfreev (strv);
1185   g_object_get (obj, "strv", &strv, NULL);
1186   s = g_strjoinv (",", strv);
1187   g_assert_cmpstr (s, ==, "decaffeinate,unleaded,keep all surfaces clean");
1188   g_strfreev (strv);
1189   g_free (s);
1190
1191   g_settings_bind (settings, "enum", obj, "enum", G_SETTINGS_BIND_DEFAULT);
1192   g_object_set (obj, "enum", TEST_ENUM_BAZ, NULL);
1193   s = g_settings_get_string (settings, "enum");
1194   g_assert_cmpstr (s, ==, "baz");
1195   g_free (s);
1196   g_assert_cmpint (g_settings_get_enum (settings, "enum"), ==, TEST_ENUM_BAZ);
1197
1198   g_settings_set_enum (settings, "enum", TEST_ENUM_QUUX);
1199   i = 230;
1200   g_object_get (obj, "enum", &i, NULL);
1201   g_assert_cmpint (i, ==, TEST_ENUM_QUUX);
1202
1203   g_settings_set_string (settings, "enum", "baz");
1204   i = 230;
1205   g_object_get (obj, "enum", &i, NULL);
1206   g_assert_cmpint (i, ==, TEST_ENUM_BAZ);
1207
1208   g_settings_bind (settings, "flags", obj, "flags", G_SETTINGS_BIND_DEFAULT);
1209   g_object_set (obj, "flags", TEST_FLAGS_MOURNING, NULL);
1210   strv = g_settings_get_strv (settings, "flags");
1211   g_assert_cmpint (g_strv_length (strv), ==, 1);
1212   g_assert_cmpstr (strv[0], ==, "mourning");
1213   g_strfreev (strv);
1214
1215   g_assert_cmpint (g_settings_get_flags (settings, "flags"), ==, TEST_FLAGS_MOURNING);
1216
1217   g_settings_set_flags (settings, "flags", TEST_FLAGS_MOURNING | TEST_FLAGS_WALKING);
1218   i = 230;
1219   g_object_get (obj, "flags", &i, NULL);
1220   g_assert_cmpint (i, ==, TEST_FLAGS_MOURNING | TEST_FLAGS_WALKING);
1221
1222   g_object_unref (obj);
1223   g_object_unref (settings);
1224 }
1225
1226 static void
1227 test_unbind (void)
1228 {
1229   TestObject *obj;
1230   GSettings *settings;
1231
1232   settings = g_settings_new ("org.gtk.test.binding");
1233   obj = test_object_new ();
1234
1235   g_settings_bind (settings, "int", obj, "int", G_SETTINGS_BIND_DEFAULT);
1236
1237   g_object_set (obj, "int", 12345, NULL);
1238   g_assert_cmpint (g_settings_get_int (settings, "int"), ==, 12345);
1239
1240   g_settings_unbind (obj, "int");
1241
1242   g_object_set (obj, "int", 54321, NULL);
1243   g_assert_cmpint (g_settings_get_int (settings, "int"), ==, 12345);
1244
1245   g_object_unref (obj);
1246   g_object_unref (settings);
1247 }
1248
1249 static void
1250 test_bind_writable (void)
1251 {
1252   TestObject *obj;
1253   GSettings *settings;
1254   gboolean b;
1255
1256   settings = g_settings_new ("org.gtk.test.binding");
1257   obj = test_object_new ();
1258
1259   g_object_set (obj, "bool", FALSE, NULL);
1260
1261   g_settings_bind_writable (settings, "int", obj, "bool", FALSE);
1262
1263   g_object_get (obj, "bool", &b, NULL);
1264   g_assert (b);
1265
1266   g_settings_unbind (obj, "bool");
1267
1268   g_settings_bind_writable (settings, "int", obj, "bool", TRUE);
1269
1270   g_object_get (obj, "bool", &b, NULL);
1271   g_assert (!b);
1272
1273   g_object_unref (obj);
1274   g_object_unref (settings);
1275 }
1276
1277 /* Test one-way bindings.
1278  * Verify that changes on one side show up on the other,
1279  * but not vice versa
1280  */
1281 static void
1282 test_directional_binding (void)
1283 {
1284   TestObject *obj;
1285   GSettings *settings;
1286   gboolean b;
1287   gint i;
1288
1289   settings = g_settings_new ("org.gtk.test.binding");
1290   obj = test_object_new ();
1291
1292   g_object_set (obj, "bool", FALSE, NULL);
1293   g_settings_set_boolean (settings, "bool", FALSE);
1294
1295   g_settings_bind (settings, "bool", obj, "bool", G_SETTINGS_BIND_GET);
1296
1297   g_settings_set_boolean (settings, "bool", TRUE);
1298   g_object_get (obj, "bool", &b, NULL);
1299   g_assert_cmpint (b, ==, TRUE);
1300
1301   g_object_set (obj, "bool", FALSE, NULL);
1302   g_assert_cmpint (g_settings_get_boolean (settings, "bool"), ==, TRUE);
1303
1304   g_object_set (obj, "int", 20, NULL);
1305   g_settings_set_int (settings, "int", 20);
1306
1307   g_settings_bind (settings, "int", obj, "int", G_SETTINGS_BIND_SET);
1308
1309   g_object_set (obj, "int", 32, NULL);
1310   g_assert_cmpint (g_settings_get_int (settings, "int"), ==, 32);
1311
1312   g_settings_set_int (settings, "int", 20);
1313   g_object_get (obj, "int", &i, NULL);
1314   g_assert_cmpint (i, ==, 32);
1315
1316   g_object_unref (obj);
1317   g_object_unref (settings);
1318 }
1319
1320 /* Test that type mismatch is caught when creating a binding
1321  */
1322 static void
1323 test_typesafe_binding_subprocess (void)
1324 {
1325   TestObject *obj;
1326   GSettings *settings;
1327
1328   settings = g_settings_new ("org.gtk.test.binding");
1329   obj = test_object_new ();
1330
1331   g_settings_bind (settings, "string", obj, "int", G_SETTINGS_BIND_DEFAULT);
1332
1333   g_object_unref (obj);
1334   g_object_unref (settings);
1335 }
1336
1337 static void
1338 test_typesafe_binding (void)
1339 {
1340   if (!g_test_undefined ())
1341     return;
1342
1343   g_test_trap_subprocess ("/gsettings/typesafe-binding/subprocess", 0, 0);
1344   g_test_trap_assert_failed ();
1345   g_test_trap_assert_stderr ("*not compatible*");
1346 }
1347
1348 static gboolean
1349 string_to_bool (GValue   *value,
1350                 GVariant *variant,
1351                 gpointer  user_data)
1352 {
1353   const gchar *s;
1354
1355   s = g_variant_get_string (variant, NULL);
1356   g_value_set_boolean (value, g_strcmp0 (s, "true") == 0);
1357
1358   return TRUE;
1359 }
1360
1361 static GVariant *
1362 bool_to_string (const GValue       *value,
1363                 const GVariantType *expected_type,
1364                 gpointer            user_data)
1365 {
1366   if (g_value_get_boolean (value))
1367     return g_variant_new_string ("true");
1368   else
1369     return g_variant_new_string ("false");
1370 }
1371
1372 /* Test custom bindings.
1373  * Translate strings to booleans and back
1374  */
1375 static void
1376 test_custom_binding (void)
1377 {
1378   TestObject *obj;
1379   GSettings *settings;
1380   gchar *s;
1381   gboolean b;
1382
1383   settings = g_settings_new ("org.gtk.test.binding");
1384   obj = test_object_new ();
1385
1386   g_settings_set_string (settings, "string", "true");
1387
1388   g_settings_bind_with_mapping (settings, "string",
1389                                 obj, "bool",
1390                                 G_SETTINGS_BIND_DEFAULT,
1391                                 string_to_bool,
1392                                 bool_to_string,
1393                                 NULL, NULL);
1394
1395   g_settings_set_string (settings, "string", "false");
1396   g_object_get (obj, "bool", &b, NULL);
1397   g_assert_cmpint (b, ==, FALSE);
1398
1399   g_settings_set_string (settings, "string", "not true");
1400   g_object_get (obj, "bool", &b, NULL);
1401   g_assert_cmpint (b, ==, FALSE);
1402
1403   g_object_set (obj, "bool", TRUE, NULL);
1404   s = g_settings_get_string (settings, "string");
1405   g_assert_cmpstr (s, ==, "true");
1406   g_free (s);
1407
1408   g_object_unref (obj);
1409   g_object_unref (settings);
1410 }
1411
1412 /* Test that with G_SETTINGS_BIND_NO_CHANGES, the
1413  * initial settings value is transported to the object
1414  * side, but later settings changes do not affect the
1415  * object
1416  */
1417 static void
1418 test_no_change_binding (void)
1419 {
1420   TestObject *obj;
1421   GSettings *settings;
1422   gboolean b;
1423
1424   settings = g_settings_new ("org.gtk.test.binding");
1425   obj = test_object_new ();
1426
1427   g_object_set (obj, "bool", TRUE, NULL);
1428   g_settings_set_boolean (settings, "bool", FALSE);
1429
1430   g_settings_bind (settings, "bool", obj, "bool", G_SETTINGS_BIND_GET_NO_CHANGES);
1431
1432   g_object_get (obj, "bool", &b, NULL);
1433   g_assert_cmpint (b, ==, FALSE);
1434
1435   g_settings_set_boolean (settings, "bool", TRUE);
1436   g_object_get (obj, "bool", &b, NULL);
1437   g_assert_cmpint (b, ==, FALSE);
1438
1439   g_settings_set_boolean (settings, "bool", FALSE);
1440   g_object_set (obj, "bool", TRUE, NULL);
1441   b = g_settings_get_boolean (settings, "bool");
1442   g_assert_cmpint (b, ==, TRUE);
1443
1444   g_object_unref (obj);
1445   g_object_unref (settings);
1446 }
1447
1448 /* Test that binding a non-readable property only
1449  * works in 'GET' mode.
1450  */
1451 static void
1452 test_no_read_binding_fail (void)
1453 {
1454   TestObject *obj;
1455   GSettings *settings;
1456
1457   settings = g_settings_new ("org.gtk.test.binding");
1458   obj = test_object_new ();
1459
1460   g_settings_bind (settings, "string", obj, "no-read", 0);
1461 }
1462
1463 static void
1464 test_no_read_binding_pass (void)
1465 {
1466   TestObject *obj;
1467   GSettings *settings;
1468
1469   settings = g_settings_new ("org.gtk.test.binding");
1470   obj = test_object_new ();
1471
1472   g_settings_bind (settings, "string", obj, "no-read", G_SETTINGS_BIND_GET);
1473
1474   exit (0);
1475 }
1476
1477 static void
1478 test_no_read_binding (void)
1479 {
1480   if (g_test_undefined ())
1481     {
1482       g_test_trap_subprocess ("/gsettings/no-read-binding/subprocess/fail", 0, 0);
1483       g_test_trap_assert_failed ();
1484       g_test_trap_assert_stderr ("*property*is not readable*");
1485     }
1486
1487   g_test_trap_subprocess ("/gsettings/no-read-binding/subprocess/pass", 0, 0);
1488   g_test_trap_assert_passed ();
1489 }
1490
1491 /* Test that binding a non-writable property only
1492  * works in 'SET' mode.
1493  */
1494 static void
1495 test_no_write_binding_fail (void)
1496 {
1497   TestObject *obj;
1498   GSettings *settings;
1499
1500   settings = g_settings_new ("org.gtk.test.binding");
1501   obj = test_object_new ();
1502
1503   g_settings_bind (settings, "string", obj, "no-write", 0);
1504 }
1505
1506 static void
1507 test_no_write_binding_pass (void)
1508 {
1509   TestObject *obj;
1510   GSettings *settings;
1511
1512   settings = g_settings_new ("org.gtk.test.binding");
1513   obj = test_object_new ();
1514
1515   g_settings_bind (settings, "string", obj, "no-write", G_SETTINGS_BIND_SET);
1516
1517   exit (0);
1518 }
1519
1520 static void
1521 test_no_write_binding (void)
1522 {
1523   if (g_test_undefined ())
1524     {
1525       g_test_trap_subprocess ("/gsettings/no-write-binding/subprocess/fail", 0, 0);
1526       g_test_trap_assert_failed ();
1527       g_test_trap_assert_stderr ("*property*is not writable*");
1528     }
1529
1530   g_test_trap_subprocess ("/gsettings/no-write-binding/subprocess/pass", 0, 0);
1531   g_test_trap_assert_passed ();
1532 }
1533
1534 /*
1535  * Test that using a keyfile works
1536  */
1537 static void
1538 test_keyfile (void)
1539 {
1540   GSettingsBackend *kf_backend;
1541   GSettings *settings;
1542   GKeyFile *keyfile;
1543   gchar *str;
1544
1545   g_remove ("gsettings.store");
1546
1547   kf_backend = g_keyfile_settings_backend_new ("gsettings.store", "/", "root");
1548   settings = g_settings_new_with_backend ("org.gtk.test", kf_backend);
1549   g_object_unref (kf_backend);
1550
1551   g_settings_set (settings, "greeting", "s", "see if this works");
1552
1553   keyfile = g_key_file_new ();
1554   g_assert (g_key_file_load_from_file (keyfile, "gsettings.store", 0, NULL));
1555
1556   str = g_key_file_get_string (keyfile, "tests", "greeting", NULL);
1557   g_assert_cmpstr (str, ==, "'see if this works'");
1558
1559   g_free (str);
1560   g_key_file_free (keyfile);
1561   g_object_unref (settings);
1562 }
1563
1564 /* Test that getting child schemas works
1565  */
1566 static void
1567 test_child_schema (void)
1568 {
1569   GSettings *settings;
1570   GSettings *child;
1571   guint8 byte;
1572
1573   /* first establish some known conditions */
1574   settings = g_settings_new ("org.gtk.test.basic-types");
1575   g_settings_set (settings, "test-byte", "y", 36);
1576
1577   g_settings_get (settings, "test-byte", "y", &byte);
1578   g_assert_cmpint (byte, ==, 36);
1579
1580   g_object_unref (settings);
1581
1582   settings = g_settings_new ("org.gtk.test");
1583   child = g_settings_get_child (settings, "basic-types");
1584   g_assert (child != NULL);
1585
1586   g_settings_get (child, "test-byte", "y", &byte);
1587   g_assert_cmpint (byte, ==, 36);
1588
1589   g_object_unref (child);
1590   g_object_unref (settings);
1591 }
1592
1593 #include "../strinfo.c"
1594
1595 static void
1596 test_strinfo (void)
1597 {
1598   /*  "foo" has a value of 1
1599    *  "bar" has a value of 2
1600    *  "baz" is an alias for "bar"
1601    */
1602   gchar array[] =
1603     "\1\0\0\0"      "\xff""foo"     "\0\0\0\xff"    "\2\0\0\0"
1604     "\xff" "bar"    "\0\0\0\xff"    "\3\0\0\0"      "\xfe""baz"
1605     "\0\0\0\xff";
1606   const guint32 *strinfo = (guint32 *) array;
1607   guint length = sizeof array / 4;
1608   guint result;
1609
1610   {
1611     /* build it and compare */
1612     GString *builder;
1613
1614     builder = g_string_new (NULL);
1615     strinfo_builder_append_item (builder, "foo", 1);
1616     strinfo_builder_append_item (builder, "bar", 2);
1617     g_assert (strinfo_builder_append_alias (builder, "baz", "bar"));
1618     g_assert_cmpint (builder->len % 4, ==, 0);
1619     g_assert_cmpint (builder->len / 4, ==, length);
1620     g_assert (memcmp (builder->str, strinfo, length * 4) == 0);
1621     g_string_free (builder, TRUE);
1622   }
1623
1624   g_assert_cmpstr (strinfo_string_from_alias (strinfo, length, "foo"),
1625                    ==, NULL);
1626   g_assert_cmpstr (strinfo_string_from_alias (strinfo, length, "bar"),
1627                    ==, NULL);
1628   g_assert_cmpstr (strinfo_string_from_alias (strinfo, length, "baz"),
1629                    ==, "bar");
1630   g_assert_cmpstr (strinfo_string_from_alias (strinfo, length, "quux"),
1631                    ==, NULL);
1632
1633   g_assert (strinfo_enum_from_string (strinfo, length, "foo", &result));
1634   g_assert_cmpint (result, ==, 1);
1635   g_assert (strinfo_enum_from_string (strinfo, length, "bar", &result));
1636   g_assert_cmpint (result, ==, 2);
1637   g_assert (!strinfo_enum_from_string (strinfo, length, "baz", &result));
1638   g_assert (!strinfo_enum_from_string (strinfo, length, "quux", &result));
1639
1640   g_assert_cmpstr (strinfo_string_from_enum (strinfo, length, 0), ==, NULL);
1641   g_assert_cmpstr (strinfo_string_from_enum (strinfo, length, 1), ==, "foo");
1642   g_assert_cmpstr (strinfo_string_from_enum (strinfo, length, 2), ==, "bar");
1643   g_assert_cmpstr (strinfo_string_from_enum (strinfo, length, 3), ==, NULL);
1644
1645   g_assert (strinfo_is_string_valid (strinfo, length, "foo"));
1646   g_assert (strinfo_is_string_valid (strinfo, length, "bar"));
1647   g_assert (!strinfo_is_string_valid (strinfo, length, "baz"));
1648   g_assert (!strinfo_is_string_valid (strinfo, length, "quux"));
1649 }
1650
1651 static void
1652 test_enums_non_enum_key (void)
1653 {
1654   GSettings *direct;
1655
1656   direct = g_settings_new ("org.gtk.test.enums.direct");
1657   g_settings_get_enum (direct, "test");
1658   g_assert_not_reached ();
1659 }
1660
1661 static void
1662 test_enums_non_enum_value (void)
1663 {
1664   GSettings *settings;
1665
1666   settings = g_settings_new ("org.gtk.test.enums");
1667   g_settings_set_enum (settings, "test", 42);
1668   g_assert_not_reached ();
1669 }
1670
1671 static void
1672 test_enums_range (void)
1673 {
1674   GSettings *settings;
1675
1676   settings = g_settings_new ("org.gtk.test.enums");
1677   g_settings_set_string (settings, "test", "qux");
1678   g_assert_not_reached ();
1679 }
1680
1681 static void
1682 test_enums_non_flags (void)
1683 {
1684   GSettings *settings;
1685
1686   settings = g_settings_new ("org.gtk.test.enums");
1687   g_settings_get_flags (settings, "test");
1688   g_assert_not_reached ();
1689 }
1690
1691 static void
1692 test_enums (void)
1693 {
1694   GSettings *settings, *direct;
1695   gchar *str;
1696
1697   settings = g_settings_new ("org.gtk.test.enums");
1698   direct = g_settings_new ("org.gtk.test.enums.direct");
1699
1700   if (g_test_undefined () && !backend_set)
1701     {
1702       g_test_trap_subprocess ("/gsettings/enums/subprocess/non-enum-key", 0, 0);
1703       g_test_trap_assert_failed ();
1704       g_test_trap_assert_stderr ("*not associated with an enum*");
1705
1706       g_test_trap_subprocess ("/gsettings/enums/subprocess/non-enum-value", 0, 0);
1707       g_test_trap_assert_failed ();
1708       g_test_trap_assert_stderr ("*invalid enum value 42*");
1709
1710       g_test_trap_subprocess ("/gsettings/enums/subprocess/range", 0, 0);
1711       g_test_trap_assert_failed ();
1712       g_test_trap_assert_stderr ("*g_settings_set_value*valid range*");
1713
1714       g_test_trap_subprocess ("/gsettings/enums/subprocess/non-flags", 0, 0);
1715       g_test_trap_assert_failed ();
1716       g_test_trap_assert_stderr ("*not associated with a flags*");
1717     }
1718
1719   str = g_settings_get_string (settings, "test");
1720   g_assert_cmpstr (str, ==, "bar");
1721   g_free (str);
1722
1723   g_settings_set_enum (settings, "test", TEST_ENUM_FOO);
1724
1725   str = g_settings_get_string (settings, "test");
1726   g_assert_cmpstr (str, ==, "foo");
1727   g_free (str);
1728
1729   g_assert_cmpint (g_settings_get_enum (settings, "test"), ==, TEST_ENUM_FOO);
1730
1731   g_settings_set_string (direct, "test", "qux");
1732
1733   str = g_settings_get_string (direct, "test");
1734   g_assert_cmpstr (str, ==, "qux");
1735   g_free (str);
1736
1737   str = g_settings_get_string (settings, "test");
1738   g_assert_cmpstr (str, ==, "quux");
1739   g_free (str);
1740
1741   g_assert_cmpint (g_settings_get_enum (settings, "test"), ==, TEST_ENUM_QUUX);
1742 }
1743
1744 static void
1745 test_flags_non_flags_key (void)
1746 {
1747   GSettings *direct;
1748
1749   direct = g_settings_new ("org.gtk.test.enums.direct");
1750   g_settings_get_flags (direct, "test");
1751   g_assert_not_reached ();
1752 }
1753
1754 static void
1755 test_flags_non_flags_value (void)
1756 {
1757   GSettings *settings;
1758
1759   settings = g_settings_new ("org.gtk.test.enums");
1760   g_settings_set_flags (settings, "f-test", 0x42);
1761   g_assert_not_reached ();
1762 }
1763
1764 static void
1765 test_flags_range (void)
1766 {
1767   GSettings *settings;
1768
1769   settings = g_settings_new ("org.gtk.test.enums");
1770   g_settings_set_strv (settings, "f-test",
1771                        (const gchar **) g_strsplit ("rock", ",", 0));
1772   g_assert_not_reached ();
1773 }
1774
1775 static void
1776 test_flags_non_enum (void)
1777 {
1778   GSettings *settings;
1779
1780   settings = g_settings_new ("org.gtk.test.enums");
1781   g_settings_get_enum (settings, "f-test");
1782   g_assert_not_reached ();
1783 }
1784
1785 static void
1786 test_flags (void)
1787 {
1788   GSettings *settings, *direct;
1789   gchar **strv;
1790   gchar *str;
1791
1792   settings = g_settings_new ("org.gtk.test.enums");
1793   direct = g_settings_new ("org.gtk.test.enums.direct");
1794
1795   if (g_test_undefined () && !backend_set)
1796     {
1797       g_test_trap_subprocess ("/gsettings/flags/subprocess/non-flags-key", 0, 0);
1798       g_test_trap_assert_failed ();
1799       g_test_trap_assert_stderr ("*not associated with a flags*");
1800
1801       g_test_trap_subprocess ("/gsettings/flags/subprocess/non-flags-value", 0, 0);
1802       g_test_trap_assert_failed ();
1803       g_test_trap_assert_stderr ("*invalid flags value 0x00000042*");
1804
1805       g_test_trap_subprocess ("/gsettings/flags/subprocess/range", 0, 0);
1806       g_test_trap_assert_failed ();
1807       g_test_trap_assert_stderr ("*g_settings_set_value*valid range*");
1808
1809       g_test_trap_subprocess ("/gsettings/flags/subprocess/non-enum", 0, 0);
1810       g_test_trap_assert_failed ();
1811       g_test_trap_assert_stderr ("*not associated with an enum*");
1812     }
1813
1814   strv = g_settings_get_strv (settings, "f-test");
1815   str = g_strjoinv (",", strv);
1816   g_assert_cmpstr (str, ==, "");
1817   g_strfreev (strv);
1818   g_free (str);
1819
1820   g_settings_set_flags (settings, "f-test",
1821                         TEST_FLAGS_WALKING | TEST_FLAGS_TALKING);
1822
1823   strv = g_settings_get_strv (settings, "f-test");
1824   str = g_strjoinv (",", strv);
1825   g_assert_cmpstr (str, ==, "talking,walking");
1826   g_strfreev (strv);
1827   g_free (str);
1828
1829   g_assert_cmpint (g_settings_get_flags (settings, "f-test"), ==,
1830                    TEST_FLAGS_WALKING | TEST_FLAGS_TALKING);
1831
1832   strv = g_strsplit ("speaking,laughing", ",", 0);
1833   g_settings_set_strv (direct, "f-test", (const gchar **) strv);
1834   g_strfreev (strv);
1835
1836   strv = g_settings_get_strv (direct, "f-test");
1837   str = g_strjoinv (",", strv);
1838   g_assert_cmpstr (str, ==, "speaking,laughing");
1839   g_strfreev (strv);
1840   g_free (str);
1841
1842   strv = g_settings_get_strv (settings, "f-test");
1843   str = g_strjoinv (",", strv);
1844   g_assert_cmpstr (str, ==, "talking,laughing");
1845   g_strfreev (strv);
1846   g_free (str);
1847
1848   g_assert_cmpint (g_settings_get_flags (settings, "f-test"), ==,
1849                    TEST_FLAGS_TALKING | TEST_FLAGS_LAUGHING);
1850 }
1851
1852 static void
1853 test_range_high (void)
1854 {
1855   GSettings *settings;
1856
1857   settings = g_settings_new ("org.gtk.test.range");
1858   g_settings_set_int (settings, "val", 45);
1859   g_assert_not_reached ();
1860 }
1861
1862 static void
1863 test_range_low (void)
1864 {
1865   GSettings *settings;
1866
1867   settings = g_settings_new ("org.gtk.test.range");
1868   g_settings_set_int (settings, "val", 1);
1869   g_assert_not_reached ();
1870 }
1871
1872 static void
1873 test_range (void)
1874 {
1875   GSettings *settings, *direct;
1876   GVariant *value;
1877
1878   settings = g_settings_new ("org.gtk.test.range");
1879   direct = g_settings_new ("org.gtk.test.range.direct");
1880
1881   if (g_test_undefined () && !backend_set)
1882     {
1883       g_test_trap_subprocess ("/gsettings/range/subprocess/high", 0, 0);
1884       g_test_trap_assert_failed ();
1885       g_test_trap_assert_stderr ("*g_settings_set_value*valid range*");
1886
1887       g_test_trap_subprocess ("/gsettings/range/subprocess/low", 0, 0);
1888       g_test_trap_assert_failed ();
1889       g_test_trap_assert_stderr ("*g_settings_set_value*valid range*");
1890     }
1891
1892   g_assert_cmpint (g_settings_get_int (settings, "val"), ==, 33);
1893   g_settings_set_int (direct, "val", 22);
1894   g_assert_cmpint (g_settings_get_int (direct, "val"), ==, 22);
1895   g_assert_cmpint (g_settings_get_int (settings, "val"), ==, 22);
1896   g_settings_set_int (direct, "val", 45);
1897   g_assert_cmpint (g_settings_get_int (direct, "val"), ==, 45);
1898   g_assert_cmpint (g_settings_get_int (settings, "val"), ==, 33);
1899   g_settings_set_int (direct, "val", 1);
1900   g_assert_cmpint (g_settings_get_int (direct, "val"), ==, 1);
1901   g_assert_cmpint (g_settings_get_int (settings, "val"), ==, 33);
1902
1903   value = g_variant_new_int32 (1);
1904   g_assert (!g_settings_range_check (settings, "val", value));
1905   g_variant_unref (value);
1906   value = g_variant_new_int32 (33);
1907   g_assert (g_settings_range_check (settings, "val", value));
1908   g_variant_unref (value);
1909   value = g_variant_new_int32 (45);
1910   g_assert (!g_settings_range_check (settings, "val", value));
1911   g_variant_unref (value);
1912 }
1913
1914 static gboolean
1915 strv_has_string (gchar       **haystack,
1916                  const gchar  *needle)
1917 {
1918   guint n;
1919
1920   for (n = 0; haystack != NULL && haystack[n] != NULL; n++)
1921     {
1922       if (g_strcmp0 (haystack[n], needle) == 0)
1923         return TRUE;
1924     }
1925   return FALSE;
1926 }
1927
1928 static gboolean
1929 strv_set_equal (gchar **strv, ...)
1930 {
1931   gint count;
1932   va_list list;
1933   const gchar *str;
1934   gboolean res;
1935
1936   res = TRUE;
1937   count = 0;
1938   va_start (list, strv);
1939   while (1)
1940     {
1941       str = va_arg (list, const gchar *);
1942       if (str == NULL)
1943         break;
1944       if (!strv_has_string (strv, str))
1945         {
1946           res = FALSE;
1947           break;
1948         }
1949       count++;
1950     }
1951   va_end (list);
1952
1953   if (res)
1954     res = g_strv_length ((gchar**)strv) == count;
1955
1956   return res;
1957 }
1958
1959 static void
1960 test_list_items (void)
1961 {
1962   GSettings *settings;
1963   gchar **children;
1964   gchar **keys;
1965
1966   settings = g_settings_new ("org.gtk.test");
1967   children = g_settings_list_children (settings);
1968   keys = g_settings_list_keys (settings);
1969
1970   g_assert (strv_set_equal (children, "basic-types", "complex-types", "localized", NULL));
1971   g_assert (strv_set_equal (keys, "greeting", "farewell", NULL));
1972
1973   g_strfreev (children);
1974   g_strfreev (keys);
1975
1976   g_object_unref (settings);
1977 }
1978
1979 static void
1980 test_list_schemas (void)
1981 {
1982   const gchar * const *schemas;
1983   const gchar * const *relocs;
1984
1985   relocs = g_settings_list_relocatable_schemas ();
1986   schemas = g_settings_list_schemas ();
1987
1988   g_assert (strv_set_equal ((gchar **)relocs,
1989                             "org.gtk.test.no-path",
1990                             NULL));
1991
1992   g_assert (strv_set_equal ((gchar **)schemas,
1993                             "org.gtk.test",
1994                             "org.gtk.test.basic-types",
1995                             "org.gtk.test.complex-types",
1996                             "org.gtk.test.localized",
1997                             "org.gtk.test.binding",
1998                             "org.gtk.test.enums",
1999                             "org.gtk.test.enums.direct",
2000                             "org.gtk.test.range",
2001                             "org.gtk.test.range.direct",
2002                             "org.gtk.test.mapped",
2003                             NULL));
2004 }
2005
2006 static gboolean
2007 map_func (GVariant *value,
2008           gpointer *result,
2009           gpointer  user_data)
2010 {
2011   gint *state = user_data;
2012   gint v;
2013
2014   if (value)
2015     v = g_variant_get_int32 (value);
2016   else
2017     v = -1;
2018
2019   if (*state == 0)
2020     {
2021       g_assert_cmpint (v, ==, 1);
2022       (*state)++;
2023       return FALSE;
2024     }
2025   else if (*state == 1)
2026     {
2027       g_assert_cmpint (v, ==, 0);
2028       (*state)++;
2029       return FALSE;
2030     }
2031   else
2032     {
2033       g_assert (value == NULL);
2034       *result = g_variant_new_int32 (5);
2035       return TRUE;
2036     }
2037 }
2038
2039 static void
2040 test_get_mapped (void)
2041 {
2042   GSettings *settings;
2043   gint state;
2044   gpointer p;
2045   gint val;
2046
2047   settings = g_settings_new ("org.gtk.test.mapped");
2048   g_settings_set_int (settings, "val", 1);
2049
2050   state = 0;
2051   p = g_settings_get_mapped (settings, "val", map_func, &state);
2052   val = g_variant_get_int32 ((GVariant*)p);
2053   g_assert_cmpint (val, ==, 5);
2054
2055   g_variant_unref (p);
2056   g_object_unref (settings);
2057 }
2058
2059 static void
2060 test_get_range (void)
2061 {
2062   GSettings *settings;
2063   GVariant *range;
2064
2065   settings = g_settings_new ("org.gtk.test.range");
2066   range = g_settings_get_range (settings, "val");
2067   check_and_free (range, "('range', <(2, 44)>)");
2068   g_object_unref (settings);
2069
2070   settings = g_settings_new ("org.gtk.test.enums");
2071   range = g_settings_get_range (settings, "test");
2072   check_and_free (range, "('enum', <['foo', 'bar', 'baz', 'quux']>)");
2073   g_object_unref (settings);
2074
2075   settings = g_settings_new ("org.gtk.test.enums");
2076   range = g_settings_get_range (settings, "f-test");
2077   check_and_free (range, "('flags', "
2078                   "<['mourning', 'laughing', 'talking', 'walking']>)");
2079   g_object_unref (settings);
2080
2081   settings = g_settings_new ("org.gtk.test");
2082   range = g_settings_get_range (settings, "greeting");
2083   check_and_free (range, "('type', <@as []>)");
2084   g_object_unref (settings);
2085 }
2086
2087 static void
2088 test_schema_source (void)
2089 {
2090   GSettingsSchemaSource *parent;
2091   GSettingsSchemaSource *source;
2092   GSettingsBackend *backend;
2093   GSettingsSchema *schema;
2094   GError *error = NULL;
2095   GSettings *settings;
2096   gboolean enabled;
2097
2098   backend = g_settings_backend_get_default ();
2099
2100   /* make sure it fails properly */
2101   parent = g_settings_schema_source_get_default ();
2102   source = g_settings_schema_source_new_from_directory ("/path/that/does/not/exist", parent,  TRUE, &error);
2103   g_assert (source == NULL);
2104   g_assert_error (error, G_FILE_ERROR, G_FILE_ERROR_NOENT);
2105   g_clear_error (&error);
2106
2107   /* create a source with the parent */
2108   source = g_settings_schema_source_new_from_directory ("schema-source", parent, TRUE, &error);
2109   g_assert_no_error (error);
2110   g_assert (source != NULL);
2111
2112   /* check recursive lookups are working */
2113   schema = g_settings_schema_source_lookup (source, "org.gtk.test", TRUE);
2114   g_assert (schema != NULL);
2115   g_settings_schema_unref (schema);
2116
2117   /* check recursive lookups for non-existent schemas */
2118   schema = g_settings_schema_source_lookup (source, "org.gtk.doesnotexist", TRUE);
2119   g_assert (schema == NULL);
2120
2121   /* check non-recursive for schema that only exists in lower layers */
2122   schema = g_settings_schema_source_lookup (source, "org.gtk.test", FALSE);
2123   g_assert (schema == NULL);
2124
2125   /* check non-recursive lookup for non-existent */
2126   schema = g_settings_schema_source_lookup (source, "org.gtk.doesnotexist", FALSE);
2127   g_assert (schema == NULL);
2128
2129   /* check non-recursive for schema that exists in toplevel */
2130   schema = g_settings_schema_source_lookup (source, "org.gtk.schemasourcecheck", FALSE);
2131   g_assert (schema != NULL);
2132   g_settings_schema_unref (schema);
2133
2134   /* check recursive for schema that exists in toplevel */
2135   schema = g_settings_schema_source_lookup (source, "org.gtk.schemasourcecheck", TRUE);
2136   g_assert (schema != NULL);
2137
2138   /* try to use it for something */
2139   settings = g_settings_new_full (schema, backend, g_settings_schema_get_path (schema));
2140   g_settings_schema_unref (schema);
2141   enabled = FALSE;
2142   g_settings_get (settings, "enabled", "b", &enabled);
2143   g_assert (enabled);
2144   g_object_unref (settings);
2145
2146   g_settings_schema_source_unref (source);
2147
2148   /* try again, but with no parent */
2149   source = g_settings_schema_source_new_from_directory ("schema-source", NULL, FALSE, NULL);
2150   g_assert (source != NULL);
2151
2152   /* should not find it this time, even if recursive... */
2153   schema = g_settings_schema_source_lookup (source, "org.gtk.test", FALSE);
2154   g_assert (schema == NULL);
2155   schema = g_settings_schema_source_lookup (source, "org.gtk.test", TRUE);
2156   g_assert (schema == NULL);
2157
2158   /* should still find our own... */
2159   schema = g_settings_schema_source_lookup (source, "org.gtk.schemasourcecheck", TRUE);
2160   g_assert (schema != NULL);
2161   g_settings_schema_unref (schema);
2162   schema = g_settings_schema_source_lookup (source, "org.gtk.schemasourcecheck", FALSE);
2163   g_assert (schema != NULL);
2164   g_settings_schema_unref (schema);
2165
2166   g_settings_schema_source_unref (source);
2167 }
2168
2169 static void
2170 test_actions (void)
2171 {
2172   GAction *string, *toggle;
2173   gboolean c1, c2, c3;
2174   GSettings *settings;
2175   gchar *name;
2176   GVariantType *param_type;
2177   gboolean enabled;
2178   GVariantType *state_type;
2179   GVariant *state;
2180
2181   settings = g_settings_new ("org.gtk.test.basic-types");
2182   string = g_settings_create_action (settings, "test-string");
2183   toggle = g_settings_create_action (settings, "test-boolean");
2184   g_object_unref (settings); /* should be held by the actions */
2185
2186   g_signal_connect (settings, "changed", G_CALLBACK (changed_cb2), &c1);
2187   g_signal_connect (string, "notify::state", G_CALLBACK (changed_cb2), &c2);
2188   g_signal_connect (toggle, "notify::state", G_CALLBACK (changed_cb2), &c3);
2189
2190   c1 = c2 = c3 = FALSE;
2191   g_settings_set_string (settings, "test-string", "hello world");
2192   check_and_free (g_action_get_state (string), "'hello world'");
2193   g_assert (c1 && c2 && !c3);
2194   c1 = c2 = c3 = FALSE;
2195
2196   g_action_activate (string, g_variant_new_string ("hihi"));
2197   check_and_free (g_settings_get_value (settings, "test-string"), "'hihi'");
2198   g_assert (c1 && c2 && !c3);
2199   c1 = c2 = c3 = FALSE;
2200
2201   g_action_change_state (string, g_variant_new_string ("kthxbye"));
2202   check_and_free (g_settings_get_value (settings, "test-string"), "'kthxbye'");
2203   g_assert (c1 && c2 && !c3);
2204   c1 = c2 = c3 = FALSE;
2205
2206   g_action_change_state (toggle, g_variant_new_boolean (TRUE));
2207   g_assert (g_settings_get_boolean (settings, "test-boolean"));
2208   g_assert (c1 && !c2 && c3);
2209   c1 = c2 = c3 = FALSE;
2210
2211   g_action_activate (toggle, NULL);
2212   g_assert (!g_settings_get_boolean (settings, "test-boolean"));
2213   g_assert (c1 && !c2 && c3);
2214
2215   g_object_get (string,
2216                 "name", &name,
2217                 "parameter-type", &param_type,
2218                 "enabled", &enabled,
2219                 "state-type", &state_type,
2220                 "state", &state,
2221                 NULL);
2222
2223   g_assert_cmpstr (name, ==, "test-string");
2224   g_assert (g_variant_type_equal (param_type, G_VARIANT_TYPE_STRING));
2225   g_assert (enabled);
2226   g_assert (g_variant_type_equal (state_type, G_VARIANT_TYPE_STRING));
2227   g_assert_cmpstr (g_variant_get_string (state, NULL), ==, "kthxbye");
2228
2229   g_free (name);
2230   g_variant_unref (state);
2231
2232   g_object_unref (string);
2233   g_object_unref (toggle);
2234 }
2235
2236 int
2237 main (int argc, char *argv[])
2238 {
2239   gchar *enums;
2240   gint result;
2241
2242   setlocale (LC_ALL, "");
2243
2244   g_test_init (&argc, &argv, NULL);
2245
2246   if (!g_test_subprocess ())
2247     {
2248       backend_set = g_getenv ("GSETTINGS_BACKEND") != NULL;
2249
2250       g_setenv ("XDG_DATA_DIRS", ".", TRUE);
2251       g_setenv ("GSETTINGS_SCHEMA_DIR", ".", TRUE);
2252
2253       if (!backend_set)
2254         g_setenv ("GSETTINGS_BACKEND", "memory", TRUE);
2255
2256       g_remove ("org.gtk.test.enums.xml");
2257       g_assert (g_spawn_command_line_sync ("../../gobject/glib-mkenums "
2258                                            "--template " SRCDIR "/enums.xml.template "
2259                                            SRCDIR "/testenum.h",
2260                                            &enums, NULL, &result, NULL));
2261       g_assert (result == 0);
2262       g_assert (g_file_set_contents ("org.gtk.test.enums.xml", enums, -1, NULL));
2263       g_free (enums);
2264
2265       g_remove ("gschemas.compiled");
2266       g_assert (g_spawn_command_line_sync ("../glib-compile-schemas --targetdir=. "
2267                                            "--schema-file=org.gtk.test.enums.xml "
2268                                            "--schema-file=" SRCDIR "/org.gtk.test.gschema.xml",
2269                                            NULL, NULL, &result, NULL));
2270       g_assert (result == 0);
2271
2272       g_remove ("schema-source/gschemas.compiled");
2273       g_mkdir ("schema-source", 0777);
2274       g_assert (g_spawn_command_line_sync ("../glib-compile-schemas --targetdir=schema-source "
2275                                            "--schema-file=" SRCDIR "/org.gtk.schemasourcecheck.gschema.xml",
2276                                            NULL, NULL, &result, NULL));
2277       g_assert (result == 0);
2278    }
2279
2280   g_test_add_func ("/gsettings/basic", test_basic);
2281
2282   if (!backend_set)
2283     {
2284       g_test_add_func ("/gsettings/no-schema", test_no_schema);
2285       g_test_add_func ("/gsettings/no-schema/subprocess", test_no_schema_subprocess);
2286       g_test_add_func ("/gsettings/unknown-key", test_unknown_key);
2287       g_test_add_func ("/gsettings/unknown-key/subprocess", test_unknown_key_subprocess);
2288       g_test_add_func ("/gsettings/wrong-type", test_wrong_type);
2289       g_test_add_func ("/gsettings/wrong-path", test_wrong_path);
2290       g_test_add_func ("/gsettings/wrong-path/subprocess", test_wrong_path_subprocess);
2291       g_test_add_func ("/gsettings/no-path", test_no_path);
2292       g_test_add_func ("/gsettings/no-path/subprocess", test_no_path_subprocess);
2293     }
2294
2295   g_test_add_func ("/gsettings/basic-types", test_basic_types);
2296   g_test_add_func ("/gsettings/complex-types", test_complex_types);
2297   g_test_add_func ("/gsettings/changes", test_changes);
2298
2299   g_test_add_func ("/gsettings/l10n", test_l10n);
2300   g_test_add_func ("/gsettings/l10n-context", test_l10n_context);
2301
2302   g_test_add_func ("/gsettings/delay-apply", test_delay_apply);
2303   g_test_add_func ("/gsettings/delay-revert", test_delay_revert);
2304   g_test_add_func ("/gsettings/atomic", test_atomic);
2305
2306   g_test_add_func ("/gsettings/simple-binding", test_simple_binding);
2307   g_test_add_func ("/gsettings/directional-binding", test_directional_binding);
2308   g_test_add_func ("/gsettings/custom-binding", test_custom_binding);
2309   g_test_add_func ("/gsettings/no-change-binding", test_no_change_binding);
2310   g_test_add_func ("/gsettings/unbinding", test_unbind);
2311   g_test_add_func ("/gsettings/writable-binding", test_bind_writable);
2312
2313   if (!backend_set)
2314     {
2315       g_test_add_func ("/gsettings/typesafe-binding", test_typesafe_binding);
2316       g_test_add_func ("/gsettings/typesafe-binding/subprocess", test_typesafe_binding_subprocess);
2317       g_test_add_func ("/gsettings/no-read-binding", test_no_read_binding);
2318       g_test_add_func ("/gsettings/no-read-binding/subprocess/fail", test_no_read_binding_fail);
2319       g_test_add_func ("/gsettings/no-read-binding/subprocess/pass", test_no_read_binding_pass);
2320       g_test_add_func ("/gsettings/no-write-binding", test_no_write_binding);
2321       g_test_add_func ("/gsettings/no-write-binding/subprocess/fail", test_no_write_binding_fail);
2322       g_test_add_func ("/gsettings/no-write-binding/subprocess/pass", test_no_write_binding_pass);
2323     }
2324
2325   g_test_add_func ("/gsettings/keyfile", test_keyfile);
2326   g_test_add_func ("/gsettings/child-schema", test_child_schema);
2327   g_test_add_func ("/gsettings/strinfo", test_strinfo);
2328   g_test_add_func ("/gsettings/enums", test_enums);
2329   g_test_add_func ("/gsettings/enums/subprocess/non-enum-key", test_enums_non_enum_key);
2330   g_test_add_func ("/gsettings/enums/subprocess/non-enum-value", test_enums_non_enum_value);
2331   g_test_add_func ("/gsettings/enums/subprocess/range", test_enums_range);
2332   g_test_add_func ("/gsettings/enums/subprocess/non-flags", test_enums_non_flags);
2333   g_test_add_func ("/gsettings/flags", test_flags);
2334   g_test_add_func ("/gsettings/flags/subprocess/non-flags-key", test_flags_non_flags_key);
2335   g_test_add_func ("/gsettings/flags/subprocess/non-flags-value", test_flags_non_flags_value);
2336   g_test_add_func ("/gsettings/flags/subprocess/range", test_flags_range);
2337   g_test_add_func ("/gsettings/flags/subprocess/non-enum", test_flags_non_enum);
2338   g_test_add_func ("/gsettings/range", test_range);
2339   g_test_add_func ("/gsettings/range/subprocess/high", test_range_high);
2340   g_test_add_func ("/gsettings/range/subprocess/low", test_range_low);
2341   g_test_add_func ("/gsettings/list-items", test_list_items);
2342   g_test_add_func ("/gsettings/list-schemas", test_list_schemas);
2343   g_test_add_func ("/gsettings/mapped", test_get_mapped);
2344   g_test_add_func ("/gsettings/get-range", test_get_range);
2345   g_test_add_func ("/gsettings/schema-source", test_schema_source);
2346   g_test_add_func ("/gsettings/actions", test_actions);
2347
2348   result = g_test_run ();
2349
2350   g_settings_sync ();
2351
2352   return result;
2353 }