mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
Since the previous commit introduced configuration sections, we can now group more configuration settings together in these sections. The largest part of this commit is a simple renaming of fields in the struct.
54 lines
1.9 KiB
Bash
Executable File
54 lines
1.9 KiB
Bash
Executable File
#!/bin/bash -
|
|
# libguestfs virt-p2v test script
|
|
# Copyright (C) 2015 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 virt-p2v command line parsing in non-GUI mode.
|
|
|
|
set -e
|
|
|
|
$TEST_FUNCTIONS
|
|
skip_if_skipped
|
|
|
|
out=test-virt-p2v-cmdline.out
|
|
rm -f $out
|
|
|
|
# The Linux kernel command line.
|
|
$VG virt-p2v --cmdline='p2v.server=localhost p2v.port=123 p2v.username=user p2v.password=secret p2v.skip_test_connection p2v.name=test p2v.vcpus=4 p2v.memory=1G p2v.disks=sda,sdb,sdc p2v.removable=sdd p2v.interfaces=eth0,eth1 p2v.o=local p2v.oa=sparse p2v.oc=qemu:///session p2v.of=raw p2v.os=/var/tmp p2v.network=em1:wired,other p2v.dump_config_and_exit' > $out
|
|
|
|
# For debugging purposes.
|
|
cat $out
|
|
|
|
# Check the output contains what we expect.
|
|
grep "^remote\.server.*localhost" $out
|
|
grep "^remote\.port.*123" $out
|
|
grep "^auth\.username.*user" $out
|
|
grep "^auth\.sudo.*false" $out
|
|
grep "^guestname.*test" $out
|
|
grep "^vcpus.*4" $out
|
|
grep "^memory.*"$((1024*1024*1024)) $out
|
|
grep "^disks.*sda sdb sdc" $out
|
|
grep "^removable.*sdd" $out
|
|
grep "^interfaces.*eth0 eth1" $out
|
|
grep "^network_map.*em1:wired other" $out
|
|
grep "^output\.type.*local" $out
|
|
grep "^output\.allocation.*sparse" $out
|
|
grep "^output\.connection.*qemu:///session" $out
|
|
grep "^output\.format.*raw" $out
|
|
grep "^output\.storage.*/var/tmp" $out
|
|
|
|
rm $out
|