summaryrefslogtreecommitdiffstats
path: root/test/parser/test-grub2-source-recursion.c
blob: 21b6bd262bb8b98d3c8309524e1689c36c2bb06a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* check that we can source other files recursively */

#include "parser-test.h"

#if 0 /* PARSER_EMBEDDED_CONFIG */

menuentry a {
	linux /a
}

source /grub/2.cfg

menuentry c {
	linux /c
}

#endif

void run_test(struct parser_test *test)
{
	struct discover_boot_option *opt;
	struct discover_context *ctx;
	struct discover_device *dev;

	ctx = test->ctx;
	dev = ctx->device;

	test_read_conf_embedded(test, "/grub/grub.cfg");

	/* four levels of config files, the last defining a boot option */
	test_add_file_string(test, dev,
			"/grub/2.cfg",
			"source /grub/3.cfg\n");

	test_add_file_string(test, dev,
			"/grub/3.cfg",
			"source /grub/4.cfg\n");

	test_add_file_string(test, dev,
			"/grub/4.cfg",
			"menuentry b { linux /b }\n");

	test_run_parser(test, "grub2");

	check_boot_option_count(ctx, 3);

	opt = get_boot_option(ctx, 0);
	check_name(opt, "a");
	check_resolved_local_resource(opt->boot_image, dev, "/a");

	opt = get_boot_option(ctx, 1);
	check_name(opt, "b");
	check_resolved_local_resource(opt->boot_image, dev, "/b");

	opt = get_boot_option(ctx, 2);
	check_name(opt, "c");
	check_resolved_local_resource(opt->boot_image, dev, "/c");
}
OpenPOWER on IntegriCloud