tests: Support offline mode in run-import

* tests/run-import.c (show_usage): New option --offline.
(main): Parse new option. Set offline mode accordingly.
--

This allows testing gpgme_op_import with (and without) offline mode.

GnuPG-bug-id: 6648
This commit is contained in:
Ingo Klöcker 2023-08-14 11:39:27 +02:00
parent bc98f01c85
commit 150a2f9e4e
No known key found for this signature in database
GPG Key ID: F5A5D1692277A1E9

View File

@ -46,6 +46,7 @@ show_usage (int ex)
" --verbose run in verbose mode\n" " --verbose run in verbose mode\n"
" --openpgp use the OpenPGP protocol (default)\n" " --openpgp use the OpenPGP protocol (default)\n"
" --cms use the CMS protocol\n" " --cms use the CMS protocol\n"
" --offline use offline mode\n"
" --key-origin use the specified key origin\n" " --key-origin use the specified key origin\n"
" --url import from given URLs\n" " --url import from given URLs\n"
" -0 URLs are delimited by a nul\n" " -0 URLs are delimited by a nul\n"
@ -66,6 +67,7 @@ main (int argc, char **argv)
gpgme_protocol_t protocol = GPGME_PROTOCOL_OpenPGP; gpgme_protocol_t protocol = GPGME_PROTOCOL_OpenPGP;
char *import_filter = NULL; char *import_filter = NULL;
char *key_origin = NULL; char *key_origin = NULL;
int offline = 0;
if (argc) if (argc)
{ argc--; argv++; } { argc--; argv++; }
@ -120,6 +122,11 @@ main (int argc, char **argv)
key_origin = strdup (*argv); key_origin = strdup (*argv);
argc--; argv++; argc--; argv++;
} }
else if (!strcmp (*argv, "--offline"))
{
offline = 1;
argc--; argv++;
}
else if (!strncmp (*argv, "--", 2)) else if (!strncmp (*argv, "--", 2))
show_usage (1); show_usage (1);
@ -134,6 +141,8 @@ main (int argc, char **argv)
fail_if_err (err); fail_if_err (err);
gpgme_set_protocol (ctx, protocol); gpgme_set_protocol (ctx, protocol);
gpgme_set_offline (ctx, offline);
if (import_filter) if (import_filter)
{ {
err = gpgme_set_ctx_flag (ctx, "import-filter", import_filter); err = gpgme_set_ctx_flag (ctx, "import-filter", import_filter);