005791dbbb2bf0a300d85ed3a09ba9ae1cfa62ef
[xfstests-dev.git] / tests / btrfs / 001
1 #! /bin/bash
2 # FS QA Test No. btrfs/001
3 #
4 # Test btrfs's subvolume and snapshot support
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2011 Red Hat.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32
33 _cleanup()
34 {
35     rm -f $tmp.*
36 }
37
38 trap "_cleanup ; exit \$status" 0 1 2 3 15
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43 . ./common/filter.btrfs
44
45 # real QA test starts here
46 _supported_fs btrfs
47 _supported_os Linux
48 _require_scratch
49
50 _scratch_mkfs > /dev/null 2>&1
51 _scratch_mount
52
53 # First test basic snapshotting
54 echo "Creating file foo in root dir"
55 dd if=/dev/zero of=$SCRATCH_MNT/foo bs=1M count=1 &> /dev/null
56 echo "List root dir"
57 ls $SCRATCH_MNT
58 echo "Creating snapshot of root dir"
59 $BTRFS_UTIL_PROG subvolume snapshot $SCRATCH_MNT $SCRATCH_MNT/snap | _filter_scratch
60 echo "List root dir after snapshot"
61 ls $SCRATCH_MNT
62 echo "List snapshot dir"
63 ls $SCRATCH_MNT/snap
64 rm -f $SCRATCH_MNT/foo
65 echo "List root dir after rm of foo"
66 ls $SCRATCH_MNT
67 echo "List snapshot dir"
68 ls $SCRATCH_MNT/snap
69
70 # Test creating a normal subvolme
71 $BTRFS_UTIL_PROG subvolume create $SCRATCH_MNT/subvol | _filter_scratch
72 echo "Listing root dir"
73 ls $SCRATCH_MNT
74 echo "Listing subvol"
75 ls $SCRATCH_MNT/subvol
76
77 # Test setting a default mount
78 echo "Creating file bar in subvol"
79 dd if=/dev/zero of=$SCRATCH_MNT/subvol/bar bs=1M count=1 &> /dev/null
80 echo "Setting subvol to the default"
81 subvolid=$(_btrfs_get_subvolid $SCRATCH_MNT subvol)
82 $BTRFS_UTIL_PROG subvolume set-default $subvolid $SCRATCH_MNT | _filter_scratch
83 _scratch_cycle_mount
84 echo "List root dir which is now subvol"
85 ls $SCRATCH_MNT
86 _scratch_unmount
87 echo "Mounting sbuvolid=0 for the root dir"
88 _scratch_mount "-o subvolid=0"
89 echo "List root dir"
90 ls $SCRATCH_MNT
91 echo "Setting the root dir as the default again"
92 $BTRFS_UTIL_PROG subvolume set-default 0 $SCRATCH_MNT | _filter_scratch
93 _scratch_cycle_mount
94 echo "List root dir"
95 ls $SCRATCH_MNT
96
97 # Test listing the subvolumes
98 echo "Listing subvolumes"
99 $BTRFS_UTIL_PROG subvolume list $SCRATCH_MNT | awk '{ print $NF }'
100
101 # Delete the snapshot
102 $BTRFS_UTIL_PROG subvolume delete $SCRATCH_MNT/snap | _filter_btrfs_subvol_delete
103 echo "List root dir"
104 ls $SCRATCH_MNT
105 _scratch_cycle_mount
106 echo "List root dir"
107 ls $SCRATCH_MNT
108
109 status=0 ; exit