Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/testsuite/mdev.tests

Parent Directory Parent Directory | Revision Log Revision Log


Revision 984 - (show annotations) (download)
Sun May 30 11:32:42 2010 UTC (13 years, 11 months ago) by niro
File size: 6198 byte(s)
-updated to busybox-1.16.1 and enabled blkid/uuid support in default config
1 #!/bin/sh
2 # Copyright 2008 by Denys Vlasenko
3 # Licensed under GPL v2, see file LICENSE for details.
4
5 . ./testing.sh
6
7 # ls -ln is showing date. Need to remove that, it's variable
8 # sed: (1) "maj, min" -> "maj,min" (2) coalesce spaces
9 # cut: remove date
10 FILTER_LS="grep -v '^total ' | sed -e 's/, */,/g' -e 's/ */ /g' | cut -d' ' -f 1-5,9-"
11 # cut: remove size+date
12 FILTER_LS2="grep -v '^total ' | sed -e 's/, */,/g' -e 's/ */ /g' | cut -d' ' -f 1-4,9-"
13
14 # testing "test name" "options" "expected result" "file input" "stdin"
15
16 rm -rf mdev.testdir
17 mkdir mdev.testdir
18 # We need mdev executable to be in chroot jail!
19 # (will still fail with dynamically linked one, though...)
20 cp ../busybox mdev.testdir/mdev
21 mkdir mdev.testdir/bin
22 cp ../busybox mdev.testdir/bin/sh 2>/dev/null # for testing cmd feature
23 mkdir mdev.testdir/etc
24 mkdir mdev.testdir/dev
25 mkdir -p mdev.testdir/sys/block/sda
26 echo "8:0" >mdev.testdir/sys/block/sda/dev
27
28 # env - PATH=$PATH: on some systems chroot binary won't otherwise be found
29
30 testing "mdev add /block/sda" \
31 "env - PATH=$PATH ACTION=add DEVPATH=/block/sda chroot mdev.testdir /mdev 2>&1;
32 ls -ln mdev.testdir/dev | $FILTER_LS" \
33 "\
34 brw-rw---- 1 0 0 8,0 sda
35 " \
36 "" ""
37
38 # continuing to use directory structure from prev test
39 rm -rf mdev.testdir/dev/*
40 echo ".* 1:1 666" >mdev.testdir/etc/mdev.conf
41 echo "sda 2:2 444" >>mdev.testdir/etc/mdev.conf
42 testing "mdev stops on first rule" \
43 "env - PATH=$PATH ACTION=add DEVPATH=/block/sda chroot mdev.testdir /mdev 2>&1;
44 ls -ln mdev.testdir/dev | $FILTER_LS" \
45 "\
46 brw-rw-rw- 1 1 1 8,0 sda
47 " \
48 "" ""
49
50 # continuing to use directory structure from prev test
51 rm -rf mdev.testdir/dev/*
52 echo "-.* 1:1 666" >mdev.testdir/etc/mdev.conf
53 echo "sda 2:2 444" >>mdev.testdir/etc/mdev.conf
54 testing "mdev does not stop on dash-rule" \
55 "env - PATH=$PATH ACTION=add DEVPATH=/block/sda chroot mdev.testdir /mdev 2>&1;
56 ls -ln mdev.testdir/dev | $FILTER_LS" \
57 "\
58 br--r--r-- 1 2 2 8,0 sda
59 " \
60 "" ""
61
62 # continuing to use directory structure from prev test
63 rm -rf mdev.testdir/dev/*
64 echo "\$MODALIAS=qw 1:1 666" >mdev.testdir/etc/mdev.conf
65 echo "\$MODALIAS=qw. 2:2 444" >>mdev.testdir/etc/mdev.conf
66 echo "\$MODALIAS=qw. 3:3 400" >>mdev.testdir/etc/mdev.conf
67 testing "mdev \$ENVVAR=regex match" \
68 "env - PATH=$PATH ACTION=add DEVPATH=/block/sda MODALIAS=qwe chroot mdev.testdir /mdev 2>&1;
69 ls -ln mdev.testdir/dev | $FILTER_LS" \
70 "\
71 br--r--r-- 1 2 2 8,0 sda
72 " \
73 "" ""
74
75 # continuing to use directory structure from prev test
76 rm -rf mdev.testdir/dev/*
77 echo "sda 0:0 444 >disk/scsiA" >mdev.testdir/etc/mdev.conf
78 testing "mdev move/symlink rule '>bar/baz'" \
79 "env - PATH=$PATH ACTION=add DEVPATH=/block/sda chroot mdev.testdir /mdev 2>&1;
80 ls -lnR mdev.testdir/dev | $FILTER_LS2" \
81 "\
82 mdev.testdir/dev:
83 drwxr-xr-x 2 0 0 disk
84 lrwxrwxrwx 1 0 0 sda -> disk/scsiA
85
86 mdev.testdir/dev/disk:
87 br--r--r-- 1 0 0 scsiA
88 " \
89 "" ""
90
91 # continuing to use directory structure from prev test
92 rm -rf mdev.testdir/dev/*
93 echo "sda 0:0 444 >disk/" >mdev.testdir/etc/mdev.conf
94 testing "mdev move/symlink rule '>bar/'" \
95 "env - PATH=$PATH ACTION=add DEVPATH=/block/sda chroot mdev.testdir /mdev 2>&1;
96 ls -lnR mdev.testdir/dev | $FILTER_LS2" \
97 "\
98 mdev.testdir/dev:
99 drwxr-xr-x 2 0 0 disk
100 lrwxrwxrwx 1 0 0 sda -> disk/sda
101
102 mdev.testdir/dev/disk:
103 br--r--r-- 1 0 0 sda
104 " \
105 "" ""
106
107 # continuing to use directory structure from prev test
108 rm -rf mdev.testdir/dev/*
109 # here we complicate things by having non-matching group 1 and using %0
110 echo "s([0-9])*d([a-z]+) 0:0 644 >sd/%2_%0" >mdev.testdir/etc/mdev.conf
111 testing "mdev regexp substring match + replace" \
112 "env - PATH=$PATH ACTION=add DEVPATH=/block/sda chroot mdev.testdir /mdev 2>&1;
113 ls -lnR mdev.testdir/dev | $FILTER_LS2" \
114 "\
115 mdev.testdir/dev:
116 drwxr-xr-x 2 0 0 sd
117 lrwxrwxrwx 1 0 0 sda -> sd/a_sda
118
119 mdev.testdir/dev/sd:
120 brw-r--r-- 1 0 0 a_sda
121 " \
122 "" ""
123
124 # continuing to use directory structure from prev test
125 rm -rf mdev.testdir/dev/*
126 echo "sda 0:0 644 @echo @echo TEST" >mdev.testdir/etc/mdev.conf
127 testing "mdev command" \
128 "env - PATH=$PATH ACTION=add DEVPATH=/block/sda chroot mdev.testdir /mdev 2>&1;
129 ls -lnR mdev.testdir/dev | $FILTER_LS" \
130 "\
131 @echo TEST
132 mdev.testdir/dev:
133 brw-r--r-- 1 0 0 8,0 sda
134 " \
135 "" ""
136
137 # continuing to use directory structure from prev test
138 rm -rf mdev.testdir/dev/*
139 echo "sda 0:0 644 =block/ @echo @echo TEST:\$MDEV" >mdev.testdir/etc/mdev.conf
140 testing "mdev move and command" \
141 "env - PATH=$PATH ACTION=add DEVPATH=/block/sda chroot mdev.testdir /mdev 2>&1;
142 ls -lnR mdev.testdir/dev | $FILTER_LS2" \
143 "\
144 @echo TEST:block/sda
145 mdev.testdir/dev:
146 drwxr-xr-x 2 0 0 block
147
148 mdev.testdir/dev/block:
149 brw-r--r-- 1 0 0 sda
150 " \
151 "" ""
152
153 # continuing to use directory structure from prev test
154 rm -rf mdev.testdir/dev/*
155 echo "@8,0 0:1 644" >mdev.testdir/etc/mdev.conf
156 testing "mdev #maj,min and no explicit uid" \
157 "env - PATH=$PATH ACTION=add DEVPATH=/block/sda chroot mdev.testdir /mdev 2>&1;
158 ls -lnR mdev.testdir/dev | $FILTER_LS" \
159 "\
160 mdev.testdir/dev:
161 brw-r--r-- 1 0 1 8,0 sda
162 " \
163 "" ""
164
165 # continuing to use directory structure from prev test
166 rm -rf mdev.testdir/dev/*
167 mkdir -p mdev.testdir/sys/class/tty/capi
168 echo "191:0" >mdev.testdir/sys/class/tty/capi/dev
169 mkdir -p mdev.testdir/sys/class/tty/capi1
170 echo "191:1" >mdev.testdir/sys/class/tty/capi1/dev
171 mkdir -p mdev.testdir/sys/class/tty/capi20
172 echo "191:20" >mdev.testdir/sys/class/tty/capi20/dev
173 echo "capi 0:0 0660 =capi20" >mdev.testdir/etc/mdev.conf
174 echo "capi([0-9]) 0:0 0660 =capi20.0%1" >>mdev.testdir/etc/mdev.conf
175 echo "capi([0-9]*) 0:0 0660 =capi20.%1" >>mdev.testdir/etc/mdev.conf
176 # mdev invocation with DEVPATH=/class/tty/capi20 was deleting /dev/capi20
177 testing "move rule does not delete node with name == device_name" \
178 "\
179 env - PATH=$PATH ACTION=add DEVPATH=/class/tty/capi chroot mdev.testdir /mdev 2>&1;
180 env - PATH=$PATH ACTION=add DEVPATH=/class/tty/capi1 chroot mdev.testdir /mdev 2>&1;
181 env - PATH=$PATH ACTION=add DEVPATH=/class/tty/capi20 chroot mdev.testdir /mdev 2>&1;
182 ls -lnR mdev.testdir/dev | $FILTER_LS" \
183 "\
184 mdev.testdir/dev:
185 crw-rw---- 1 0 0 191,0 capi20
186 crw-rw---- 1 0 0 191,1 capi20.01
187 crw-rw---- 1 0 0 191,20 capi20.20
188 " \
189 "" ""
190
191 # clean up
192 rm -rf mdev.testdir
193
194 exit $FAILCOUNT