/* $Id: test-tal.c,v 1.6 2020/11/09 16:13:02 tb Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include "extern.h" int verbose; static void tal_print(const struct tal *p) { size_t i; assert(p != NULL); for (i = 0; i < p->urisz; i++) printf("%5zu: URI: %s\n", i + 1, p->uri[i]); } int main(int argc, char *argv[]) { int c, i, verb = 0; char *buf; struct tal *tal; ERR_load_crypto_strings(); OpenSSL_add_all_ciphers(); OpenSSL_add_all_digests(); while ((c = getopt(argc, argv, "v")) != -1) switch (c) { case 'v': verb++; break; default: errx(1, "bad argument %c", c); } argv += optind; argc -= optind; if (argc == 0) errx(1, "argument missing"); for (i = 0; i < argc; i++) { buf = tal_read_file(argv[i]); tal = tal_parse(argv[i], buf); free(buf); if (tal == NULL) break; if (verb) tal_print(tal); tal_free(tal); } EVP_cleanup(); CRYPTO_cleanup_all_ex_data(); ERR_free_strings(); if (i < argc) errx(1, "test failed for %s", argv[i]); printf("OK\n"); return 0; }