Line data Source code
1 : /*
2 : This file is part of TALER
3 : Copyright (C) 2020 Taler Systems SA
4 :
5 : TALER is free software; you can redistribute it and/or modify it
6 : under the terms of the GNU General Public License as published by
7 : the Free Software Foundation; either version 3, or (at your
8 : option) any later version.
9 :
10 : TALER is distributed in the hope that it will be useful, but
11 : WITHOUT ANY WARRANTY; without even the implied warranty of
12 : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 : General Public License for more details.
14 :
15 : You should have received a copy of the GNU General Public
16 : License along with TALER; see the file COPYING. If not, see
17 : <http://www.gnu.org/licenses/>
18 : */
19 : /**
20 : * @file testing/testing_api_cmd_wire_add.c
21 : * @brief command for testing POST to /management/wire
22 : * @author Christian Grothoff
23 : */
24 : #include "platform.h"
25 : #include "taler_json_lib.h"
26 : #include <gnunet/gnunet_curl_lib.h>
27 : #include "taler_testing_lib.h"
28 : #include "taler_signatures.h"
29 : #include "backoff.h"
30 :
31 :
32 : /**
33 : * State for a "wire_add" CMD.
34 : */
35 : struct WireAddState
36 : {
37 :
38 : /**
39 : * Wire enable handle while operation is running.
40 : */
41 : struct TALER_EXCHANGE_ManagementWireEnableHandle *dh;
42 :
43 : /**
44 : * Our interpreter.
45 : */
46 : struct TALER_TESTING_Interpreter *is;
47 :
48 : /**
49 : * Account to add.
50 : */
51 : const char *payto_uri;
52 :
53 : /**
54 : * Expected HTTP response code.
55 : */
56 : unsigned int expected_response_code;
57 :
58 : /**
59 : * Should we make the request with a bad master_sig signature?
60 : */
61 : bool bad_sig;
62 : };
63 :
64 :
65 : /**
66 : * Callback to analyze the /management/wire response, just used to check
67 : * if the response code is acceptable.
68 : *
69 : * @param cls closure.
70 : * @param hr HTTP response details
71 : */
72 : static void
73 0 : wire_add_cb (void *cls,
74 : const struct TALER_EXCHANGE_HttpResponse *hr)
75 : {
76 0 : struct WireAddState *ds = cls;
77 :
78 0 : ds->dh = NULL;
79 0 : if (ds->expected_response_code != hr->http_status)
80 : {
81 0 : GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
82 : "Unexpected response code %u to command %s in %s:%u\n",
83 : hr->http_status,
84 : ds->is->commands[ds->is->ip].label,
85 : __FILE__,
86 : __LINE__);
87 0 : json_dumpf (hr->reply,
88 : stderr,
89 : 0);
90 0 : TALER_TESTING_interpreter_fail (ds->is);
91 0 : return;
92 : }
93 0 : TALER_TESTING_interpreter_next (ds->is);
94 : }
95 :
96 :
97 : /**
98 : * Run the command.
99 : *
100 : * @param cls closure.
101 : * @param cmd the command to execute.
102 : * @param is the interpreter state.
103 : */
104 : static void
105 0 : wire_add_run (void *cls,
106 : const struct TALER_TESTING_Command *cmd,
107 : struct TALER_TESTING_Interpreter *is)
108 : {
109 0 : struct WireAddState *ds = cls;
110 : struct TALER_MasterSignatureP master_sig1;
111 : struct TALER_MasterSignatureP master_sig2;
112 : struct GNUNET_TIME_Timestamp now;
113 :
114 : (void) cmd;
115 0 : now = GNUNET_TIME_timestamp_get ();
116 0 : ds->is = is;
117 0 : if (ds->bad_sig)
118 : {
119 0 : memset (&master_sig1,
120 : 42,
121 : sizeof (master_sig1));
122 0 : memset (&master_sig2,
123 : 42,
124 : sizeof (master_sig2));
125 : }
126 : else
127 : {
128 0 : TALER_exchange_offline_wire_add_sign (ds->payto_uri,
129 : now,
130 0 : &is->master_priv,
131 : &master_sig1);
132 0 : TALER_exchange_wire_signature_make (ds->payto_uri,
133 0 : &is->master_priv,
134 : &master_sig2);
135 : }
136 0 : ds->dh = TALER_EXCHANGE_management_enable_wire (
137 : is->ctx,
138 0 : is->exchange_url,
139 : ds->payto_uri,
140 : now,
141 : &master_sig1,
142 : &master_sig2,
143 : &wire_add_cb,
144 : ds);
145 0 : if (NULL == ds->dh)
146 : {
147 0 : GNUNET_break (0);
148 0 : TALER_TESTING_interpreter_fail (is);
149 0 : return;
150 : }
151 : }
152 :
153 :
154 : /**
155 : * Free the state of a "wire_add" CMD, and possibly cancel a
156 : * pending operation thereof.
157 : *
158 : * @param cls closure, must be a `struct WireAddState`.
159 : * @param cmd the command which is being cleaned up.
160 : */
161 : static void
162 0 : wire_add_cleanup (void *cls,
163 : const struct TALER_TESTING_Command *cmd)
164 : {
165 0 : struct WireAddState *ds = cls;
166 :
167 0 : if (NULL != ds->dh)
168 : {
169 0 : GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
170 : "Command %u (%s) did not complete\n",
171 : ds->is->ip,
172 : cmd->label);
173 0 : TALER_EXCHANGE_management_enable_wire_cancel (ds->dh);
174 0 : ds->dh = NULL;
175 : }
176 0 : GNUNET_free (ds);
177 0 : }
178 :
179 :
180 : struct TALER_TESTING_Command
181 0 : TALER_TESTING_cmd_wire_add (const char *label,
182 : const char *payto_uri,
183 : unsigned int expected_http_status,
184 : bool bad_sig)
185 : {
186 : struct WireAddState *ds;
187 :
188 0 : ds = GNUNET_new (struct WireAddState);
189 0 : ds->expected_response_code = expected_http_status;
190 0 : ds->bad_sig = bad_sig;
191 0 : ds->payto_uri = payto_uri;
192 : {
193 0 : struct TALER_TESTING_Command cmd = {
194 : .cls = ds,
195 : .label = label,
196 : .run = &wire_add_run,
197 : .cleanup = &wire_add_cleanup
198 : };
199 :
200 0 : return cmd;
201 : }
202 : }
203 :
204 :
205 : /* end of testing_api_cmd_wire_add.c */
|