diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-02-02 15:07:24 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-02-02 15:07:24 +0100 |
commit | 068433c5e7c99866a58d6be146fe25b36bb4d5b8 (patch) | |
tree | ff7b102d567a96c0bd83b38b6e5e22b5d8d67168 /src/lib/merchant_api_patch_instance.c | |
parent | 96726fd5ab6dc067af4957c3d1826f9fd2745c95 (diff) |
add rudimentary test logic for #6731
Diffstat (limited to 'src/lib/merchant_api_patch_instance.c')
-rw-r--r-- | src/lib/merchant_api_patch_instance.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/lib/merchant_api_patch_instance.c b/src/lib/merchant_api_patch_instance.c index 721f8dd1..536fbdcf 100644 --- a/src/lib/merchant_api_patch_instance.c +++ b/src/lib/merchant_api_patch_instance.c @@ -110,6 +110,11 @@ handle_patch_instance_finished (void *cls, * or the merchant is buggy (or API version conflict); * just pass JSON reply to the application */ break; + case MHD_HTTP_UNAUTHORIZED: + hr.ec = TALER_JSON_get_error_code (json); + hr.hint = TALER_JSON_get_error_hint (json); + /* Nothing really to verify, merchant says we need to authenticate. */ + break; case MHD_HTTP_FORBIDDEN: hr.ec = TALER_JSON_get_error_code (json); hr.hint = TALER_JSON_get_error_hint (json); @@ -172,6 +177,19 @@ TALER_MERCHANT_instance_patch ( json_t *jpayto_uris; json_t *req_obj; + if (NULL != auth_token) + { + if (0 != strncasecmp (RFC_8959_PREFIX, + auth_token, + strlen (RFC_8959_PREFIX))) + { + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Authentication token must start with `%s'\n", + RFC_8959_PREFIX); + return NULL; + } + auth_token += strlen (RFC_8959_PREFIX); + } jpayto_uris = json_array (); if (NULL == jpayto_uris) { |