t_fss.sh revision 1.7 1 # $NetBSD: t_fss.sh,v 1.7 2025/04/19 02:07:43 rin Exp $
2 #
3 # Copyright (c) 2006, 2007, 2008 The NetBSD Foundation, Inc.
4 # All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
8 # 1. Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright
11 # notice, this list of conditions and the following disclaimer in the
12 # documentation and/or other materials provided with the distribution.
13 #
14 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
15 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
16 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
18 # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24 # POSSIBILITY OF SUCH DAMAGE.
25 #
26
27 #
28 # Verify basic operation of fss(4) file system snapshot device
29 #
30
31 vnddev=vnd0
32 vnd=/dev/${vnddev}
33
34 orig_data="Original data"
35 repl_data="Replacement data"
36
37 atf_test_case basic cleanup
38 basic_head() {
39 atf_set "descr" "Verify basic operation of fss(4) file system " \
40 "snapshot device"
41 }
42
43 basic_body() {
44 if [ $(uname -p) = vax ]; then
45 atf_skip "port-vax/59287 vnd(4) can cause kernel crash"
46 fi
47
48 # verify fss is available (or loadable as a module)
49
50 fssconfig -l /dev/fss0 > /dev/null || atf_skip "FSS not available"
51
52 # create of mount-points for the file system and snapshot
53
54 mkdir ./m1
55 mkdir ./m2
56
57 # create a small 4MB file, treat it as a disk, init a file-system on it,
58 # and mount it
59
60 dd if=/dev/zero of=./image bs=32k count=64
61 vndconfig -c ${vnddev} ./image
62 newfs -I ${vnd}
63 mount ${vnd} ./m1
64
65 echo "${orig_data}" > ./m1/text
66
67 # configure and mount a snapshot of the file system
68
69 fssconfig -c fss0 ./m1 ./backup
70 mount -o rdonly /dev/fss0 ./m2
71
72 # Modify the data on the underlying file system
73
74 echo "${repl_data}" > ./m1/text || abort
75
76 # Verify that original data is still visible in the snapshot
77
78 read test_data < ./m2/text
79 atf_check_equal "${orig_data}" "${test_data}"
80 }
81
82 basic_cleanup() {
83 # Unmount our temporary stuff
84 umount /dev/fss0 || true
85 fssconfig -u fss0 || true
86 umount ${vnd} || true
87 vndconfig -u ${vnddev} || true
88 }
89
90 atf_init_test_cases()
91 {
92 atf_add_test_case basic
93 }
94