/* GSecret - GLib wrapper for Secret Service * * Copyright 2011 Collabora Ltd. * * This program 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 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. */ #include "config.h" #include "gsecret-service.h" #include "gsecret-private.h" #include "egg/egg-testing.h" #include #include #include static gchar *MOCK_NAME = "org.mock.Service"; typedef struct { GPid pid; GDBusConnection *connection; GSecretService *service; } Test; static void setup (Test *test, gconstpointer data) { GError *error = NULL; const gchar *mock_script = data; gchar *argv[] = { "python", (gchar *)mock_script, "--name", MOCK_NAME, NULL }; g_spawn_async (SRCDIR, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, &test->pid, &error); g_assert_no_error (error); g_usleep (200 * 1000); test->connection = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error); g_assert_no_error (error); test->service = _gsecret_service_bare_instance (test->connection, MOCK_NAME); } static void teardown (Test *test, gconstpointer unused) { g_clear_object (&test->service); egg_assert_not_object (test->service); g_clear_object (&test->connection); g_assert (test->pid); if (kill (test->pid, SIGTERM) < 0) g_error ("kill() failed: %s", g_strerror (errno)); g_spawn_close_pid (test->pid); } static void on_complete_get_result (GObject *source, GAsyncResult *result, gpointer user_data) { GAsyncResult **ret = user_data; g_assert (ret != NULL); g_assert (*ret == NULL); *ret = g_object_ref (result); egg_test_wait_stop (); } static void test_instance (void) { GSecretService *service1; GSecretService *service2; GSecretService *service3; GError *error = NULL; GDBusConnection *connection; connection = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error); g_assert_no_error (error); /* Both these sohuld point to the same thing */ service1 = _gsecret_service_bare_instance (connection, MOCK_NAME); service2 = _gsecret_service_bare_instance (connection, MOCK_NAME); g_assert (GSECRET_IS_SERVICE (service1)); g_assert (service1 == service2); g_object_unref (service1); g_assert (G_IS_OBJECT (service1)); g_object_unref (service2); egg_assert_not_object (service2); /* Services were unreffed, so this should create a new one */ service3 = _gsecret_service_bare_instance (connection, MOCK_NAME); g_assert (GSECRET_IS_SERVICE (service3)); g_object_unref (service3); egg_assert_not_object (service3); g_object_unref (connection); } static void test_search_paths (Test *test, gconstpointer used) { GHashTable *attributes; gboolean ret; gchar **locked; gchar **unlocked; GError *error = NULL; attributes = g_hash_table_new (g_str_hash, g_str_equal); g_hash_table_insert (attributes, "number", "1"); ret = gsecret_service_search_paths_sync (test->service, attributes, NULL, &unlocked, &locked, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert (locked); g_assert_cmpstr (locked[0], ==, "/org/freedesktop/secrets/collection/second/item_one"); g_assert (unlocked); g_assert_cmpstr (unlocked[0], ==, "/org/freedesktop/secrets/collection/collection/item_one"); g_strfreev (unlocked); g_strfreev (locked); g_hash_table_unref (attributes); } static void test_search_paths_async (Test *test, gconstpointer used) { GAsyncResult *result = NULL; GHashTable *attributes; gboolean ret; gchar **locked; gchar **unlocked; GError *error = NULL; attributes = g_hash_table_new (g_str_hash, g_str_equal); g_hash_table_insert (attributes, "number", "1"); gsecret_service_search_paths (test->service, attributes, NULL, on_complete_get_result, &result); egg_test_wait (); g_assert (G_IS_ASYNC_RESULT (result)); ret = gsecret_service_search_paths_finish (test->service, result, &unlocked, &locked, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert (locked); g_assert_cmpstr (locked[0], ==, "/org/freedesktop/secrets/collection/second/item_one"); g_assert (unlocked); g_assert_cmpstr (unlocked[0], ==, "/org/freedesktop/secrets/collection/collection/item_one"); g_strfreev (unlocked); g_strfreev (locked); g_object_unref (result); g_hash_table_unref (attributes); } static void test_search_paths_nulls (Test *test, gconstpointer used) { GAsyncResult *result = NULL; GHashTable *attributes; gboolean ret; gchar **paths; GError *error = NULL; attributes = g_hash_table_new (g_str_hash, g_str_equal); g_hash_table_insert (attributes, "number", "1"); ret = gsecret_service_search_paths_sync (test->service, attributes, NULL, &paths, NULL, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert (paths != NULL); g_assert_cmpstr (paths[0], ==, "/org/freedesktop/secrets/collection/collection/item_one"); g_strfreev (paths); ret = gsecret_service_search_paths_sync (test->service, attributes, NULL, NULL, &paths, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert (paths != NULL); g_assert_cmpstr (paths[0], ==, "/org/freedesktop/secrets/collection/second/item_one"); g_strfreev (paths); ret = gsecret_service_search_paths_sync (test->service, attributes, NULL, NULL, NULL, &error); g_assert_no_error (error); g_assert (ret == TRUE); gsecret_service_search_paths (test->service, attributes, NULL, on_complete_get_result, &result); egg_test_wait (); g_assert (G_IS_ASYNC_RESULT (result)); ret = gsecret_service_search_paths_finish (test->service, result, &paths, NULL, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert (paths != NULL); g_assert_cmpstr (paths[0], ==, "/org/freedesktop/secrets/collection/collection/item_one"); g_strfreev (paths); g_clear_object (&result); gsecret_service_search_paths (test->service, attributes, NULL, on_complete_get_result, &result); egg_test_wait (); g_assert (G_IS_ASYNC_RESULT (result)); ret = gsecret_service_search_paths_finish (test->service, result, NULL, &paths, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert (paths != NULL); g_assert_cmpstr (paths[0], ==, "/org/freedesktop/secrets/collection/second/item_one"); g_strfreev (paths); g_clear_object (&result); gsecret_service_search_paths (test->service, attributes, NULL, on_complete_get_result, &result); egg_test_wait (); g_assert (G_IS_ASYNC_RESULT (result)); ret = gsecret_service_search_paths_finish (test->service, result, NULL, NULL, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_clear_object (&result); g_hash_table_unref (attributes); } int main (int argc, char **argv) { g_test_init (&argc, &argv, NULL); g_set_prgname ("test-service"); g_type_init (); g_test_add_func ("/service/instance", test_instance); g_test_add ("/service/search-paths", Test, "mock-service-normal.py", setup, test_search_paths, teardown); g_test_add ("/service/search-paths-async", Test, "mock-service-normal.py", setup, test_search_paths_async, teardown); g_test_add ("/service/search-paths-nulls", Test, "mock-service-normal.py", setup, test_search_paths_nulls, teardown); return egg_tests_run_with_loop (); }