~noskcaj/ubuntu/vivid/gnome-keyring/3.15.90

« back to all changes in this revision

Viewing changes to pkcs11/secret-store/tests/unit-test-secret-compat.c

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach
  • Date: 2012-05-14 22:13:02 UTC
  • mfrom: (1.3.1)
  • mto: (80.2.8 experimental) (1.1.77)
  • mto: This revision was merged to the branch mainline in revision 148.
  • Revision ID: package-import@ubuntu.com-20120514221302-0l3gjmqpe6xopond
ImportĀ upstreamĀ versionĀ 3.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2
 
/* unit-test-secret-compat.c: Test secret compat files
3
 
 
4
 
   Copyright (C) 2008 Stefan Walter
5
 
 
6
 
   The Gnome Keyring Library is free software; you can redistribute it and/or
7
 
   modify it under the terms of the GNU Library General Public License as
8
 
   published by the Free Software Foundation; either version 2 of the
9
 
   License, or (at your option) any later version.
10
 
 
11
 
   The Gnome Keyring Library is distributed in the hope that it will be useful,
12
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
   Library General Public License for more details.
15
 
 
16
 
   You should have received a copy of the GNU Library General Public
17
 
   License along with the Gnome Library; see the file COPYING.LIB.  If not,
18
 
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19
 
   Boston, MA 02111-1307, USA.
20
 
 
21
 
   Author: Stef Walter <stef@memberwebs.com>
22
 
*/
23
 
 
24
 
#include "config.h"
25
 
 
26
 
#include "test-suite.h"
27
 
 
28
 
#include "gkm-secret-compat.h"
29
 
 
30
 
#include <glib.h>
31
 
 
32
 
#include <stdlib.h>
33
 
#include <stdio.h>
34
 
#include <string.h>
35
 
 
36
 
TESTING_TEST(access_free)
37
 
{
38
 
        GkmSecretAccess *ac;
39
 
 
40
 
        ac = g_new0 (GkmSecretAccess, 1);
41
 
        ac->pathname = g_strdup ("/path");
42
 
        ac->display_name = g_strdup ("Display");
43
 
        ac->types_allowed = GKM_SECRET_ACCESS_READ;
44
 
 
45
 
        gkm_secret_compat_access_free (ac);
46
 
}
47
 
 
48
 
TESTING_TEST(acl_free)
49
 
{
50
 
        GkmSecretAccess *ac;
51
 
        GList *acl = NULL;
52
 
        int i;
53
 
 
54
 
        for (i = 0; i < 10; ++i) {
55
 
                ac = g_new0 (GkmSecretAccess, 1);
56
 
                ac->pathname = g_strdup ("/path");
57
 
                ac->display_name = g_strdup ("Display");
58
 
                ac->types_allowed = GKM_SECRET_ACCESS_READ;
59
 
                acl = g_list_prepend (acl, ac);
60
 
        }
61
 
 
62
 
        gkm_secret_compat_acl_free (acl);
63
 
}
64
 
 
65
 
TESTING_TEST(parse_item_type)
66
 
{
67
 
        guint type;
68
 
 
69
 
        type = gkm_secret_compat_parse_item_type ("org.freedesktop.Secret.Generic");
70
 
        g_assert_cmpuint (type, ==, 0);
71
 
        type = gkm_secret_compat_parse_item_type ("org.gnome.keyring.NetworkPassword");
72
 
        g_assert_cmpuint (type, ==, 1);
73
 
        type = gkm_secret_compat_parse_item_type ("org.gnome.keyring.Note");
74
 
        g_assert_cmpuint (type, ==, 2);
75
 
        type = gkm_secret_compat_parse_item_type ("org.gnome.keyring.ChainedKeyring");
76
 
        g_assert_cmpuint (type, ==, 3);
77
 
        type = gkm_secret_compat_parse_item_type ("org.gnome.keyring.EncryptionKey");
78
 
        g_assert_cmpuint (type, ==, 4);
79
 
        type = gkm_secret_compat_parse_item_type ("org.gnome.keyring.PkStorage");
80
 
        g_assert_cmpuint (type, ==, 0x100);
81
 
 
82
 
        /* Invalid returns generic secret */
83
 
        type = gkm_secret_compat_parse_item_type ("invalid");
84
 
        g_assert_cmpuint (type, ==, 0);
85
 
 
86
 
        /* Null returns generic secret */
87
 
        type = gkm_secret_compat_parse_item_type (NULL);
88
 
        g_assert_cmpuint (type, ==, 0);
89
 
}
90
 
 
91
 
TESTING_TEST(format_item_type)
92
 
{
93
 
        const gchar *type;
94
 
 
95
 
        type = gkm_secret_compat_format_item_type (0);
96
 
        g_assert_cmpstr (type, ==, "org.freedesktop.Secret.Generic");
97
 
        type = gkm_secret_compat_format_item_type (1);
98
 
        g_assert_cmpstr (type, ==, "org.gnome.keyring.NetworkPassword");
99
 
        type = gkm_secret_compat_format_item_type (2);
100
 
        g_assert_cmpstr (type, ==, "org.gnome.keyring.Note");
101
 
        type = gkm_secret_compat_format_item_type (3);
102
 
        g_assert_cmpstr (type, ==, "org.gnome.keyring.ChainedKeyring");
103
 
        type = gkm_secret_compat_format_item_type (4);
104
 
        g_assert_cmpstr (type, ==, "org.gnome.keyring.EncryptionKey");
105
 
        type = gkm_secret_compat_format_item_type (0x100);
106
 
        g_assert_cmpstr (type, ==, "org.gnome.keyring.PkStorage");
107
 
 
108
 
        /* Higher bits shouldn't make a difference */
109
 
        type = gkm_secret_compat_format_item_type (0xF0000001);
110
 
        g_assert_cmpstr (type, ==, "org.gnome.keyring.NetworkPassword");
111
 
 
112
 
        /* Unrecognized should be null */
113
 
        type = gkm_secret_compat_format_item_type (32);
114
 
        g_assert (type == NULL);
115
 
}