summaryrefslogtreecommitdiffstats
path: root/test/parser/test-grub2-devpath.c
blob: d1d00f17831be1eab3d9cb95f086395805b9e671 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/* check grub2 device+path string parsing */

#include "parser-test.h"

#if 0 /* PARSER_EMBEDDED_CONFIG */

# local
menuentry a {
	linux /vmlinux
}

# local, specified by root env var
root=00000000-0000-0000-0000-000000000001
menuentry b {
	linux /vmlinux
}

# remote, specified by root env var
root=00000000-0000-0000-0000-000000000002
menuentry c {
	linux /vmlinux
}

# local, full dev+path spec
menuentry d {
	linux (00000000-0000-0000-0000-000000000001)/vmlinux
}

# remote, full dev+path spec
menuentry e {
	linux (00000000-0000-0000-0000-000000000002)/vmlinux
}

# invalid: incomplete dev+path spec
menuentry f {
	linux (00000000-0000-0000-0000-000000000001
}

# invalid: no path
menuentry g {
	linux (00000000-0000-0000-0000-000000000001)
}


#endif

void run_test(struct parser_test *test)
{
	struct discover_device *dev1, *dev2;
	struct discover_boot_option *opt;
	struct discover_context *ctx;

	ctx = test->ctx;

	/* set local uuid */
	dev1 = test->ctx->device;
	dev1->uuid = "00000000-0000-0000-0000-000000000001";

	dev2 = test_create_device(test, "extdev");
	dev2->uuid = "00000000-0000-0000-0000-000000000002";
	device_handler_add_device(ctx->handler, dev2);

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

	test_run_parser(test, "grub2");

	check_boot_option_count(ctx, 5);

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

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

	opt = get_boot_option(ctx, 2);
	check_name(opt, "c");
	check_resolved_local_resource(opt->boot_image, dev2, "/vmlinux");

	opt = get_boot_option(ctx, 3);
	check_name(opt, "d");
	check_resolved_local_resource(opt->boot_image, dev1, "/vmlinux");

	opt = get_boot_option(ctx, 4);
	check_name(opt, "e");
	check_resolved_local_resource(opt->boot_image, dev2, "/vmlinux");
}
OpenPOWER on IntegriCloud