Whamcloud - gitweb
LU-9371 tools: handle component options properly
[fs/lustre-release.git] / lustre / tests / sanity-pfl.sh
1 #!/bin/bash
2 #
3 # Run select tests by setting ONLY, or as arguments to the script.
4 # Skip specific tests by setting EXCEPT.
5 set -e
6
7 SRCDIR=$(dirname $0)
8 export PATH=$PWD/$SRCDIR:$SRCDIR:$PWD/$SRCDIR/../utils:$PATH:/sbin
9
10 ONLY=${ONLY:-"$*"}
11 # Bug number for skipped test:
12 ALWAYS_EXCEPT="$SANITY_PFL_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 [ "$ALWAYS_EXCEPT$EXCEPT" ] &&
16         echo "Skipping tests: $ALWAYS_EXCEPT $EXCEPT"
17
18 TMP=${TMP:-/tmp}
19 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
20
21 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
22 . $LUSTRE/tests/test-framework.sh
23 init_test_env $@
24 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
25 init_logging
26
27 check_and_setup_lustre
28
29 if [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.51) ]]; then
30         skip_env "Need MDS version at least 2.9.51" && exit
31 fi
32
33 build_test_filter
34
35 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] &&
36         error "\$RUNAS_ID set to 0, but \$UID is also 0!"
37 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
38
39 test_0() {
40         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
41
42         local comp_file=$DIR/$tdir/$tfile
43         local rw_len=$((3 * 1024 * 1024))       # 3M
44
45         test_mkdir $DIR/$tdir
46         rm -f $comp_file
47
48         $LFS setstripe -E 1m -S 1M -c 1 -E -1 -c 1 $comp_file ||
49                 error "Create $comp_file failed"
50
51         #instantiate all components, so that objs are allocted
52         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
53
54         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
55         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
56
57         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
58
59         small_write $comp_file $rw_len || error "Verify RW failed"
60
61         rm -f $comp_file || error "Delete $comp_file failed"
62 }
63 run_test 0 "Create full components file, no reused OSTs"
64
65 test_1() {
66         local comp_file=$DIR/$tdir/$tfile
67         local rw_len=$((3 * 1024 * 1024))       # 3M
68
69         test_mkdir $DIR/$tdir
70         rm -f $comp_file
71
72         $LFS setstripe -E 1m -S 1m -o 0 -E -1 -o 0 $comp_file ||
73                 error "Create $comp_file failed"
74
75         #instantiate all components, so that objs are allocted
76         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
77
78         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
79         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
80
81         [ $ost_idx1 -ne $ost_idx2 ] && error "$ost_idx1 != $ost_idx2"
82
83         small_write $comp_file $rw_len || error "Verify RW failed"
84
85         rm -f $comp_file || error "Delete $comp_file failed"
86 }
87 run_test 1 "Create full components file, reused OSTs"
88
89 test_2() {
90         local comp_file=$DIR/$tdir/$tfile
91         local rw_len=$((5 * 1024 * 1024))       # 5M
92
93         test_mkdir $DIR/$tdir
94         rm -f $comp_file
95
96         $LFS setstripe -E 1m -S 1m $comp_file ||
97                 error "Create $comp_file failed"
98
99         local comp_cnt=$($LFS getstripe --component-count $comp_file)
100         [ $comp_cnt -ne 1 ] && error "component count $comp_cnt != 1"
101
102         dd if=/dev/zero of=$comp_file bs=1M count=1 > /dev/null 2>&1 ||
103                 error "Write first component failed"
104         dd if=$comp_file of=/dev/null bs=1M count=1 > /dev/null 2>&1 ||
105                 error "Read first component failed"
106
107         dd if=/dev/zero of=$comp_file bs=1M count=2 > /dev/null 2>&1 &&
108                 error "Write beyond component should fail"
109         dd if=$comp_file of=/dev/null bs=1M count=2 > /dev/null 2>&1 ||
110                 error "Read beyond component should short read, not fail"
111
112         $LFS setstripe --component-add -E 2M -c 1 $comp_file ||
113                 error "Add component to $comp_file failed"
114
115         comp_cnt=$($LFS getstripe --component-count $comp_file)
116         [ $comp_cnt -ne 2 ] && error "component count $comp_cnt != 2"
117
118         $LFS setstripe --component-add -E -1 -c 3 $comp_file ||
119                 error "Add last component to $comp_file failed"
120
121         comp_cnt=$($LFS getstripe --component-count $comp_file)
122         [ $comp_cnt -ne 3 ] && error "component count $comp_cnt != 3"
123
124         small_write $comp_file $rw_len || error "Verify RW failed"
125
126         rm -f $comp_file || error "Delete $comp_file failed"
127 }
128 run_test 2 "Add component to existing file"
129
130 del_comp_and_verify() {
131         local comp_file=$1
132         local id=$2
133         local left=$3
134         local size=$4
135
136         local opt="-I "
137         if [ $id == "init" -o $id == "^init" ]; then
138                 opt="--component-flags="
139         fi
140
141         $LFS setstripe --component-del $opt$id $comp_file ||
142                 error "Delete component $id from $comp_file failed"
143
144         local comp_cnt=$($LFS getstripe --component-count $comp_file)
145         if grep -q "has no stripe info" <<< "$comp_cnt" ; then
146                 comp_cnt=0
147         fi
148         [ $comp_cnt -ne $left ] && error "$comp_cnt != $left"
149
150         $CHECKSTAT -s $size $comp_file || error "size != $size"
151 }
152
153 test_3() {
154         local comp_file=$DIR/$tdir/$tfile
155
156         test_mkdir $DIR/$tdir
157         rm -f $comp_file
158
159         $LFS setstripe -E 1M -E 64M -c 2 -E -1 -c 3 $comp_file ||
160                 error "Create $comp_file failed"
161
162         local comp_cnt=$($LFS getstripe --component-count $comp_file)
163         [ $comp_cnt -ne 3 ] && error "component count $comp_cnt != 3"
164
165         dd if=/dev/zero of=$comp_file bs=1M count=2
166
167         $LFS setstripe --component-del -I 2 $comp_file &&
168                 error "Component deletion makes hole"
169
170         del_comp_and_verify $comp_file 3 2 $((2 * 1024 * 1024))
171         del_comp_and_verify $comp_file 2 1 $((1 * 1024 * 1024))
172         del_comp_and_verify $comp_file 1 0 0
173
174         rm -f $comp_file || error "Delete $comp_file failed"
175
176         $LFS setstripe -E 1M -E 16M -E -1 $comp_file ||
177                 error "Create second $comp_file failed"
178
179         del_comp_and_verify $comp_file "^init" 1 0
180         del_comp_and_verify $comp_file "init" 0 0
181         rm -f $comp_file || error "Delete second $comp_file failed"
182
183 }
184 run_test 3 "Delete component from existing file"
185
186 test_4() {
187         skip "Not supported in PFL" && return
188         # In PFL project, only LCME_FL_INIT is supported, and it can't
189         # be altered by application.
190 }
191 run_test 4 "Modify component flags in existing file"
192
193 test_5() {
194         local parent=$DIR/$tdir
195         local comp_file=$DIR/$tdir/$tfile
196         local subdir=$parent/subdir
197
198         rm -fr $parent
199         test_mkdir $parent || error "Create dir $parent failed"
200
201         # set default layout to parent directory
202         $LFS setstripe -E 64M -c 2 -i 0 -E -1 -c 4 -i 0 $parent ||
203                 error "Set default layout to $parent failed"
204
205         # create file under parent
206         touch $comp_file || error "Create $comp_file failed"
207         local comp_cnt=$($LFS getstripe --component-count $comp_file)
208         [ $comp_cnt -ne 2 ] && error "file $comp_cnt != 2"
209
210         #instantiate all components, so that objs are allocted
211         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=65k
212
213         local ost_idx=$($LFS getstripe -I1 -i $comp_file)
214         [ $ost_idx -ne 0 ] &&
215                 error "component 1 ost_idx $ost_idx != 0"
216
217         ost_idx=$($LFS getstripe -I2 -i $comp_file)
218         [ $ost_idx -ne 0 ] &&
219                 error "component 2 ost_idx $ost_idx != 0"
220
221         # create subdir under parent
222         mkdir -p $subdir || error "Create subdir $subdir failed"
223
224         comp_cnt=$($LFS getstripe -d --component-count $subdir)
225         [ $comp_cnt -ne 2 ] && error "subdir $comp_cnt != 2"
226
227         # create file under subdir
228         touch $subdir/$tfile || error "Create $subdir/$tfile failed"
229
230         comp_cnt=$($LFS getstripe --component-count $subdir/$tfile)
231         [ $comp_cnt -ne 2 ] && error "$subdir/$tfile $comp_cnt != 2"
232
233         # delete default layout setting from parent
234         $LFS setstripe -d $parent ||
235                 error "Delete default layout from $parent failed"
236
237         comp_cnt=$($LFS getstripe -d --component-count $parent)
238         [ ! -z "$comp_cnt" ] && error "$comp_cnt isn't empty"
239
240         rm -f $comp_file || error "Delete $comp_file failed"
241         rm -f $subdir/$tfile || error "Delete $subdir/$tfile failed"
242         rm -r $subdir || error "Delete subdir $subdir failed"
243         rmdir $parent || error "Delete dir $parent failed"
244 }
245 run_test 5 "Inherit composite layout from parent directory"
246
247 test_6() {
248         local comp_file=$DIR/$tdir/$tfile
249
250         test_mkdir $DIR/$tdir
251         rm -f $DIR/$tfile
252
253         $LFS setstripe -c 1 -S 128K $comp_file ||
254                 error "Create v1 $comp_file failed"
255
256         local comp_cnt=$($LFS getstripe --component-count $comp_file)
257         [ ! -z "$comp_cnt" ] && error "Wrong component count $comp_cnt"
258
259         dd if=/dev/urandom of=$comp_file bs=1M count=5 oflag=sync ||
260                 error "Write to v1 $comp_file failed"
261
262         local old_chksum=$(md5sum $comp_file)
263
264         # Migrate v1 to composite
265         $LFS migrate -E 1M -S 512K -c 1 -E -1 -S 1M -c 2 $comp_file ||
266                 error "Migrate(v1 -> composite) $comp_file failed"
267
268         comp_cnt=$($LFS getstripe --component-count $comp_file)
269         [ "$comp_cnt" -ne 2 ] && error "$comp_cnt != 2"
270
271         local chksum=$(md5sum $comp_file)
272         [ "$old_chksum" != "$chksum" ] &&
273                 error "(v1 -> compsoite) $old_chksum != $chksum"
274
275         # Migrate composite to composite
276         $LFS migrate -E 1M -S 1M -c 2 -E 4M -S 1M -c 2 \
277                 -E -1 -S 3M -c 3 $comp_file ||
278                 error "Migrate(compsoite -> composite) $comp_file failed"
279
280         comp_cnt=$($LFS getstripe --component-count $comp_file)
281         [ "$comp_cnt" -ne 3 ] && error "$comp_cnt != 3"
282
283         chksum=$(md5sum $comp_file)
284         [ "$old_chksum" != "$chksum" ] &&
285                 error "(composite -> compsoite) $old_chksum != $chksum"
286
287         # Migrate composite to v1
288         $LFS migrate -c 2 -S 2M $comp_file ||
289                 error "Migrate(composite -> v1) $comp_file failed"
290
291         comp_cnt=$($LFS getstripe --component-count $comp_file)
292         [ ! -z "$comp_cnt" ] && error "$comp_cnt isn't empty"
293
294         chksum=$(md5sum $comp_file)
295         [ "$old_chksum" != "$chksum" ] &&
296                 error "(composite -> v1) $old_chksum != $chksum"
297
298         rm -f $comp_file || "Delete $comp_file failed"
299 }
300 run_test 6 "Migrate composite file"
301
302 test_7() {
303         test_mkdir -p $DIR/$tdir || error "mkdir failed"
304         chmod 0777 $DIR/$tdir || error "chmod $tdir failed"
305
306         local comp_file=$DIR/$tdir/$tfile
307         $RUNAS $LFS setstripe -E 1M -c 1 $comp_file ||
308                 error "Create composite file $comp_file failed"
309
310         $RUNAS $LFS setstripe --component-add -E 64M -c 4 $comp_file ||
311                 error "Add component to $comp_file failed"
312
313         $RUNAS $LFS setstripe --component-del -I 2 $comp_file ||
314                 error "Delete component from $comp_file failed"
315
316         $RUNAS $LFS setstripe --component-add -E -1 -c 5 $comp_file ||
317                 error "Add last component to $comp_file failed"
318
319         rm $comp_file || "Delete composite failed"
320 }
321 run_test 7 "Add/Delete/Create composite file by non-privileged user"
322
323 test_8() {
324         local parent=$DIR/$tdir
325
326         rm -fr $parent
327         test_mkdir -p $parent || error "Create dir $parent failed"
328
329         $LFS setstripe -E 2M -c 1 -S 1M -E 16M -c 2 -S 2M \
330                 -E -1 -c 4 -S 4M $parent ||
331                 error "Set default layout to $parent failed"
332
333         sh rundbench -C -D $parent 2 || error "dbench failed"
334
335         rm -fr $parent || error "Delete dir $parent failed"
336 }
337 run_test 8 "Run dbench over composite files"
338
339 test_9() {
340         local comp_file=$DIR/$tdir/$tfile
341
342         test_mkdir $DIR/$tdir
343         rm -f $comp_file
344
345         $LFS setstripe -E 1m -S 1m -E 2M -c 1 $comp_file ||
346                 error "Create $comp_file failed"
347
348         local comp_cnt=$($LFS getstripe --component-count $comp_file)
349         [ $comp_cnt -ne 2 ] && error "component count $comp_cnt != 2"
350
351         replay_barrier $SINGLEMDS
352
353         # instantiate the 2nd component
354         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
355
356         local f1=$($LFS getstripe -I2 $comp_file |
357                         awk '/l_fid:/ {print $7}')
358         echo "before MDS recovery, the ost fid of 2nd component is $f1"
359         fail $SINGLEMDS
360
361         local f2=$($LFS getstripe -I2 $comp_file |
362                         awk '/l_fid:/ {print $7}')
363         echo "after MDS recovery, the ost fid of 2nd component is $f2"
364         [ $f1 == $f2 ] || error "$f1 != $f2"
365 }
366 run_test 9 "Replay layout extend object instantiation"
367
368 component_dump() {
369         echo $($LFS getstripe $1 |
370                 awk '$1 == "lcm_entry_count:" { printf("%d", $2) }
371                      $1 == "lcme_extent.e_start:" { printf("[%#lx", $2) }
372                      $1 == "lcme_extent.e_end:" { printf(",%s]", $2) }')
373 }
374
375 test_10() {
376         local parent=$DIR/$tdir
377         local root_layout=$(get_layout_param $MOUNT)
378
379         rm -rf $parent
380         $LFS setstripe -d $MOUNT || error "clear root layout"
381
382         # set root composite layout
383         $LFS setstripe -E 2M -c 1 -S 1M -E 16M -c2 -S 2M \
384                 -E -1 -c 4 -S 4M $MOUNT ||
385                 error "Set root layout failed"
386
387         test_mkdir -p $parent || error "Create dir $parent failed"
388         # set a different layout for parent
389         $LFS setstripe -E -1 -c 1 -S 1M $parent ||
390                 error "set $parent layout failed"
391         touch $parent/file1
392
393         local f1_entry=$(component_dump $parent/file1)
394
395         # delete parent's layout
396         $LFS setstripe -d $parent || error "Clear $parent layout failed"
397         touch $parent/file2
398
399         local f2_entry=$(component_dump $parent/file2)
400
401         # verify layout inheritance
402         local eof="EOF"
403         local f1_expect="1[0,EOF]"
404         local f2_expect="3[0,2097152][0x200000,16777216][0x1000000,EOF]"
405
406         echo "f1 expect=$f1_expect"
407         echo "f1 get   =$f1_entry"
408         echo "f2 expect=$f2_expect"
409         echo "f2 get   =$f2_entry"
410
411         [  x$f1_expect != x$f1_entry ] &&
412                 error "$parent/file1 does not inherite parent layout"
413         [  x$f2_expect != x$f2_entry ] &&
414                 error "$parent/file2 does not inherite root layout"
415
416         $LFS setstripe $root_layout $MOUNT
417         return 0
418 }
419 run_test 10 "Inherit composite template from root"
420
421 test_11() {
422         local comp_file=$DIR/$tdir/$tfile
423         test_mkdir $DIR/$tdir
424         rm -f $comp_file
425
426         # only 1st component instantiated
427         $LFS setstripe -E 1m -E 2m -E 3m -E -1 $comp_file ||
428                 error "Create $comp_file failed"
429
430         local f1=$($LFS getstripe -I1 $comp_file | grep "l_fid")
431         [[ -z $f1 ]] && error "1: 1st component uninstantiated"
432         local f2=$($LFS getstripe -I2 $comp_file | grep "l_fid")
433         [[ -n $f2 ]] && error "1: 2nd component instantiated"
434         local f3=$($LFS getstripe -I3 $comp_file | grep "l_fid")
435         [[ -n $f3 ]] && error "1: 3rd component instantiated"
436         local f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
437         [[ -n $f4 ]] && error "1: 4th component instantiated"
438
439         # the first 2 components instantiated
440         $TRUNCATE $comp_file $((1024*1024*1+1))
441
442         f2=$($LFS getstripe -I2 $comp_file | grep "l_fid")
443         [[ -z $f2 ]] && error "2: 2nd component uninstantiated"
444         f3=$($LFS getstripe -I3 $comp_file | grep "l_fid")
445         [[ -n $f3 ]] && error "2: 3rd component instantiated"
446         f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
447         [[ -n $f4 ]] && error "2: 4th component instantiated"
448
449         # the first 3 components instantiated
450         $TRUNCATE $comp_file $((1024*1024*3))
451         $TRUNCATE $comp_file $((1024*1024*1+1))
452
453         f2=$($LFS getstripe -I2 $comp_file | grep "l_fid")
454         [[ -z $f2 ]] && error "2: 2nd component uninstantiated"
455         f3=$($LFS getstripe -I3 $comp_file | grep "l_fid")
456         [[ -z $f3 ]] && error "3: 3rd component uninstantiated"
457         f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
458         [[ -n $f4 ]] && error "3: 4th component instantiated"
459
460         # all 4 components instantiated, using append write
461         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
462         ls -l $comp_file
463         rwv -f $comp_file -w -a -n 2 $((1024*1023)) 1
464         ls -l $comp_file
465
466         f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
467         [[ -z $f4 ]] && error "4: 4th component uninstantiated"
468
469         return 0
470 }
471 run_test 11 "Verify component instantiation with write/truncate"
472
473 test_12() {
474         [ $OSTCOUNT -lt 3 ] && skip "needs >= 3 OSTs" && return
475
476         local file=$DIR/$tdir/$tfile
477         test_mkdir $DIR/$tdir
478         rm -f $file
479
480         # specify ost list for component
481         $LFS setstripe -E1m -c2 -o0,1 -E2m -c2 -o1,2 -E3m -c2 -o2,1 \
482                 -E4m -c2 -o2,0 -E-1 $file ||
483                 error "Create $file failed"
484         # instantiate all components
485         $TRUNCATE $file $((1024*1024*4+1))
486
487         #verify object alloc order
488         local o1=$($LFS getstripe -I1 $file |
489                         awk '/l_ost_idx:/ {printf("%d",$5)}')
490         [[ $o1 != "01" ]] && error "$o1 is not 01"
491
492         local o2=$($LFS getstripe -I2 $file |
493                         awk '/l_ost_idx:/ {printf("%d",$5)}')
494         [[ $o2 != "12" ]] && error "$o2 is not 12"
495
496         local o3=$($LFS getstripe -I3 $file |
497                         awk '/l_ost_idx:/ {printf("%d",$5)}')
498         [[ $o3 != "21" ]] && error "$o3 is not 21"
499
500         local o4=$($LFS getstripe -I4 $file |
501                         awk '/l_ost_idx:/ {printf("%d",$5)}')
502         [[ $o4 != "20" ]] && error "$o4 is not 20"
503
504         return 0
505 }
506 run_test 12 "Verify ost list specification"
507
508 test_13() { # LU-9311
509         [ $OSTCOUNT -lt 8 ] && skip "needs >= 8 OSTs" && return
510
511         local file=$DIR/$tfile
512         local dd_count=4
513         local dd_size=$(($dd_count * 1024 * 1024))
514         local real_size
515
516         rm -f $file
517         $LFS setstripe -E 1M -c 1 -E 2M -c 2 -E -1 -c -1 -i 1 $file ||
518                 error "Create $file failed"
519         dd if=/dev/zero of=$file bs=1M count=$dd_count
520         real_size=$(stat -c %s $file)
521         [ $real_size -eq $dd_size ] ||
522                 error "dd actually wrote $real_size != $dd_size bytes"
523
524         rm -f $file
525 }
526 run_test 13 "shouldn't reprocess granted resent request"
527
528 test_14() {
529         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
530         local file=$DIR/$tdir/$tfile
531         test_mkdir -p $DIR/$tdir
532         rm -f $file
533
534         $LFS setstripe -E1m -c1 -S1m --pool="pool1" -E2m \
535                         -E4m -c2 -S2m --pool="pool2" -E-1 $file ||
536                 error "Create $file failed"
537
538         # check --pool inheritance
539         local pool
540         pool="$($LFS getstripe -I2 --pool $file)"
541         [ x"$pool" != "xpool1" ] && $LFS getstripe -I2 $file &&
542                 error "$file: component 2 doesn't have poolname pool1"
543         pool="$($LFS getstripe -I4 --pool $file)"
544         [ x"$pool" != "xpool2" ] && $LFS getstripe -I4 $file &&
545                 error "$file: component 4 doesn't have poolname pool2"
546
547         #check --stripe-count inheritance
548         local count
549         count="$($LFS getstripe -I2 -c $file)"
550         [ $count -ne 1 ] && $LFS getstripe -I2 $file &&
551                 error "$file: component 2 doesn't have 1 stripe_count"
552         count="$($LFS getstripe -I4 -c $file)"
553         [ $count -ne 2 ] && $LFS getstripe -I4 $file &&
554                 error "$file: component 4 doesn't have 2 stripe_count"
555
556         #check --stripe-size inheritance
557         local size
558         size="$($LFS getstripe -I2 -S $file)"
559         [ $size -ne $((1024*1024)) ] && $LFS getstripe -I2 $file &&
560                 error "$file: component 2 doesn't have 1M stripe_size"
561         size="$($LFS getstripe -I4 -S $file)"
562         [ $size -ne $((1024*1024*2)) ] && $LFS getstripe -I4 $file &&
563                 error "$file: component 4 doesn't have 2M stripe_size"
564
565         return 0
566 }
567 run_test 14 "Verify setstripe poolname/stripe_count/stripe_size inheritance"
568
569 test_15() {
570         local parent=$DIR/$tdir
571
572         rm -fr $parent
573         test_mkdir -p $parent || error "Create dir $parent failed"
574
575         $LFS setstripe -d $parent || error "delete default layout"
576
577         $LFS setstripe -E 1M -E 10M -E eof $parent/f1 || error "create f1"
578         $LFS setstripe -E 4M -E 20M -E eof $parent/f2 || error "create f2"
579         test_mkdir -p $parent/subdir || error "create subdir"
580         $LFS setstripe -E 6M -E 30M -E eof $parent/subdir ||
581                 error "setstripe to subdir"
582         $LFS setstripe -E 8M -E eof $parent/subdir/f3 || error "create f3"
583         $LFS setstripe -c 1 $parent/subdir/f4 || error "create f4"
584
585         # none
586         local found=$($LFS find --component-start +2M -E -15M $parent | wc -l)
587         [ $found -eq 0 ] || error "start+2M, end-15M, $found != 0"
588
589         # f2, f3
590         found=$($LFS find --component-start +2M -E -35M $parent | wc -l)
591         [ $found -eq 2 ] || error "start+2M, end-35M, $found != 2"
592
593         # subdir
594         found=$($LFS find --component-start +4M -E -eof $parent | wc -l)
595         [ $found -eq 1 ] || error "start+4M, end-eof, $found != 1"
596
597         local flg_opts="--component-flags init"
598         # none
599         found=$($LFS find --component-start 1M -E 10M $flg_opts $parent | wc -l)
600         [ $found -eq 0 ] ||
601                 error "before write: start=1M, end=10M, flag=init, $found != 0"
602
603         dd if=/dev/zero of=$parent/f1 bs=1M count=2 ||
604                 error "dd $parent/f1 failed"
605
606         # f1
607         found=$($LFS find --component-start 1M -E 10M $flg_opts $parent | wc -l)
608         [ $found -eq 1 ] ||
609                 error "after write: start=1M, end=10M, flag=init, $found != 1"
610
611         local ext_opts="--component-start -1M -E +5M"
612         # subdir, f3
613         found=$($LFS find $ext_opts $parent | wc -l)
614         [ $found -eq 2 ] || error "start-1M, end+5M, $found != 2"
615
616         local cnt_opts="--component-count +2"
617         # subdir
618         found=$($LFS find $ext_opts $cnt_opts $parent | wc -l)
619         [ $found -eq 1 ] || error "start-1M, end+5M, count+2, $found != 1"
620
621         # none
622         found=$($LFS find $ext_opts $cnt_opts $flg_opts $parent | wc -l)
623         [ $found -eq 0 ] ||
624                 error "start-1M, end+5M, count+2, flag=init, $found != 0"
625
626         # f3
627         found=$($LFS find $ext_opts ! $cnt_opts $flg_opts $parent | wc -l)
628         [ $found -eq 1 ] ||
629                 error "start-1M, end+5M, !count+2, flag=init, $found != 1"
630 }
631 run_test 15 "Verify component options for lfs find"
632
633 complete $SECONDS
634 check_and_cleanup_lustre
635 exit_status