#!/bin/bash - # libguestfs # Copyright (C) 2011-2025 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # Test guestfish md-create and md-detail commands. source ./functions.sh set -e set -x skip_if_skipped rm -f mdadm-{1,2,3,4}.img # Partition boundaries. p1_start=$(( 1024*1024/512 )); p1_end=$(( 20*1024*1024/512 - 1 )) p2_start=$(( p1_end+1 )); p2_end=$(( 40*1024*1024/512 - 1 )) p3_start=$(( p2_end+1 )); p3_end=$(( 60*1024*1024/512 - 1 )) p4_start=$(( p3_end+1 )); p4_end=$(( 80*1024*1024/512 - 1 )) guestfish < md-detail.out sed 's/:\s*/=/' md-detail.out > md-detail.out.sh . md-detail.out.sh rm -f md-detail.out.sh error=0 case "$name" in *:r1t1) [ "$level" = "raid1" ] || error=1 [ "$devices" -eq 2 ] || error=1 ;; *:r1t2) [ "$level" = "raid1" ] || error=1 [ "$devices" -eq 2 ] || error=1 ;; *:r5t1) [ "$level" = "raid5" ] || error=1 [ "$devices" -eq 4 ] || error=1 ;; *:r5t2) [ "$level" = "raid5" ] || error=1 [ "$devices" -eq 3 ] || error=1 ;; *:r5t3) [ "$level" = "raid5" ] || error=1 [ "$devices" -eq 2 ] || error=1 ;; *) error=1 esac [[ "$uuid" =~ ([0-9a-f]{8}:){3}[0-9a-f]{8} ]] || error=1 [ ! -z "$metadata" ] || error=1 if [ "$error" -eq 1 ]; then echo "$0: Unexpected output from md-detail for device $md" cat md-detail.out guestfish --remote exit exit 1 fi done guestfish --remote exit eval `guestfish --listen` guestfish --remote add-ro mdadm-1.img guestfish --remote add-ro mdadm-2.img guestfish --remote add-ro mdadm-3.img guestfish --remote add-ro mdadm-4.img guestfish --remote run for md in `guestfish --remote list-md-devices`; do guestfish --remote md-stop "$md" done guestfish --remote exit rm md-detail.out mdadm-1.img mdadm-2.img mdadm-3.img mdadm-4.img