LCOV - code coverage report
Current view: top level - testing - testing_api_cmd_auditor_add_denom_sig.c (source / functions) Hit Total Coverage
Test: GNU Taler exchange coverage report Lines: 0 53 0.0 %
Date: 2022-08-25 06:15:09 Functions: 0 4 0.0 %
Legend: Lines: hit not hit

          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_auditor_add_denom_sig.c
      21             :  * @brief command for testing POST to /auditor/$AUDITOR_PUB/$H_DENOM_PUB
      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 "auditor_add" CMD.
      34             :  */
      35             : struct AuditorAddDenomSigState
      36             : {
      37             : 
      38             :   /**
      39             :    * Auditor enable handle while operation is running.
      40             :    */
      41             :   struct TALER_EXCHANGE_AuditorAddDenominationHandle *dh;
      42             : 
      43             :   /**
      44             :    * Our interpreter.
      45             :    */
      46             :   struct TALER_TESTING_Interpreter *is;
      47             : 
      48             :   /**
      49             :    * Reference to command identifying denomination to add.
      50             :    */
      51             :   const char *denom_ref;
      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/auditor 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 : denom_sig_add_cb (void *cls,
      74             :                   const struct TALER_EXCHANGE_HttpResponse *hr)
      75             : {
      76           0 :   struct AuditorAddDenomSigState *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 : auditor_add_run (void *cls,
     106             :                  const struct TALER_TESTING_Command *cmd,
     107             :                  struct TALER_TESTING_Interpreter *is)
     108             : {
     109           0 :   struct AuditorAddDenomSigState *ds = cls;
     110             :   struct TALER_AuditorSignatureP auditor_sig;
     111             :   struct TALER_DenominationHashP h_denom_pub;
     112             :   const struct TALER_EXCHANGE_DenomPublicKey *dk;
     113             : 
     114             :   (void) cmd;
     115             :   /* Get denom pub from trait */
     116             :   {
     117             :     const struct TALER_TESTING_Command *denom_cmd;
     118             : 
     119           0 :     denom_cmd = TALER_TESTING_interpreter_lookup_command (is,
     120             :                                                           ds->denom_ref);
     121             : 
     122           0 :     if (NULL == denom_cmd)
     123             :     {
     124           0 :       GNUNET_break (0);
     125           0 :       TALER_TESTING_interpreter_fail (is);
     126           0 :       return;
     127             :     }
     128           0 :     GNUNET_assert (GNUNET_OK ==
     129             :                    TALER_TESTING_get_trait_denom_pub (denom_cmd,
     130             :                                                       0,
     131             :                                                       &dk));
     132             :   }
     133           0 :   ds->is = is;
     134           0 :   if (ds->bad_sig)
     135             :   {
     136           0 :     memset (&auditor_sig,
     137             :             42,
     138             :             sizeof (auditor_sig));
     139             :   }
     140             :   else
     141             :   {
     142             :     struct TALER_MasterPublicKeyP master_pub;
     143             : 
     144           0 :     GNUNET_CRYPTO_eddsa_key_get_public (&is->master_priv.eddsa_priv,
     145             :                                         &master_pub.eddsa_pub);
     146           0 :     TALER_auditor_denom_validity_sign (
     147           0 :       is->auditor_url,
     148           0 :       &dk->h_key,
     149             :       &master_pub,
     150           0 :       dk->valid_from,
     151           0 :       dk->withdraw_valid_until,
     152           0 :       dk->expire_deposit,
     153           0 :       dk->expire_legal,
     154           0 :       &dk->value,
     155           0 :       &dk->fees,
     156           0 :       &is->auditor_priv,
     157             :       &auditor_sig);
     158             :   }
     159           0 :   ds->dh = TALER_EXCHANGE_add_auditor_denomination (
     160             :     is->ctx,
     161           0 :     is->exchange_url,
     162             :     &h_denom_pub,
     163           0 :     &is->auditor_pub,
     164             :     &auditor_sig,
     165             :     &denom_sig_add_cb,
     166             :     ds);
     167           0 :   if (NULL == ds->dh)
     168             :   {
     169           0 :     GNUNET_break (0);
     170           0 :     TALER_TESTING_interpreter_fail (is);
     171           0 :     return;
     172             :   }
     173             : }
     174             : 
     175             : 
     176             : /**
     177             :  * Free the state of a "auditor_add" CMD, and possibly cancel a
     178             :  * pending operation thereof.
     179             :  *
     180             :  * @param cls closure, must be a `struct AuditorAddDenomSigState`.
     181             :  * @param cmd the command which is being cleaned up.
     182             :  */
     183             : static void
     184           0 : auditor_add_cleanup (void *cls,
     185             :                      const struct TALER_TESTING_Command *cmd)
     186             : {
     187           0 :   struct AuditorAddDenomSigState *ds = cls;
     188             : 
     189           0 :   if (NULL != ds->dh)
     190             :   {
     191           0 :     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
     192             :                 "Command %u (%s) did not complete\n",
     193             :                 ds->is->ip,
     194             :                 cmd->label);
     195           0 :     TALER_EXCHANGE_add_auditor_denomination_cancel (ds->dh);
     196           0 :     ds->dh = NULL;
     197             :   }
     198           0 :   GNUNET_free (ds);
     199           0 : }
     200             : 
     201             : 
     202             : struct TALER_TESTING_Command
     203           0 : TALER_TESTING_cmd_auditor_add_denom_sig (const char *label,
     204             :                                          unsigned int expected_http_status,
     205             :                                          const char *denom_ref,
     206             :                                          bool bad_sig)
     207             : {
     208             :   struct AuditorAddDenomSigState *ds;
     209             : 
     210           0 :   ds = GNUNET_new (struct AuditorAddDenomSigState);
     211           0 :   ds->expected_response_code = expected_http_status;
     212           0 :   ds->bad_sig = bad_sig;
     213           0 :   ds->denom_ref = denom_ref;
     214             :   {
     215           0 :     struct TALER_TESTING_Command cmd = {
     216             :       .cls = ds,
     217             :       .label = label,
     218             :       .run = &auditor_add_run,
     219             :       .cleanup = &auditor_add_cleanup
     220             :     };
     221             : 
     222           0 :     return cmd;
     223             :   }
     224             : }
     225             : 
     226             : 
     227             : /* end of testing_api_cmd_auditor_add_denom_sig.c */

Generated by: LCOV version 1.14