Imported Upstream version 1.8.0
[platform/upstream/gpgme.git] / tests / gpg / t-decrypt-verify.c
1 /* t-decrypt-verify.c - Regression test.
2  * Copyright (C) 2000 Werner Koch (dd9jn)
3  * Copyright (C) 2001, 2002, 2003, 2004 g10 Code GmbH
4  *
5  * This file is part of GPGME.
6  *
7  * GPGME is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU Lesser General Public License as
9  * published by the Free Software Foundation; either version 2.1 of
10  * the License, or (at your option) any later version.
11  *
12  * GPGME is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this program; if not, see <https://www.gnu.org/licenses/>.
19  */
20
21 /* We need to include config.h so that we know whether we are building
22    with large file system (LFS) support. */
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <errno.h>
31 #include <unistd.h>
32
33 #include <gpgme.h>
34
35 #include "t-support.h"
36
37 \f
38 static void
39 check_verify_result (gpgme_verify_result_t result, unsigned int summary,
40                      const char *fpr, gpgme_error_t status)
41 {
42   gpgme_signature_t sig;
43
44   sig = result->signatures;
45   if (!sig || sig->next)
46     {
47       fprintf (stderr, "%s:%i: Unexpected number of signatures\n",
48                __FILE__, __LINE__);
49       exit (1);
50     }
51   if (sig->summary != summary)
52     {
53       fprintf (stderr, "%s:%i: Unexpected signature summary: 0x%x\n",
54                __FILE__, __LINE__, sig->summary);
55       exit (1);
56     }
57   if (strcmp (sig->fpr, fpr))
58     {
59       fprintf (stderr, "%s:%i: Unexpected fingerprint: %s\n",
60                __FILE__, __LINE__, sig->fpr);
61       exit (1);
62     }
63   if (gpgme_err_code (sig->status) != status)
64     {
65       fprintf (stderr, "%s:%i: Unexpected signature status: %s\n",
66                __FILE__, __LINE__, gpgme_strerror (sig->status));
67       exit (1);
68     }
69   if (sig->notations)
70     {
71       fprintf (stderr, "%s:%i: Unexpected notation data\n",
72                __FILE__, __LINE__);
73       exit (1);
74     }
75   if (sig->wrong_key_usage)
76     {
77       fprintf (stderr, "%s:%i: Unexpectedly wrong key usage\n",
78                __FILE__, __LINE__);
79       exit (1);
80     }
81   if (sig->validity != GPGME_VALIDITY_UNKNOWN)
82     {
83       fprintf (stderr, "%s:%i: Unexpected validity: %i\n",
84                __FILE__, __LINE__, sig->validity);
85       exit (1);
86     }
87   if (gpgme_err_code (sig->validity_reason) != GPG_ERR_NO_ERROR)
88     {
89       fprintf (stderr, "%s:%i: Unexpected validity reason: %s\n",
90                __FILE__, __LINE__, gpgme_strerror (sig->validity_reason));
91       exit (1);
92     }
93 }
94
95
96 int
97 main (int argc, char *argv[])
98 {
99   gpgme_ctx_t ctx;
100   gpgme_error_t err;
101   gpgme_data_t in, out;
102   gpgme_decrypt_result_t decrypt_result;
103   gpgme_verify_result_t verify_result;
104   char *cipher_2_asc = make_filename ("cipher-2.asc");
105   char *agent_info;
106
107   (void)argc;
108   (void)argv;
109
110   init_gpgme (GPGME_PROTOCOL_OpenPGP);
111
112   err = gpgme_new (&ctx);
113   fail_if_err (err);
114
115   agent_info = getenv("GPG_AGENT_INFO");
116   if (!(agent_info && strchr (agent_info, ':')))
117     gpgme_set_passphrase_cb (ctx, passphrase_cb, NULL);
118
119   err = gpgme_data_new_from_file (&in, cipher_2_asc, 1);
120   free (cipher_2_asc);
121   fail_if_err (err);
122   err = gpgme_data_new (&out);
123   fail_if_err (err);
124
125   err = gpgme_op_decrypt_verify (ctx, in, out);
126   fail_if_err (err);
127   decrypt_result = gpgme_op_decrypt_result (ctx);
128   if (decrypt_result->unsupported_algorithm)
129     {
130       fprintf (stderr, "%s:%i: unsupported algorithm: %s\n",
131                __FILE__, __LINE__, decrypt_result->unsupported_algorithm);
132       exit (1);
133     }
134   print_data (out);
135   verify_result = gpgme_op_verify_result (ctx);
136   check_verify_result (verify_result, 0,
137                        "A0FF4590BB6122EDEF6E3C542D727CC768697734",
138                        GPG_ERR_NO_ERROR);
139
140   gpgme_data_release (in);
141   gpgme_data_release (out);
142   gpgme_release (ctx);
143   return 0;
144 }