]> git.ozlabs.org Git - petitboot/blob - test/parser/test-pxe-non-url-conf.c
discover/pxe-parser: Remove unnecessary semicolon
[petitboot] / test / parser / test-pxe-non-url-conf.c
1
2 #include "parser-test.h"
3
4 #if 0 /* PARSER_EMBEDDED_CONFIG */
5 default linux
6
7 label linux
8 kernel ./pxe/de-ad-de-ad-be-ef.vmlinuz
9 append command line
10 initrd=./pxe/de-ad-de-ad-be-ef.initrd
11 #endif
12
13 void run_test(struct parser_test *test)
14 {
15         struct discover_boot_option *opt;
16         struct discover_context *ctx;
17
18         test_read_conf_embedded_url(test, "tftp://host/conf.txt");
19
20         test_set_event_source(test);
21         test_set_event_param(test->ctx->event, "siaddr", "host");
22         test_set_event_param(test->ctx->event, "pxeconffile", "conf.txt");
23
24         test_run_parser(test, "pxe");
25
26         ctx = test->ctx;
27
28         check_boot_option_count(ctx, 1);
29         opt = get_boot_option(ctx, 0);
30
31         check_name(opt, "linux");
32         check_args(opt, "command line");
33
34         check_resolved_url_resource(opt->boot_image,
35                         "tftp://host/./pxe/de-ad-de-ad-be-ef.vmlinuz");
36         check_resolved_url_resource(opt->initrd,
37                         "tftp://host/./pxe/de-ad-de-ad-be-ef.initrd");
38 }