df: Add --uuid option to print guest UUIDs instead of names (RHBZ#646821).
[libguestfs.git] / regressions / test-copy.sh
1 #!/bin/bash -
2 # libguestfs
3 # Copyright (C) 2010 Red Hat Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 # Test guestfish copy-in and copy-out commands.
20
21 # This test fails on some versions of mock which lack /dev/fd
22 # directory.  Skip this test in that case.
23
24 test -d /dev/fd || {
25     echo "$0: Skipping this test because /dev/fd is missing."
26     exit 0
27 }
28
29 set -e
30
31 rm -f test1.img
32 rm -rf copy
33
34 output=$(
35 ../fish/guestfish -N fs -m /dev/sda1 <<EOF
36 mkdir /data
37 # This creates a directory /data/images/
38 copy-in ../images /data
39 is-file /data/images/known-1
40 is-file /data/images/known-3
41 is-file /data/images/known-5
42 is-symlink /data/images/abssymlink
43 is-file /data/known-1
44 is-file /known-1
45 EOF
46 )
47
48 if [ "$output" != \
49 "true
50 true
51 true
52 true
53 false
54 false" ]; then
55     echo "$0: error: output of guestfish after copy-in command did not match expected output"
56     echo "$output"
57     exit 1
58 fi
59
60 mkdir copy
61
62 ../fish/guestfish --ro -a test1.img -m /dev/sda1 <<EOF
63 copy-out /data/images copy
64 EOF
65
66 if test ! -f copy/images/known-1 || \
67    test ! -f copy/images/known-3 || \
68    test ! -f copy/images/known-5 || \
69    test ! -L copy/images/abssymlink || \
70    test -f copy/known-1 || \
71    test -f known-1
72 then
73     echo "$0: error: copy-out command failed"
74     exit 1
75 fi
76
77 rm -f test1.img
78 rm -rf copy