LCOV - code coverage report
Current view: top level - testing - testing_api_cmd_get_otp_devices.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 0 58 0.0 %
Date: 2025-06-23 16:22:09 Functions: 0 4 0.0 %

          Line data    Source code
       1             : /*
       2             :   This file is part of TALER
       3             :   Copyright (C) 2022 Taler Systems SA
       4             : 
       5             :   TALER is free software; you can redistribute it and/or modify
       6             :   it under the terms of the GNU General Public License as
       7             :   published by the Free Software Foundation; either version 3, or
       8             :   (at your 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
      13             :   GNU 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_api_cmd_get_otp_devices.c
      21             :  * @brief command to test GET /otp-devices
      22             :  * @author Christian Grothoff
      23             :  */
      24             : #include "platform.h"
      25             : #include <taler/taler_exchange_service.h>
      26             : #include <taler/taler_testing_lib.h>
      27             : #include "taler_merchant_service.h"
      28             : #include "taler_merchant_testing_lib.h"
      29             : 
      30             : 
      31             : /**
      32             :  * State of a "GET /otp-devices" CMD.
      33             :  */
      34             : struct GetOtpDevicesState
      35             : {
      36             : 
      37             :   /**
      38             :    * Handle for a "GET /otp-devices" request.
      39             :    */
      40             :   struct TALER_MERCHANT_OtpDevicesGetHandle *igh;
      41             : 
      42             :   /**
      43             :    * The interpreter state.
      44             :    */
      45             :   struct TALER_TESTING_Interpreter *is;
      46             : 
      47             :   /**
      48             :    * Base URL of the merchant serving the request.
      49             :    */
      50             :   const char *merchant_url;
      51             : 
      52             :   /**
      53             :    * Expected HTTP response code.
      54             :    */
      55             :   unsigned int http_status;
      56             : 
      57             :   /**
      58             :    * The list of otp_device references.
      59             :    */
      60             :   const char **otp_devices;
      61             : 
      62             :   /**
      63             :    * Length of @e otp_devices.
      64             :    */
      65             :   unsigned int otp_devices_length;
      66             : 
      67             : };
      68             : 
      69             : 
      70             : /**
      71             :  * Callback for a GET /otp-devices operation.
      72             :  *
      73             :  * @param cls closure for this function
      74             :  * @param tgr response details
      75             :  */
      76             : static void
      77           0 : get_otp_devices_cb (void *cls,
      78             :                   const struct TALER_MERCHANT_OtpDevicesGetResponse *tgr)
      79             : {
      80           0 :   struct GetOtpDevicesState *gis = cls;
      81             : 
      82           0 :   gis->igh = NULL;
      83           0 :   if (gis->http_status != tgr->hr.http_status)
      84             :   {
      85           0 :     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
      86             :                 "Unexpected response code %u (%d) to command %s\n",
      87             :                 tgr->hr.http_status,
      88             :                 (int) tgr->hr.ec,
      89             :                 TALER_TESTING_interpreter_get_current_label (gis->is));
      90           0 :     TALER_TESTING_interpreter_fail (gis->is);
      91           0 :     return;
      92             :   }
      93           0 :   switch (tgr->hr.http_status)
      94             :   {
      95           0 :   case MHD_HTTP_OK:
      96           0 :     if (tgr->details.ok.otp_devices_length != gis->otp_devices_length)
      97             :     {
      98           0 :       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
      99             :                   "Length of otp_devices found does not match\n");
     100           0 :       TALER_TESTING_interpreter_fail (gis->is);
     101           0 :       return;
     102             :     }
     103           0 :     for (unsigned int i = 0; i < gis->otp_devices_length; ++i)
     104             :     {
     105             :       const struct TALER_TESTING_Command *otp_device_cmd;
     106             : 
     107           0 :       otp_device_cmd = TALER_TESTING_interpreter_lookup_command (
     108             :         gis->is,
     109           0 :         gis->otp_devices[i]);
     110             : 
     111             :       {
     112             :         const char *otp_device_id;
     113             : 
     114           0 :         if (GNUNET_OK !=
     115           0 :             TALER_TESTING_get_trait_otp_id (otp_device_cmd,
     116             :                                             &otp_device_id))
     117             :         {
     118           0 :           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
     119             :                       "Could not fetch otp_device id\n");
     120           0 :           TALER_TESTING_interpreter_fail (gis->is);
     121           0 :           return;
     122             :         }
     123           0 :         if (0 != strcmp (tgr->details.ok.otp_devices[i].otp_device_id,
     124             :                          otp_device_id))
     125             :         {
     126           0 :           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
     127             :                       "OtpDevice id does not match\n");
     128           0 :           TALER_TESTING_interpreter_fail (gis->is);
     129           0 :           return;
     130             :         }
     131             :       }
     132             :     }
     133           0 :     break;
     134           0 :   case MHD_HTTP_UNAUTHORIZED:
     135           0 :     break;
     136           0 :   case MHD_HTTP_NOT_FOUND:
     137             :     /* instance does not exist */
     138           0 :     break;
     139           0 :   default:
     140           0 :     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
     141             :                 "Unhandled HTTP status %u (%d).\n",
     142             :                 tgr->hr.http_status,
     143             :                 tgr->hr.ec);
     144           0 :     break;
     145             :   }
     146           0 :   TALER_TESTING_interpreter_next (gis->is);
     147             : }
     148             : 
     149             : 
     150             : /**
     151             :  * Run the "GET /otp-devices" CMD.
     152             :  *
     153             :  *
     154             :  * @param cls closure.
     155             :  * @param cmd command being run now.
     156             :  * @param is interpreter state.
     157             :  */
     158             : static void
     159           0 : get_otp_devices_run (void *cls,
     160             :                      const struct TALER_TESTING_Command *cmd,
     161             :                      struct TALER_TESTING_Interpreter *is)
     162             : {
     163           0 :   struct GetOtpDevicesState *gis = cls;
     164             : 
     165           0 :   gis->is = is;
     166           0 :   gis->igh = TALER_MERCHANT_otp_devices_get (
     167             :     TALER_TESTING_interpreter_get_context (is),
     168             :     gis->merchant_url,
     169             :     &get_otp_devices_cb,
     170             :     gis);
     171           0 :   GNUNET_assert (NULL != gis->igh);
     172           0 : }
     173             : 
     174             : 
     175             : /**
     176             :  * Free the state of a "GET otp_device" CMD, and possibly
     177             :  * cancel a pending operation thereof.
     178             :  *
     179             :  * @param cls closure.
     180             :  * @param cmd command being run.
     181             :  */
     182             : static void
     183           0 : get_otp_devices_cleanup (void *cls,
     184             :                          const struct TALER_TESTING_Command *cmd)
     185             : {
     186           0 :   struct GetOtpDevicesState *gis = cls;
     187             : 
     188           0 :   if (NULL != gis->igh)
     189             :   {
     190           0 :     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
     191             :                 "GET /otp-devices operation did not complete\n");
     192           0 :     TALER_MERCHANT_otp_devices_get_cancel (gis->igh);
     193             :   }
     194           0 :   GNUNET_array_grow (gis->otp_devices,
     195             :                      gis->otp_devices_length,
     196             :                      0);
     197           0 :   GNUNET_free (gis);
     198           0 : }
     199             : 
     200             : 
     201             : struct TALER_TESTING_Command
     202           0 : TALER_TESTING_cmd_merchant_get_otp_devices (const char *label,
     203             :                                             const char *merchant_url,
     204             :                                             unsigned int http_status,
     205             :                                             ...)
     206             : {
     207             :   struct GetOtpDevicesState *gis;
     208             : 
     209           0 :   gis = GNUNET_new (struct GetOtpDevicesState);
     210           0 :   gis->merchant_url = merchant_url;
     211           0 :   gis->http_status = http_status;
     212             :   {
     213             :     const char *clabel;
     214             :     va_list ap;
     215             : 
     216           0 :     va_start (ap, http_status);
     217           0 :     while (NULL != (clabel = va_arg (ap, const char *)))
     218             :     {
     219           0 :       GNUNET_array_append (gis->otp_devices,
     220             :                            gis->otp_devices_length,
     221             :                            clabel);
     222             :     }
     223           0 :     va_end (ap);
     224             :   }
     225             :   {
     226           0 :     struct TALER_TESTING_Command cmd = {
     227             :       .cls = gis,
     228             :       .label = label,
     229             :       .run = &get_otp_devices_run,
     230             :       .cleanup = &get_otp_devices_cleanup
     231             :     };
     232             : 
     233           0 :     return cmd;
     234             :   }
     235             : }
     236             : 
     237             : 
     238             : /* end of testing_api_cmd_get_otp_devices.c */

Generated by: LCOV version 1.16