1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
/* test-settings.c
*
* Copyright 2024 Christian Hergert <chergert@redhat.com>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of the
* License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "config.h"
#include <foundry.h>
#include "test-util.h"
#define assert_strdup(e,a) \
G_STMT_START { \
g_assert_cmpstr (e, ==, a); \
g_free (a); \
} G_STMT_END
static void
test_settings_fiber (void)
{
const char *srcdir = g_getenv ("G_TEST_SRCDIR");
const char *builddir = g_getenv ("G_TEST_BUILDDIR");
g_autoptr(FoundryContext) context = NULL;
g_autoptr(FoundrySettings) settings = NULL;
g_autofree char *foundry_dir = NULL;
g_autofree char *project_dir = NULL;
g_autoptr(GError) error = NULL;
g_autofree char *str1 = NULL;
g_autoptr(GSettings) app_settings = NULL;
g_autoptr(GSettings) project_settings = NULL;
g_autoptr(GSettings) user_settings = NULL;
g_assert_nonnull (builddir);
g_assert_nonnull (srcdir);
project_dir = g_build_filename (srcdir, "test-settings", NULL);
foundry_dir = g_build_filename (builddir, "test-settings-data", ".foundry", NULL);
rm_rf (foundry_dir);
g_mkdir_with_parents (foundry_dir, 0770);
g_assert_true (g_file_test (project_dir, G_FILE_TEST_IS_DIR));
g_assert_true (g_file_test (foundry_dir, G_FILE_TEST_IS_DIR));
context = dex_await_object (foundry_context_new (foundry_dir, project_dir, 0, NULL), &error);
g_assert_no_error (error);
g_assert_nonnull (context);
settings = foundry_context_load_settings (context, "org.gnome.foundry.project", NULL);
g_assert_nonnull (settings);
g_assert_true (FOUNDRY_IS_SETTINGS (settings));
app_settings = foundry_settings_dup_layer (settings, FOUNDRY_SETTINGS_LAYER_APPLICATION);
project_settings = foundry_settings_dup_layer (settings, FOUNDRY_SETTINGS_LAYER_PROJECT);
user_settings = foundry_settings_dup_layer (settings, FOUNDRY_SETTINGS_LAYER_USER);
g_assert_true (G_IS_SETTINGS (app_settings));
g_assert_true (G_IS_SETTINGS (project_settings));
g_assert_true (G_IS_SETTINGS (user_settings));
assert_strdup ("buildconfig:default", foundry_settings_get_string (settings, "config"));
g_settings_reset (user_settings, "config");
g_settings_set_string (app_settings, "config", "app-config-id");
assert_strdup ("app-config-id", foundry_settings_get_string (settings, "config"));
g_settings_set_string (project_settings, "config", "project-config-id");
assert_strdup ("project-config-id", foundry_settings_get_string (settings, "config"));
g_settings_set_string (user_settings, "config", "user-config-id");
assert_strdup ("user-config-id", foundry_settings_get_string (settings, "config"));
}
static void
test_settings (void)
{
test_from_fiber (test_settings_fiber);
}
int
main (int argc,
char *argv[])
{
dex_init ();
g_test_init (&argc, &argv, NULL);
g_test_add_func ("/Foundry/Settings/basic", test_settings);
return g_test_run ();
}
|