Home | History | Annotate | Line # | Download | only in fss
t_fss.sh revision 1.5
      1 # $NetBSD: t_fss.sh,v 1.5 2022/11/30 17:49:59 martin 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_body() {
     39 
     40 # verify fss is available (or loadable as a module)
     41 
     42 	fssconfig -l /dev/fss0 > /dev/null || atf_skip "FSS not available"
     43 
     44 # create of mount-points for the file system and snapshot
     45 
     46 	mkdir ./m1
     47 	mkdir ./m2
     48 
     49 # create a small 4MB file, treat it as a disk, init a file-system on it,
     50 # and mount it
     51 
     52 	dd if=/dev/zero of=./image bs=32k count=64
     53 	vndconfig -c ${vnddev} ./image
     54 	newfs -I ${vnd}
     55 	mount ${vnd} ./m1
     56 
     57 	echo "${orig_data}" > ./m1/text
     58 
     59 # configure and mount a snapshot of the file system
     60 
     61 	fssconfig -c fss0 ./m1 ./backup
     62 	mount -o rdonly /dev/fss0 ./m2
     63 
     64 # Modify the data on the underlying file system
     65 
     66 	echo "${repl_data}" > ./m1/text || abort
     67 
     68 # Verify that original data is still visible in the snapshot
     69 
     70 	read test_data < ./m2/text
     71 	atf_check_equal "${orig_data}" "${test_data}"
     72 }
     73 
     74 basic_cleanup() {
     75 # Unmount our temporary stuff
     76 	umount /dev/fss0	|| true
     77 	fssconfig -u fss0	|| true
     78 	umount ${vnd}		|| true
     79 	vndconfig -u ${vnddev}	|| true
     80 }
     81 
     82 atf_init_test_cases()
     83 {
     84         atf_add_test_case basic
     85 }
     86