X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=test%2Fparser%2Futils.c;h=3e218e4af07d35292ab2acfde23cb9da2f7dd475;hp=9df3a7fb67eda09dd861a53213662d370fc54752;hb=38d7d1a97d46aacf67675038c927e579bb589310;hpb=ac319778b407636ae5b0ecf9d75e85752014ef96 diff --git a/test/parser/utils.c b/test/parser/utils.c index 9df3a7f..3e218e4 100644 --- a/test/parser/utils.c +++ b/test/parser/utils.c @@ -17,14 +17,27 @@ #include "parser-test.h" -static int n_parsers; -static struct parser **parsers; +struct p_item { + struct list_item list; + struct parser *parser; +}; + +STATIC_LIST(parsers); void __register_parser(struct parser *parser) { - parsers = talloc_realloc(NULL, parsers, struct parser *, n_parsers + 1); - parsers[n_parsers] = parser; - n_parsers++; + struct p_item* i = talloc(NULL, struct p_item); + + i->parser = parser; + list_add(&parsers, &i->list); +} + +static void __attribute__((destructor)) __cleanup_parsers(void) +{ + struct p_item *item, *tmp; + + list_for_each_entry_safe(&parsers, item, tmp, list) + talloc_free(item); } static struct discover_device *test_create_device_simple( @@ -73,7 +86,7 @@ struct parser_test *test_init(void) struct parser_test *test; test = talloc_zero(NULL, struct parser_test); - test->handler = device_handler_init(NULL, 0); + test->handler = device_handler_init(NULL, NULL, 0); test->ctx = test_create_context(test); return test; @@ -120,25 +133,24 @@ void test_read_conf_file(struct parser_test *test, const char *filename) talloc_free(path); } +void test_set_conf_source(struct parser_test *test, const char *url) +{ + test->ctx->conf_url = pb_url_parse(test, url); + assert(test->ctx->conf_url); +} + int test_run_parser(struct parser_test *test, const char *parser_name) { - struct parser *parser; - int i, rc = 0; + struct p_item* i; - for (i = 0; i < n_parsers; i++) { - parser = parsers[i]; - if (strcmp(parser->name, parser_name)) + list_for_each_entry(&parsers, i, list) { + if (strcmp(i->parser->name, parser_name)) continue; - test->ctx->parser = parser; - rc = parser->parse(test->ctx, test->conf.buf, test->conf.size); - break; + test->ctx->parser = i->parser; + return i->parser->parse(test->ctx, test->conf.buf, test->conf.size); } - if (i == n_parsers) - errx(EXIT_FAILURE, "%s: parser '%s' not found", - __func__, parser_name); - - return rc; + errx(EXIT_FAILURE, "%s: parser '%s' not found", __func__, parser_name); } bool resource_resolve(struct device_handler *handler, struct parser *parser, @@ -275,6 +287,26 @@ void __check_resolved_local_resource(struct resource *res, } } +void __check_resolved_url_resource(struct resource *res, + const char *url, const char *file, int line) +{ + char *res_url; + + if (!res) + errx(EXIT_FAILURE, "%s:%d: No resource", file, line); + + if (!res->resolved) + errx(EXIT_FAILURE, "%s:%d: Resource is not resolved", + file, line); + + res_url = pb_url_to_string(res->url); + if (strcmp(url, res_url)) { + fprintf(stderr, "%s:%d: Resource mismatch\n", file, line); + fprintf(stderr, " got '%s'\n", res_url); + fprintf(stderr, " expected '%s'\n", url); + exit(EXIT_FAILURE); + } +} void __check_unresolved_resource(struct resource *res, const char *file, int line) { @@ -284,3 +316,10 @@ void __check_unresolved_resource(struct resource *res, if (res->resolved) errx(EXIT_FAILURE, "%s:%d: Resource is resolved", file, line); } + +void __check_not_present_resource(struct resource *res, + const char *file, int line) +{ + if (res) + errx(EXIT_FAILURE, "%s:%d: Resource present", file, line); +}