Home | History | Annotate | Line # | Download | only in test
      1      1.1  haad #!/bin/sh
      2      1.1  haad # Copyright (C) 2008 Red Hat, Inc. All rights reserved.
      3      1.1  haad #
      4      1.1  haad # This copyrighted material is made available to anyone wishing to use,
      5      1.1  haad # modify, copy, or redistribute it subject to the terms and conditions
      6      1.1  haad # of the GNU General Public License v.2.
      7      1.1  haad #
      8      1.1  haad # You should have received a copy of the GNU General Public License
      9      1.1  haad # along with this program; if not, write to the Free Software Foundation,
     10      1.1  haad # Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     11      1.1  haad 
     12      1.1  haad # 'Check extents percentage arguments'
     13      1.1  haad 
     14      1.1  haad . ./test-utils.sh
     15      1.1  haad 
     16      1.1  haad aux prepare_vg 2 128
     17      1.1  haad 
     18  1.1.1.3  haad lvcreate -L 64m -n $lv $vg
     19      1.1  haad 
     20      1.1  haad # 'lvextend rejects both size and extents without PVs'
     21  1.1.1.3  haad not lvextend -l 10 -L 64m $vg/$lv 2>err
     22      1.1  haad grep "^  Please specify either size or extents but not both.\$" err
     23      1.1  haad 
     24      1.1  haad # 'lvextend rejects both size and extents with PVs'
     25  1.1.1.3  haad not lvextend -l 10 -L 64m $vg/$lv $dev1 2>err
     26      1.1  haad grep "^  Please specify either size or extents but not both.\$" err
     27      1.1  haad 
     28      1.1  haad # 'lvextend accepts no size or extents but one PV - bz154691'
     29      1.1  haad lvextend $vg/$lv $dev1 >out
     30      1.1  haad grep "^  Logical volume $lv successfully resized\$" out
     31      1.1  haad check_pv_field_ $dev1 pv_free "0"
     32      1.1  haad 
     33  1.1.1.2  haad lvremove -f $vg/$lv 
     34  1.1.1.2  haad 
     35  1.1.1.2  haad # 'lvextend computes necessary free space correctly - bz213552'
     36  1.1.1.2  haad vgsize=$(vgs -o vg_extent_count --noheadings)
     37  1.1.1.2  haad lvcreate -l $vgsize  -n $lv $vg
     38  1.1.1.2  haad yes | lvreduce -l $(( $vgsize / 2 )) $vg/$lv
     39  1.1.1.2  haad lvextend -l $vgsize $vg/$lv
     40  1.1.1.2  haad 
     41      1.1  haad # 'Reset LV to original size' 
     42      1.1  haad lvremove -f $vg/$lv 
     43  1.1.1.3  haad lvcreate -L 64m -n $lv $vg
     44      1.1  haad 
     45      1.1  haad # 'lvextend accepts no size but extents 100%PVS and two PVs - bz154691'
     46      1.1  haad lvextend -l +100%PVS $vg/$lv $dev1 $dev2 >out
     47      1.1  haad grep "^  Logical volume $lv successfully resized\$" out 
     48      1.1  haad check_pv_field_ $dev1 pv_free "0" 
     49      1.1  haad check_pv_field_ $dev2 pv_free "0"
     50      1.1  haad 
     51      1.1  haad # Exercise the range overlap code.  Allocate every 2 extents.
     52      1.1  haad #
     53      1.1  haad #      Physical Extents
     54      1.1  haad #          1         2
     55      1.1  haad #012345678901234567890123
     56      1.1  haad #
     57      1.1  haad #aaXXaaXXaaXXaaXXaaXXaaXX - (a)llocated
     58      1.1  haad #rrrXXXrrrXXXrrrXXXrrrXXX - (r)ange on cmdline
     59      1.1  haad #ooXXXXXXoXXXooXXXXXXoXXX - (o)verlap of range and allocated
     60      1.1  haad #
     61      1.1  haad # Key: a - allocated
     62      1.1  haad #      F - free
     63      1.1  haad #      r - part of a range on the cmdline
     64      1.1  haad #      N - not on cmdline
     65      1.1  haad #
     66      1.1  haad # Create the LV with 12 extents, allocated every other 2 extents.
     67      1.1  haad # Then extend it, with a range of PVs on the cmdline of every other 3 extents.
     68      1.1  haad # Total number of extents should be 12 + overlap = 12 + 6 = 18.
     69      1.1  haad # Thus, total size for the LV should be 18 * 4M = 72M
     70      1.1  haad #
     71      1.1  haad # 'Reset LV to 12 extents, allocate every other 2 extents' 
     72      1.1  haad create_pvs=`for i in $(seq 0 4 20); do echo -n "\$dev1:$i-$(($i + 1)) "; done` 
     73      1.1  haad lvremove -f $vg/$lv
     74      1.1  haad lvcreate -l 12 -n $lv $vg $create_pvs
     75  1.1.1.3  haad check_lv_field_ $vg/$lv lv_size "48.00m"
     76      1.1  haad 
     77      1.1  haad # 'lvextend with partially allocated PVs and extents 100%PVS with PE ranges' 
     78      1.1  haad extend_pvs=`for i in $(seq 0 6 18); do echo -n "\$dev1:$i-$(($i + 2)) "; done` 
     79      1.1  haad lvextend -l +100%PVS $vg/$lv $extend_pvs >out
     80      1.1  haad grep "^  Logical volume $lv successfully resized\$" out 
     81  1.1.1.3  haad check_lv_field_ $vg/$lv lv_size "72.00m"
     82  1.1.1.3  haad 
     83  1.1.1.3  haad # Simple seg_count validation; initially create the LV with half the # of
     84  1.1.1.3  haad # extents (should be 1 lv segment), extend it (should go to 2 segments),
     85  1.1.1.3  haad # then reduce (should be back to 1)
     86  1.1.1.3  haad # FIXME: test other segment fields such as seg_size, pvseg_start, pvseg_size
     87  1.1.1.3  haad lvremove -f $vg/$lv
     88  1.1.1.3  haad pe_count=$(pvs -o pv_pe_count --noheadings $dev1)
     89  1.1.1.3  haad pe1=$(( $pe_count / 2 ))
     90  1.1.1.3  haad lvcreate -l $pe1 -n $lv $vg
     91  1.1.1.3  haad pesize=$(lvs -ovg_extent_size --units b --nosuffix --noheadings $vg/$lv)
     92  1.1.1.3  haad segsize=$(( $pe1 * $pesize / 1024 / 1024 ))m
     93  1.1.1.3  haad check_lv_field_ $vg/$lv seg_count 1
     94  1.1.1.3  haad check_lv_field_ $vg/$lv seg_start 0
     95  1.1.1.3  haad check_lv_field_ $vg/$lv seg_start_pe 0
     96  1.1.1.3  haad #check_lv_field_ $vg/$lv seg_size $segsize
     97  1.1.1.3  haad lvextend -l +$(( $pe_count * 1 )) $vg/$lv
     98  1.1.1.3  haad check_lv_field_ $vg/$lv seg_count 2
     99  1.1.1.3  haad lvreduce -f -l -$(( $pe_count * 1 )) $vg/$lv
    100  1.1.1.3  haad check_lv_field_ $vg/$lv seg_count 1
    101      1.1  haad 
    102