mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 20:58:52 +00:00
f44aae6efa
* And fix bugs found in the process
340 lines
9.1 KiB
C
340 lines
9.1 KiB
C
/* GSecret - GLib wrapper for Secret Service
|
|
*
|
|
* Copyright 2012 Red Hat Inc.
|
|
*
|
|
* 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.
|
|
*
|
|
* Author: Stef Walter <stefw@gnome.org>
|
|
*/
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "gsecret-collection.h"
|
|
#include "gsecret-service.h"
|
|
#include "gsecret-private.h"
|
|
|
|
#include "mock-service.h"
|
|
|
|
#include "egg/egg-testing.h"
|
|
|
|
#include <glib.h>
|
|
|
|
#include <errno.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct {
|
|
GDBusConnection *connection;
|
|
GSecretService *service;
|
|
} Test;
|
|
|
|
static void
|
|
setup (Test *test,
|
|
gconstpointer data)
|
|
{
|
|
GError *error = NULL;
|
|
const gchar *mock_script = data;
|
|
|
|
mock_service_start (mock_script, &error);
|
|
g_assert_no_error (error);
|
|
|
|
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, NULL);
|
|
}
|
|
|
|
static void
|
|
teardown (Test *test,
|
|
gconstpointer unused)
|
|
{
|
|
GError *error = NULL;
|
|
|
|
g_object_unref (test->service);
|
|
egg_assert_not_object (test->service);
|
|
|
|
mock_service_stop ();
|
|
|
|
g_dbus_connection_flush_sync (test->connection, NULL, &error);
|
|
g_assert_no_error (error);
|
|
g_object_unref (test->connection);
|
|
}
|
|
|
|
static void
|
|
on_async_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
|
|
on_notify_stop (GObject *obj,
|
|
GParamSpec *spec,
|
|
gpointer user_data)
|
|
{
|
|
guint *sigs = user_data;
|
|
g_assert (sigs != NULL);
|
|
g_assert (*sigs > 0);
|
|
if (--(*sigs) == 0)
|
|
egg_test_wait_stop ();
|
|
}
|
|
|
|
static void
|
|
test_new_sync (Test *test,
|
|
gconstpointer unused)
|
|
{
|
|
const gchar *collection_path = "/org/freedesktop/secrets/collection/collection";
|
|
GError *error = NULL;
|
|
GSecretCollection *collection;
|
|
|
|
collection = gsecret_collection_new_sync (test->service, collection_path, NULL, &error);
|
|
g_assert_no_error (error);
|
|
|
|
g_assert_cmpstr (g_dbus_proxy_get_object_path (G_DBUS_PROXY (collection)), ==, collection_path);
|
|
|
|
g_object_unref (collection);
|
|
egg_assert_not_object (collection);
|
|
}
|
|
|
|
static void
|
|
test_new_async (Test *test,
|
|
gconstpointer unused)
|
|
{
|
|
const gchar *collection_path = "/org/freedesktop/secrets/collection/collection";
|
|
GError *error = NULL;
|
|
GSecretCollection *collection;
|
|
GAsyncResult *result = NULL;
|
|
|
|
gsecret_collection_new (test->service, collection_path, NULL, on_async_result, &result);
|
|
g_assert (result == NULL);
|
|
|
|
egg_test_wait ();
|
|
|
|
collection = gsecret_collection_new_finish (result, &error);
|
|
g_assert_no_error (error);
|
|
g_object_unref (result);
|
|
|
|
g_assert_cmpstr (g_dbus_proxy_get_object_path (G_DBUS_PROXY (collection)), ==, collection_path);
|
|
|
|
g_object_unref (collection);
|
|
egg_assert_not_object (collection);
|
|
}
|
|
|
|
static void
|
|
test_properties (Test *test,
|
|
gconstpointer unused)
|
|
{
|
|
const gchar *collection_path = "/org/freedesktop/secrets/collection/collection";
|
|
GError *error = NULL;
|
|
GSecretCollection *collection;
|
|
guint64 created;
|
|
guint64 modified;
|
|
gboolean locked;
|
|
gchar *label;
|
|
|
|
collection = gsecret_collection_new_sync (test->service, collection_path, NULL, &error);
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (gsecret_collection_get_locked (collection) == FALSE);
|
|
g_assert_cmpuint (gsecret_collection_get_created (collection), <=, time (NULL));
|
|
g_assert_cmpuint (gsecret_collection_get_modified (collection), <=, time (NULL));
|
|
|
|
label = gsecret_collection_get_label (collection);
|
|
g_assert_cmpstr (label, ==, "Collection One");
|
|
g_free (label);
|
|
|
|
g_object_get (collection,
|
|
"locked", &locked,
|
|
"created", &created,
|
|
"modified", &modified,
|
|
"label", &label,
|
|
NULL);
|
|
|
|
g_assert (locked == FALSE);
|
|
g_assert_cmpuint (created, <=, time (NULL));
|
|
g_assert_cmpuint (modified, <=, time (NULL));
|
|
|
|
g_assert_cmpstr (label, ==, "Collection One");
|
|
g_free (label);
|
|
|
|
g_object_unref (collection);
|
|
}
|
|
|
|
static void
|
|
test_set_label_sync (Test *test,
|
|
gconstpointer unused)
|
|
{
|
|
const gchar *collection_path = "/org/freedesktop/secrets/collection/collection";
|
|
GError *error = NULL;
|
|
GSecretCollection *collection;
|
|
gboolean ret;
|
|
gchar *label;
|
|
|
|
collection = gsecret_collection_new_sync (test->service, collection_path, NULL, &error);
|
|
g_assert_no_error (error);
|
|
|
|
label = gsecret_collection_get_label (collection);
|
|
g_assert_cmpstr (label, ==, "Collection One");
|
|
g_free (label);
|
|
|
|
ret = gsecret_collection_set_label_sync (collection, "Another label", NULL, &error);
|
|
g_assert_no_error (error);
|
|
g_assert (ret == TRUE);
|
|
|
|
label = gsecret_collection_get_label (collection);
|
|
g_assert_cmpstr (label, ==, "Another label");
|
|
g_free (label);
|
|
|
|
g_object_unref (collection);
|
|
}
|
|
|
|
static void
|
|
test_set_label_async (Test *test,
|
|
gconstpointer unused)
|
|
{
|
|
const gchar *collection_path = "/org/freedesktop/secrets/collection/collection";
|
|
GAsyncResult *result = NULL;
|
|
GError *error = NULL;
|
|
GSecretCollection *collection;
|
|
gboolean ret;
|
|
gchar *label;
|
|
|
|
collection = gsecret_collection_new_sync (test->service, collection_path, NULL, &error);
|
|
g_assert_no_error (error);
|
|
|
|
label = gsecret_collection_get_label (collection);
|
|
g_assert_cmpstr (label, ==, "Collection One");
|
|
g_free (label);
|
|
|
|
gsecret_collection_set_label (collection, "Another label", NULL, on_async_result, &result);
|
|
g_assert (result == NULL);
|
|
|
|
egg_test_wait ();
|
|
|
|
ret = gsecret_collection_set_label_finish (collection, result, &error);
|
|
g_assert_no_error (error);
|
|
g_assert (ret == TRUE);
|
|
g_object_unref (result);
|
|
|
|
label = gsecret_collection_get_label (collection);
|
|
g_assert_cmpstr (label, ==, "Another label");
|
|
g_free (label);
|
|
|
|
g_object_unref (collection);
|
|
}
|
|
|
|
static void
|
|
test_set_label_prop (Test *test,
|
|
gconstpointer unused)
|
|
{
|
|
const gchar *collection_path = "/org/freedesktop/secrets/collection/collection";
|
|
GError *error = NULL;
|
|
GSecretCollection *collection;
|
|
guint sigs = 2;
|
|
gchar *label;
|
|
|
|
collection = gsecret_collection_new_sync (test->service, collection_path, NULL, &error);
|
|
g_assert_no_error (error);
|
|
|
|
label = gsecret_collection_get_label (collection);
|
|
g_assert_cmpstr (label, ==, "Collection One");
|
|
g_free (label);
|
|
|
|
g_signal_connect (collection, "notify::label", G_CALLBACK (on_notify_stop), &sigs);
|
|
g_object_set (collection, "label", "Blah blah", NULL);
|
|
|
|
/* Wait for the property to actually 'take' */
|
|
egg_test_wait ();
|
|
|
|
label = gsecret_collection_get_label (collection);
|
|
g_assert_cmpstr (label, ==, "Blah blah");
|
|
g_free (label);
|
|
|
|
g_object_unref (collection);
|
|
}
|
|
|
|
#if 0
|
|
static void
|
|
test_delete_sync (Test *test,
|
|
gconstpointer unused)
|
|
{
|
|
const gchar *item_path = "/org/freedesktop/secrets/collection/collection/item_one";
|
|
GError *error = NULL;
|
|
GSecretItem *item;
|
|
gboolean ret;
|
|
|
|
item = gsecret_item_new_sync (test->service, item_path, NULL, &error);
|
|
g_assert_no_error (error);
|
|
|
|
ret = gsecret_item_delete_sync (item, NULL, &error);
|
|
g_assert_no_error (error);
|
|
g_assert (ret == TRUE);
|
|
|
|
g_object_unref (item);
|
|
|
|
item = gsecret_item_new_sync (test->service, item_path, NULL, &error);
|
|
g_assert_error (error, G_DBUS_ERROR, G_DBUS_ERROR_UNKNOWN_METHOD);
|
|
g_assert (item == NULL);
|
|
}
|
|
|
|
static void
|
|
test_delete_async (Test *test,
|
|
gconstpointer unused)
|
|
{
|
|
const gchar *item_path = "/org/freedesktop/secrets/collection/collection/item_one";
|
|
GAsyncResult *result = NULL;
|
|
GError *error = NULL;
|
|
GSecretItem *item;
|
|
gboolean ret;
|
|
|
|
item = gsecret_item_new_sync (test->service, item_path, NULL, &error);
|
|
g_assert_no_error (error);
|
|
|
|
gsecret_item_delete (item, NULL, on_async_result, &result);
|
|
g_assert (result == NULL);
|
|
|
|
egg_test_wait ();
|
|
|
|
ret = gsecret_item_delete_finish (item, result, &error);
|
|
g_assert_no_error (error);
|
|
g_assert (ret == TRUE);
|
|
|
|
g_object_unref (item);
|
|
|
|
item = gsecret_item_new_sync (test->service, item_path, NULL, &error);
|
|
g_assert_error (error, G_DBUS_ERROR, G_DBUS_ERROR_UNKNOWN_METHOD);
|
|
g_assert (item == NULL);
|
|
}
|
|
#endif
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
g_test_init (&argc, &argv, NULL);
|
|
g_set_prgname ("test-collection");
|
|
g_type_init ();
|
|
|
|
g_test_add ("/collection/new-sync", Test, "mock-service-normal.py", setup, test_new_sync, teardown);
|
|
g_test_add ("/collection/new-async", Test, "mock-service-normal.py", setup, test_new_async, teardown);
|
|
g_test_add ("/collection/properties", Test, "mock-service-normal.py", setup, test_properties, teardown);
|
|
g_test_add ("/collection/set-label-sync", Test, "mock-service-normal.py", setup, test_set_label_sync, teardown);
|
|
g_test_add ("/collection/set-label-async", Test, "mock-service-normal.py", setup, test_set_label_async, teardown);
|
|
g_test_add ("/collection/set-label-prop", Test, "mock-service-normal.py", setup, test_set_label_prop, teardown);
|
|
#if 0
|
|
g_test_add ("/item/delete-sync", Test, "mock-service-normal.py", setup, test_delete_sync, teardown);
|
|
g_test_add ("/item/delete-async", Test, "mock-service-normal.py", setup, test_delete_async, teardown);
|
|
#endif
|
|
|
|
return egg_tests_run_with_loop ();
|
|
}
|