]> git.ipfire.org Git - thirdparty/systemd.git/blob - test/udev-test.pl
[PATCH] catch replace device by wildcard
[thirdparty/systemd.git] / test / udev-test.pl
1 #!/usr/bin/perl
2
3 # udev-test
4 #
5 # Provides automated testing of the udev binary.
6 # The whole test is self contained in this file, except the matching sysfs tree.
7 # Simply extend the @tests array, to add a new test variant.
8 #
9 # Every test is driven by its own temporary config file.
10 # This program prepares the environment, creates the config and calls udev.
11 #
12 # udev reads the config, looks at the provided sysfs and
13 # first creates and then removes the device node.
14 # After creation and removal the result is checked against the
15 # expected value and the result is printed.
16 #
17 # happy testing,
18 # Kay Sievers <kay.sievers@vrfy.org>, 2003
19
20
21 use warnings;
22 use strict;
23
24 my $PWD = $ENV{PWD};
25 my $sysfs = "sys/";
26 my $udev_bin = "../udev";
27 my $udev_root = "udev-root/"; # !!! directory will be removed !!!
28 my $udev_db = ".udev.tdb";
29 my $perm = "udev.permissions";
30 my $conf_tmp = "udev-test.config";
31
32
33 my @tests = (
34 {
35 desc => "label test of scsi disc",
36 subsys => "block",
37 devpath => "block/sda",
38 expected => "boot_disk" ,
39 conf => <<EOF
40 LABEL, BUS="scsi", vendor="IBM-ESXS", NAME="boot_disk%n"
41 REPLACE, KERNEL="ttyUSB0", NAME="visor""
42 EOF
43 },
44 {
45 desc => "label test of scsi partition",
46 subsys => "block",
47 devpath => "block/sda/sda1",
48 expected => "boot_disk1" ,
49 conf => <<EOF
50 LABEL, BUS="scsi", vendor="IBM-ESXS", NAME="boot_disk%n"
51 EOF
52 },
53 {
54 desc => "catch device by wildcard",
55 subsys => "tty",
56 devpath => "class/tty/ttyUSB0",
57 expected => "visor/0" ,
58 conf => <<EOF
59 REPLACE, KERNEL="ttyUSB*", NAME="visor/%n"
60 EOF
61 },
62 {
63 desc => "replace kernel name",
64 subsys => "tty",
65 devpath => "class/tty/ttyUSB0",
66 expected => "visor" ,
67 conf => <<EOF
68 REPLACE, KERNEL="ttyUSB0", NAME="visor"
69 EOF
70 },
71 {
72 desc => "subdirectory handling",
73 subsys => "tty",
74 devpath => "class/tty/ttyUSB0",
75 expected => "sub/direct/ory/visor" ,
76 conf => <<EOF
77 REPLACE, KERNEL="ttyUSB0", NAME="sub/direct/ory/visor"
78 EOF
79 },
80 {
81 desc => "place on bus of scsi partition",
82 subsys => "block",
83 devpath => "block/sda/sda3",
84 expected => "first_disk3" ,
85 conf => <<EOF
86 TOPOLOGY, BUS="scsi", PLACE="0:0:0:0", NAME="first_disk%n"
87 EOF
88 },
89 {
90 desc => "test NAME substitution chars",
91 subsys => "block",
92 devpath => "block/sda/sda3",
93 expected => "Major:8:minor:3:kernelnumber:3:bus:0:0:0:0" ,
94 conf => <<EOF
95 TOPOLOGY, BUS="scsi", PLACE="0:0:0:0", NAME="Major:%M:minor:%m:kernelnumber:%n:bus:%b"
96 EOF
97 },
98 {
99 desc => "callout result substitution, only last should match",
100 subsys => "block",
101 devpath => "block/sda/sda3",
102 expected => "special-device-3" ,
103 conf => <<EOF
104 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n special-device", ID="-special-*", NAME="%c-1-%n"
105 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n special-device", ID="special--*", NAME="%c-2-%n"
106 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n special-device", ID="special-device-", NAME="%c-3-%n"
107 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n special-device", ID="special-devic", NAME="%c-4-%n"
108 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n special-device", ID="special-*", NAME="%c-%n"
109 EOF
110 },
111 {
112 desc => "callout program substitution",
113 subsys => "block",
114 devpath => "block/sda/sda3",
115 expected => "test-0:0:0:0" ,
116 conf => <<EOF
117 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n test-%b", ID="test-*", NAME="%c"
118 EOF
119 },
120 {
121 desc => "devfs disk naming substitution",
122 subsys => "block",
123 devpath => "block/sda",
124 expected => "lun0/disk" ,
125 conf => <<EOF
126 LABEL, BUS="scsi", vendor="IBM-ESXS", NAME="lun0/%D"
127 EOF
128 },
129 {
130 desc => "devfs disk naming substitution",
131 subsys => "block",
132 devpath => "block/sda/sda2",
133 expected => "lun0/part2" ,
134 conf => <<EOF
135 LABEL, BUS="scsi", vendor="IBM-ESXS", NAME="lun0/%D"
136 EOF
137 },
138 {
139 desc => "callout bus type",
140 subsys => "block",
141 devpath => "block/sda",
142 expected => "scsi-0:0:0:0" ,
143 conf => <<EOF
144 CALLOUT, BUS="usb", PROGRAM="/bin/echo -n usb-%b", ID="*", NAME="%c"
145 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n scsi-%b", ID="*", NAME="%c"
146 CALLOUT, BUS="foo", PROGRAM="/bin/echo -n foo-%b", ID="*", NAME="%c"
147 EOF
148 },
149 );
150
151 # set env
152 $ENV{UDEV_TEST} = "yes";
153 $ENV{SYSFS_PATH} = $sysfs;
154 $ENV{UDEV_CONFIG_DIR} = "./";
155 $ENV{UDEV_ROOT} = $udev_root;
156 $ENV{UDEV_DB} = $udev_db;
157 $ENV{UDEV_PERMISSION_FILE} = $perm;
158
159
160 sub udev {
161 my ($action, $subsys, $devpath, $config) = @_;
162
163 $ENV{DEVPATH} = $devpath;
164 $ENV{UDEV_CONFIG_FILE} = $conf_tmp;
165
166 # create temporary config
167 open CONF, ">$conf_tmp" || die "unable to create config file: $conf_tmp";
168 print CONF $$config;
169 close CONF;
170
171 $ENV{ACTION} = $action;
172 system("$udev_bin $subsys");
173 }
174
175
176 # prepare
177 system("rm -rf $udev_root");
178 mkdir($udev_root) || die "unable to create udev_root: $udev_root\n";
179
180 # test
181 my $error = 0;
182 print "\nudev-test will run ".($#tests + 1)." tests:\n\n";
183
184 foreach my $config (@tests) {
185 $config->{conf} =~ m/^([A-Z]*).*/;
186 my $method = $1;
187
188 print "TEST: $config->{desc}\n";
189 print "method \'$method\' for \'$config->{devpath}\' expecting node \'$config->{expected}\'\n";
190
191 udev("add", $config->{subsys}, $config->{devpath}, \$config->{conf});
192 if (-e "$PWD/$udev_root$config->{expected}") {
193 print "add: ok ";
194 } else {
195 print "add: error\n";
196 system("tree $udev_root");
197 print "\n";
198 $error++;
199 }
200
201 udev("remove", $config->{subsys}, $config->{devpath}, \$config->{conf});
202 if (-e "$PWD/$udev_root$config->{expected}") {
203 print "remove: error\n\n";
204 system("tree $udev_root");
205 $error++;
206 } else {
207 print "remove: ok\n\n";
208 }
209 }
210
211 print "$error errors occured\n\n";
212
213 # cleanup
214 unlink($udev_db);
215 system("rm -rf $udev_root");
216 unlink($conf_tmp);
217