diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2013-07-09 16:14:00 +0800 |
---|---|---|
committer | Geoff Levand <geoff@infradead.org> | 2013-07-23 09:44:45 -0700 |
commit | 9ecdab4194422f1f72486745a9d6db79badd36ae (patch) | |
tree | f28caaf1bdd7bd2cfd2ad2d258632503a77c2f1a /test | |
parent | ec80a0397adc1fd405dedce961a17d164241851a (diff) | |
download | talos-petitboot-9ecdab4194422f1f72486745a9d6db79badd36ae.tar.gz talos-petitboot-9ecdab4194422f1f72486745a9d6db79badd36ae.zip |
test/parser: Add check_resolved_url_resource
Add a check for external URL resources.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/parser/parser-test.h | 8 | ||||
-rw-r--r-- | test/parser/utils.c | 20 |
2 files changed, 28 insertions, 0 deletions
diff --git a/test/parser/parser-test.h b/test/parser/parser-test.h index 9d9ec7e..5329618 100644 --- a/test/parser/parser-test.h +++ b/test/parser/parser-test.h @@ -86,6 +86,14 @@ void __check_resolved_local_resource(struct resource *res, const char *file, int line); /** + * Check that a resource (@res) is present, resolved, and has a URL of + * @url. + */ +#define check_resolved_url_resource(res, url) \ + __check_resolved_url_resource(res, url, __FILE__, __LINE__) +void __check_resolved_url_resource(struct resource *res, + const char *url, const char *file, int line); +/** * Check that a resource (@res) is present but not resolved */ void __check_unresolved_resource(struct resource *res, diff --git a/test/parser/utils.c b/test/parser/utils.c index f1604e0..3e218e4 100644 --- a/test/parser/utils.c +++ b/test/parser/utils.c @@ -287,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) { |