chiark / gitweb /
[PATCH] fix the test.block and test.tty scripts due to their moveing. Also add a...
[elogind.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     => "replace kernel name",
55                 subsys   => "tty",
56                 devpath  => "class/tty/ttyUSB0",
57                 expected => "visor" ,
58                 conf     => <<EOF
59 REPLACE, KERNEL="ttyUSB0", NAME="visor"
60 EOF
61         },
62         {
63                 desc     => "place on bus of scsi partition",
64                 subsys   => "block",
65                 devpath  => "block/sda/sda3",
66                 expected => "first_disk3" ,
67                 conf     => <<EOF
68 TOPOLOGY, BUS="scsi", PLACE="0:0:0:0", NAME="first_disk%n"
69 EOF
70         },
71         {
72                 desc     => "test NAME substitution chars",
73                 subsys   => "block",
74                 devpath  => "block/sda/sda3",
75                 expected => "Major:8:minor:3:kernelnumber:3:bus:0:0:0:0" ,
76                 conf     => <<EOF
77 TOPOLOGY, BUS="scsi", PLACE="0:0:0:0", NAME="Major:%M:minor:%m:kernelnumber:%n:bus:%b"
78 EOF
79         },
80         {
81                 desc     => "callout result substitution, only last should match",
82                 subsys   => "block",
83                 devpath  => "block/sda/sda3",
84                 expected => "special-device-3" ,
85                 conf     => <<EOF
86 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n special-device", ID="-special-*", NAME="%c-1-%n"
87 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n special-device", ID="special--*", NAME="%c-2-%n"
88 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n special-device", ID="special-device-", NAME="%c-3-%n"
89 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n special-device", ID="special-devic", NAME="%c-4-%n"
90 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n special-device", ID="special-*", NAME="%c-%n"
91 EOF
92         },
93         {
94                 desc     => "callout program substitution",
95                 subsys   => "block",
96                 devpath  => "block/sda/sda3",
97                 expected => "test-0:0:0:0" ,
98                 conf     => <<EOF
99 CALLOUT, BUS="scsi", PROGRAM="/bin/echo -n test-%b", ID="test-*", NAME="%c"
100 EOF
101         },
102 );
103
104 # set env
105 $ENV{UDEV_TEST} = "yes";
106 $ENV{SYSFS_PATH} = $sysfs;
107 $ENV{UDEV_CONFIG_DIR} = "./";
108 $ENV{UDEV_ROOT} = $udev_root;
109 $ENV{UDEV_DB} = $udev_db;
110 $ENV{UDEV_PERMISSION_FILE} = $perm;
111
112
113 sub udev {
114         my ($action, $subsys, $devpath, $config) = @_;
115
116         $ENV{DEVPATH} = $devpath;
117         $ENV{UDEV_CONFIG_FILE} = $conf_tmp;
118
119         # create temporary config
120         open CONF, ">$conf_tmp" || die "unable to create config file: $conf_tmp";
121         print CONF $$config;
122         close CONF;
123
124         $ENV{ACTION} = $action;
125         system("$udev_bin $subsys");
126 }
127
128
129 # prepare
130 system("rm -rf $udev_root");
131 mkdir($udev_root) || die "unable to create udev_root: $udev_root\n";
132
133 # test
134 my $error = 0;
135 print "\nudev-test will run ".($#tests + 1)." tests:\n\n";
136
137 foreach my $config (@tests) {
138         $config->{conf} =~ m/^([A-Z]*).*/;
139         my $method  = $1;
140
141         print "TEST: $config->{desc}\n";
142         print "method \'$method\' for \'$config->{devpath}\' expecting node \'$config->{expected}\'\n";
143
144         udev("add", $config->{subsys}, $config->{devpath}, \$config->{conf});
145         if (-e "$PWD/$udev_root$config->{expected}") {
146                 print "add: ok    ";
147         } else {
148                 print "add: error\n";
149                 system("tree $udev_root");
150                 print "\n";
151                 $error++;
152         }
153
154         udev("remove", $config->{subsys}, $config->{devpath}, \$config->{conf});
155         if (-e "$PWD/$udev_root$config->{expected}") {
156                 print "remove: error\n\n";
157                 system("tree $udev_root");
158                 $error++;
159         } else {
160                 print "remove: ok\n\n";
161         }
162 }
163
164 print "$error errors occured\n\n";
165
166 # cleanup
167 system("rm -rf $udev_root");
168 unlink($conf_tmp);
169 unlink($udev_db);
170