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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* test-secret-search.c: Test secret search
Copyright (C) 2013 Red Hat Inc
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,
<http://www.gnu.org/licenses/>.
Author: Stef Walter <stefw@gnome.org>
*/
#include "config.h"
#include "test-service.h"
#include "gkd-secret-types.h"
#include "egg/egg-testing.h"
#include <gcr/gcr-base.h>
#include <glib.h>
#include <glib/gstdio.h>
#include <gio/gio.h>
#include <fcntl.h>
typedef struct {
TestService service;
} Test;
static void
setup (Test *test,
gconstpointer unused)
{
test_service_setup (&test->service);
}
static void
teardown (Test *test,
gconstpointer unused)
{
test_service_teardown (&test->service);
}
static void
test_service_search_items_unlocked_separate (Test *test,
gconstpointer unused)
{
GVariantBuilder builder;
GError *error = NULL;
GVariant *retval;
GVariant *attrs;
GVariant *unlocked;
GVariant *locked;
g_variant_builder_init (&builder, G_VARIANT_TYPE ("a{ss}"));
attrs = g_variant_builder_end (&builder);
retval = g_dbus_connection_call_sync (test->service.connection,
test->service.bus_name,
"/org/freedesktop/secrets",
SECRET_SERVICE_INTERFACE,
"SearchItems",
g_variant_new ("(@a{ss})", attrs),
G_VARIANT_TYPE ("(aoao)"),
G_DBUS_CALL_FLAGS_NO_AUTO_START,
-1, NULL, &error);
g_assert_no_error (error);
g_variant_get (retval, "(@ao@ao)", &unlocked, &locked);
g_variant_unref (retval);
g_assert_cmpuint (g_variant_n_children (unlocked), ==, 0);
g_assert_cmpuint (g_variant_n_children (locked), ==, 1);
g_variant_unref (unlocked);
g_variant_unref (locked);
}
static void
test_collection_search_items_combined (Test *test,
gconstpointer unused)
{
GVariantBuilder builder;
GError *error = NULL;
GVariant *retval;
GVariant *attrs;
GVariant *items;
g_variant_builder_init (&builder, G_VARIANT_TYPE ("a{ss}"));
attrs = g_variant_builder_end (&builder);
retval = g_dbus_connection_call_sync (test->service.connection,
test->service.bus_name,
"/org/freedesktop/secrets/collection/test",
SECRET_COLLECTION_INTERFACE,
"SearchItems",
g_variant_new ("(@a{ss})", attrs),
G_VARIANT_TYPE ("(ao)"),
G_DBUS_CALL_FLAGS_NO_AUTO_START,
-1, NULL, &error);
g_assert_no_error (error);
g_variant_get (retval, "(@ao)", &items);
g_variant_unref (retval);
g_assert_cmpuint (g_variant_n_children (items), ==, 1);
g_variant_unref (items);
}
int
main (int argc, char **argv)
{
#if !GLIB_CHECK_VERSION(2,35,0)
g_type_init ();
#endif
g_test_init (&argc, &argv, NULL);
g_test_add ("/secret-search/service-search-items-unlocked-separate", Test, NULL,
setup, test_service_search_items_unlocked_separate, teardown);
g_test_add ("/secret-search/collection-search-items-combined", Test, NULL,
setup, test_collection_search_items_combined, teardown);
return egg_tests_run_with_loop ();
}
|