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
|
#include "parser-test.h"
void run_test(struct parser_test *test)
{
struct discover_boot_option *opt;
struct discover_context *ctx;
struct discover_device *dev;
test_read_conf_file(test, "grub2-ubuntu-13_04-x86.conf", "/grub.cfg");
test_run_parser(test, "grub2");
ctx = test->ctx;
check_boot_option_count(ctx, 5);
opt = get_boot_option(ctx, 0);
check_unresolved_resource(opt->boot_image);
check_unresolved_resource(opt->initrd);
check_name(opt, "Kubuntu GNU/Linux");
check_args(opt, "root=UUID=29beca39-9181-4780-bbb2-ab5d4be59aaf ro quiet splash ");
opt = get_boot_option(ctx, 1);
check_unresolved_resource(opt->boot_image);
check_unresolved_resource(opt->initrd);
check_name(opt, "Kubuntu GNU/Linux, with Linux 3.8.0-19-generic");
check_args(opt, "root=UUID=29beca39-9181-4780-bbb2-ab5d4be59aaf ro quiet splash ");
opt = get_boot_option(ctx, 2);
check_name(opt, "Kubuntu GNU/Linux, with Linux 3.8.0-19-generic (recovery mode)");
check_args(opt, "root=UUID=29beca39-9181-4780-bbb2-ab5d4be59aaf ro recovery nomodeset");
opt = get_boot_option(ctx, 3);
check_unresolved_resource(opt->boot_image);
check_not_present_resource(opt->initrd);
check_name(opt, "Memory test (memtest86+)");
check_args(opt, NULL);
opt = get_boot_option(ctx, 4);
check_unresolved_resource(opt->boot_image);
check_not_present_resource(opt->initrd);
check_name(opt, "Memory test (memtest86+, serial console 115200)");
check_args(opt, "console=ttyS0,115200n8");
/* hotplug a device with a maching UUID, and check that our
* resources become resolved */
dev = test_create_device(test, "external");
dev->uuid = "29beca39-9181-4780-bbb2-ab5d4be59aaf";
test_hotplug_device(test, dev);
opt = get_boot_option(ctx, 0);
check_resolved_local_resource(opt->boot_image, dev,
"/boot/vmlinuz-3.8.0-19-generic");
check_resolved_local_resource(opt->initrd, dev,
"/boot/initrd.img-3.8.0-19-generic");
opt = get_boot_option(ctx, 1);
check_resolved_local_resource(opt->boot_image, dev,
"/boot/vmlinuz-3.8.0-19-generic");
check_resolved_local_resource(opt->initrd, dev,
"/boot/initrd.img-3.8.0-19-generic");
opt = get_boot_option(ctx, 2);
check_resolved_local_resource(opt->boot_image, dev,
"/boot/vmlinuz-3.8.0-19-generic");
check_resolved_local_resource(opt->initrd, dev,
"/boot/initrd.img-3.8.0-19-generic");
opt = get_boot_option(ctx, 3);
check_resolved_local_resource(opt->boot_image, dev,
"/boot/memtest86+.bin");
check_not_present_resource(opt->initrd);
opt = get_boot_option(ctx, 4);
check_resolved_local_resource(opt->boot_image, dev,
"/boot/memtest86+.bin");
check_not_present_resource(opt->initrd);
}
|