[libgnome-keyring] Add testing tool for locking all keyrings
- From: Stefan Walter <stefw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgnome-keyring] Add testing tool for locking all keyrings
- Date: Tue, 30 Apr 2013 16:16:37 +0000 (UTC)
commit 675668c8fb1ff9eaad7af3ca60438828cbb6d974
Author: Stef Walter <stefw gnome org>
Date: Sat Apr 27 21:54:34 2013 +0200
Add testing tool for locking all keyrings
.gitignore | 1 +
library/gnome-keyring.c | 2 +
library/tests/Makefile.am | 3 +-
library/tests/frob-lock-all.c | 53 +++++++++++++++++++++++++++++++++++++++++
4 files changed, 58 insertions(+), 1 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 176330b..0e16e18 100644
--- a/.gitignore
+++ b/.gitignore
@@ -138,6 +138,7 @@ run-auto-test.h
/library/tests/test-memory
/library/tests/test-other
/library/tests/frob-list-modified
+/library/tests/frob-lock-all
# /po
/po/*.gmo
diff --git a/library/gnome-keyring.c b/library/gnome-keyring.c
index 94ce5bb..3dd2ec8 100644
--- a/library/gnome-keyring.c
+++ b/library/gnome-keyring.c
@@ -876,6 +876,8 @@ lock_all_start (GnomeKeyringOperationDoneCallback callback,
g_return_val_if_fail (callback, NULL);
+ gkr_debug ("Calling o.f.S.Service.LockService");
+
req = dbus_message_new_method_call (gkr_service_name, SERVICE_PATH,
SERVICE_INTERFACE, "LockService");
diff --git a/library/tests/Makefile.am b/library/tests/Makefile.am
index 14ed08f..3b299c3 100644
--- a/library/tests/Makefile.am
+++ b/library/tests/Makefile.am
@@ -39,7 +39,8 @@ noinst_PROGRAMS = \
frob-any-daemon \
frob-unlock-keyring \
frob-list-modified \
- frob-default-keyring
+ frob-default-keyring \
+ frob-lock-all
EXTRA_DIST = \
test-gi.py \
diff --git a/library/tests/frob-lock-all.c b/library/tests/frob-lock-all.c
new file mode 100644
index 0000000..5942ecb
--- /dev/null
+++ b/library/tests/frob-lock-all.c
@@ -0,0 +1,53 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+/*
+
+ Copyright (C) 2011 Collabora Ltd.
+
+ The Gnome Keyring Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
+
+ The Gnome Keyring 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
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with the Gnome Library; see the file COPYING.LIB. If not,
+ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+ Author: Stef Walter <stefw collabora co uk>
+*/
+
+#include "config.h"
+
+#include "gnome-keyring.h"
+#include <glib.h>
+
+int
+main (int argc, char **argv)
+{
+ GnomeKeyringResult res;
+
+ g_test_init (&argc, &argv, NULL);
+ g_set_prgname ("frob-lock-all");
+
+ if (argc != 1) {
+ g_printerr ("no arguments should be specified\n");
+ return 2;
+ }
+
+ res = gnome_keyring_lock_all_sync ();
+ if (res == GNOME_KEYRING_RESULT_OK) {
+ g_printerr ("ok\n");
+ return 0;
+ } else if (res == GNOME_KEYRING_RESULT_CANCELLED) {
+ g_printerr ("cancel\n");
+ return 0;
+ } else {
+ g_printerr ("failed: %s\n", gnome_keyring_result_to_message (res));
+ return 1;
+ }
+}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]