]> git.ozlabs.org Git - petitboot/blob - test/parser/test-pxe-non-url-pathprefix-with-conf.c
discover/grub: Improve BLS grub environment variables expansion
[petitboot] / test / parser / test-pxe-non-url-pathprefix-with-conf.c
1
2 #include "parser-test.h"
3
4 #if 0 /* PARSER_EMBEDDED_CONFIG */
5 default linux
6
7 label linux
8 kernel ./kernel
9 append command line
10 initrd /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/path/to/conf.txt");
19
20         test_set_event_source(test);
21         test_set_event_param(test->ctx->event, "tftp", "host");
22         test_set_event_param(test->ctx->event, "pxepathprefix", "/path/to/");
23         test_set_event_param(test->ctx->event, "pxeconffile", "conf.txt");
24
25         test_run_parser(test, "pxe");
26
27         ctx = test->ctx;
28
29         check_boot_option_count(ctx, 1);
30         opt = get_boot_option(ctx, 0);
31
32         check_name(opt, "linux");
33         check_args(opt, "command line");
34
35         check_resolved_url_resource(opt->boot_image,
36                         "tftp://host/path/to/./kernel");
37         check_resolved_url_resource(opt->initrd,
38                         "tftp://host/path/to/initrd");
39 }