mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
Replace strange $TEST_FUNCTIONS variable/expansion thing with something more like what we use in nbdkit, a simple tests/functions.sh script that gets sourced into each test script. Update the common submodule to get: commit 8137d47d0e654065391151eb275e3b64f230f6f5 Author: Richard W.M. Jones <rjones@redhat.com> Date: Thu Feb 13 11:13:55 2025 +0000 mlcustomize, mltools: Replace $TEST_FUNCTIONS TEST_FUNCTIONS is being removed from libguestfs and guestfs-tools (it was removed from virt-v2v a while back). Make the same adjustment in the common submodule. (and some other commits which are not relevant to libguestfs)
107 lines
2.3 KiB
Bash
Executable File
107 lines
2.3 KiB
Bash
Executable File
#!/bin/bash -
|
|
# libguestfs
|
|
# Copyright (C) 2012 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 glob command.
|
|
|
|
source ../tests/functions.sh
|
|
set -e
|
|
set -x
|
|
|
|
skip_if_skipped
|
|
|
|
rm -f test-glob.img test-glob.out
|
|
|
|
$VG guestfish -N test-glob.img=disk:1G > test-glob.out <<EOF
|
|
|
|
pvcreate /dev/sda
|
|
# Because glob doesn't do device name translation, we cannot test
|
|
# matching on /dev/sd* paths, only on LVs. So choose a volume group
|
|
# name that cannot possibly be a device name.
|
|
vgcreate abc /dev/sda
|
|
lvcreate lv1 abc 64
|
|
lvcreate lv2 abc 64
|
|
lvcreate lv3 abc 64
|
|
|
|
glob mkfs ext2 /dev/abc/*
|
|
mount /dev/abc/lv1 /
|
|
|
|
mkdir /foo
|
|
touch /abc
|
|
touch /foo/bar1
|
|
touch /foo/bar2
|
|
|
|
# Regular file globbing.
|
|
echo files
|
|
glob echo /f*
|
|
glob echo /foo/*
|
|
glob echo /foo/not*
|
|
glob echo /foo/b??1
|
|
glob echo /abc
|
|
|
|
# Device globbing.
|
|
echo devices
|
|
glob echo /dev/a*
|
|
glob echo /dev/a*/*
|
|
glob echo /dev/a*/not*
|
|
glob echo /dev/a*/lv?
|
|
glob echo /dev/a*/lv
|
|
glob echo /dev/a*/*3
|
|
glob echo /dev/a*/* /dev/a*
|
|
glob echo /dev/a*/* /dev/a*/*
|
|
|
|
echo end
|
|
EOF
|
|
|
|
if [ "$(cat test-glob.out)" != "files
|
|
/foo/
|
|
/foo/bar1
|
|
/foo/bar2
|
|
/foo/not*
|
|
/foo/bar1
|
|
/abc
|
|
devices
|
|
/dev/a*
|
|
/dev/abc/lv1
|
|
/dev/abc/lv2
|
|
/dev/abc/lv3
|
|
/dev/a*/not*
|
|
/dev/abc/lv1
|
|
/dev/abc/lv2
|
|
/dev/abc/lv3
|
|
/dev/a*/lv
|
|
/dev/abc/lv3
|
|
/dev/abc/lv1 /dev/a*
|
|
/dev/abc/lv2 /dev/a*
|
|
/dev/abc/lv3 /dev/a*
|
|
/dev/abc/lv1 /dev/abc/lv1
|
|
/dev/abc/lv1 /dev/abc/lv2
|
|
/dev/abc/lv1 /dev/abc/lv3
|
|
/dev/abc/lv2 /dev/abc/lv1
|
|
/dev/abc/lv2 /dev/abc/lv2
|
|
/dev/abc/lv2 /dev/abc/lv3
|
|
/dev/abc/lv3 /dev/abc/lv1
|
|
/dev/abc/lv3 /dev/abc/lv2
|
|
/dev/abc/lv3 /dev/abc/lv3
|
|
end" ]; then
|
|
echo "$0: error: unexpected output from glob command"
|
|
cat test-glob.out
|
|
exit 1
|
|
fi
|
|
|
|
rm test-glob.img test-glob.out
|