]> git.ozlabs.org Git - petitboot/blob - test/parser/test-pxe-discover-bootfile-subdir.c
discover: Handle BTRFS root subvolumes
[petitboot] / test / parser / test-pxe-discover-bootfile-subdir.c
1
2 #include "parser-test.h"
3
4 #if 0 /* PARSER_EMBEDDED_CONFIG */
5 label linux
6 kernel vmlinux
7 initrd initrd
8 #endif
9
10 /**
11  * Test that we look for a configuration file under the same prefix as
12  * the DHCP bootfile parameter, which is in a subdirectory of the TFTP root.
13  */
14
15 void run_test(struct parser_test *test)
16 {
17         struct discover_boot_option *opt;
18         struct discover_context *ctx;
19
20         test_read_conf_embedded_url(test,
21                         "tftp://host/dir/pxelinux.cfg/default");
22
23         test_set_event_source(test);
24         test_set_event_param(test->ctx->event, "bootfile", "dir/binary");
25         test_set_event_param(test->ctx->event, "mac", "00:11:22:33:44:55");
26         test_set_event_param(test->ctx->event, "tftp", "host");
27
28         test_run_parser(test, "pxe");
29
30         ctx = test->ctx;
31
32         check_boot_option_count(ctx, 1);
33         opt = get_boot_option(ctx, 0);
34
35         check_name(opt, "linux");
36
37         check_resolved_url_resource(opt->boot_image, "tftp://host/dir/vmlinux");
38         check_resolved_url_resource(opt->initrd, "tftp://host/dir/initrd");
39 }