X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=test%2Fparser%2Futils.c;h=fb558cf2c3ec457be3d0ef63a8f399bb06b3f343;hb=31998343c5eb5533ef85b97f5bb2ffe200eb2ad0;hp=0b4c89f5faec63fe239716684c69ba968d1eecc6;hpb=29452d63438ec97e5332caf1f45e5e12b1e873f8;p=petitboot diff --git a/test/parser/utils.c b/test/parser/utils.c index 0b4c89f..fb558cf 100644 --- a/test/parser/utils.c +++ b/test/parser/utils.c @@ -200,3 +200,51 @@ void __check_args(struct discover_boot_option *opt, const char *args, exit(EXIT_FAILURE); } } + +void __check_name(struct discover_boot_option *opt, const char *name, + const char *file, int line) +{ + int rc; + + rc = strcmp(opt->option->name, name); + if (rc) { + fprintf(stderr, "%s%d: name check failed\n", file, line); + fprintf(stderr, " got '%s'\n", opt->option->name); + fprintf(stderr, " expected '%s'\n", name); + exit(EXIT_FAILURE); + } +} + +void __check_resolved_local_resource(struct resource *res, + struct discover_device *dev, const char *local_path, + const char *file, int line) +{ + const char *exp_url, *got_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); + + exp_url = talloc_asprintf(res, "file://%s%s", + dev->mount_path, local_path); + got_url = pb_url_to_string(res->url); + + if (strcmp(got_url, exp_url)) { + errx(EXIT_FAILURE, + "%s:%d Resource mismatch: got %s, expected %s", + file, line, got_url, exp_url); + } +} + +void __check_unresolved_resource(struct resource *res, + const char *file, int line) +{ + if (!res) + errx(EXIT_FAILURE, "%s:%d: No resource", file, line); + + if (res->resolved) + errx(EXIT_FAILURE, "%s:%d: Resource is resolved", file, line); +}