summaryrefslogtreecommitdiff
path: root/src/bank-lib/testing_api_cmd_reject.c
blob: 2eb6d4f9b3d7749189b962567c5f1ffef6118b9e (plain)
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*
  This file is part of TALER
  Copyright (C) 2018 Taler Systems SA

  TALER is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as
  published by the Free Software Foundation; either version 3, or
  (at your option) any later version.

  TALER 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 General Public License for more details.

  You should have received a copy of the GNU General Public
  License along with TALER; see the file COPYING.  If not, see
  <http://www.gnu.org/licenses/>
*/

/**
 * @file bank-lib/testing_api_cmd_reject.c
 * @brief command to check the /reject API from the bank.
 * @author Marcello Stanisci
 */

#include "platform.h"
#include "taler_json_lib.h"
#include <gnunet/gnunet_curl_lib.h>
#include "taler_exchange_service.h"
#include "taler_testing_lib.h"
#include "taler_fakebank_lib.h"
#include "taler_bank_service.h"
#include "taler_fakebank_lib.h"

struct RejectState
{
  struct TALER_BANK_RejectHandle *rh;

  const char *deposit_reference;

  const char *bank_url;
};

/**
 * Callbacks of this type are used to serve the result
 * of asking the bank to reject an incoming wire transfer.
 *
 * @param cls closure
 * @param http_status HTTP response code, #MHD_HTTP_NO_CONTENT
 *        (204) for successful status request; #MHD_HTTP_NOT_FOUND
 *        if the rowid is unknown; 0 if the bank's reply is bogus
 *        (fails to follow the protocol),
 * @param ec detailed error code
 */
static void
reject_cb (void *cls,
           unsigned int http_status,
           enum TALER_ErrorCode ec)
{
  struct TALER_TESTING_Interpreter *is = cls;
  struct RejectState *rs = is->commands[is->ip].cls;

  rs->rh = NULL;
  if (MHD_HTTP_NO_CONTENT != http_status)
  {
    GNUNET_break (0);
    fprintf (stderr,
             "Unexpected response code %u:\n",
             http_status);
    TALER_TESTING_interpreter_fail (is);
    return;
  }
  TALER_TESTING_interpreter_next (is);
}

/**
 * Cleanup the state.
 *
 * @param cls closure, typically a #struct WireState.
 * @param cmd the command which is being cleaned up.
 */
void
reject_cleanup
  (void *cls,
   const struct TALER_TESTING_Command *cmd)
{
  struct RejectState *rs = cls;

  if (NULL != rs->rh)
  {
    TALER_LOG_WARNING ("/reject did not complete\n");
    TALER_BANK_reject_cancel (rs->rh);
  }

  GNUNET_free (rs);
}

/**
 * Run the command.
 *
 * @param cls closure, typically a #struct WireState.
 * @param cmd the command to execute, a /wire one.
 * @param is the interpreter state.
 */
void
reject_run (void *cls,
             const struct TALER_TESTING_Command *cmd,
             struct TALER_TESTING_Interpreter *is)
{
  struct RejectState *rs = cls;
  const struct TALER_TESTING_Command *deposit_cmd;
  const uint64_t *credit_account;
  const uint64_t *row_id;
  extern struct TALER_BANK_AuthenticationData AUTHS[];

  deposit_cmd = TALER_TESTING_interpreter_lookup_command
    (is, rs->deposit_reference);

  if (NULL == deposit_cmd)
    TALER_TESTING_FAIL (is);

  GNUNET_assert
    (GNUNET_OK == TALER_TESTING_GET_TRAIT_CREDIT_ACCOUNT
      (deposit_cmd, &credit_account));

  GNUNET_assert
    (GNUNET_OK == TALER_TESTING_GET_TRAIT_ROW_ID
      (deposit_cmd, &row_id));
  TALER_LOG_INFO ("Account %llu rejects deposit\n",
                  (unsigned long long) *credit_account);
  rs->rh = TALER_BANK_reject (is->ctx,
                              rs->bank_url,
                              &AUTHS[*credit_account -1],
                              *credit_account,
                              *row_id,
                              &reject_cb,
                              is);
  GNUNET_assert (NULL != rs->rh);
}


/**
 * @param cls closure
 * @param ret[out] result (could be anything)
 * @param trait name of the trait
 * @param selector more detailed information about which object
 *                 to return in case there were multiple generated
 *                 by the command
 * @return #GNUNET_OK on success
 */
static int
reject_traits (void *cls,
               void **ret,
               const char *trait,
               unsigned int index)
{
  struct RejectState *rs = cls;
  struct TALER_TESTING_Trait traits[] = {
    TALER_TESTING_make_trait_rejected (0, rs->deposit_reference),
    TALER_TESTING_trait_end ()
  };

  return TALER_TESTING_get_trait (traits,
                                  ret,
                                  trait,
                                  index);
}

/**
 * FIXME.
 */
struct TALER_TESTING_Command
TALER_TESTING_cmd_bank_reject (const char *label,
                               const char *bank_url,
                               const char *deposit_reference)
{
  struct RejectState *rs;
  struct TALER_TESTING_Command cmd;

  rs = GNUNET_new (struct RejectState);
  rs->bank_url = bank_url;
  rs->deposit_reference = deposit_reference;

  cmd.cls = rs;
  cmd.run = &reject_run;
  cmd.cleanup = &reject_cleanup;
  cmd.label = label;
  cmd.traits = &reject_traits;

  return cmd;

}

/* end of testing_api_cmd_reject.c */