1# $NetBSD: t_remove.sh,v 1.5 2010/11/07 17:51:18 jmmv Exp $ 2# 3# Copyright (c) 2005, 2006, 2007, 2008 The NetBSD Foundation, Inc. 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: 9# 1. Redistributions of source code must retain the above copyright 10# notice, this list of conditions and the following disclaimer. 11# 2. Redistributions in binary form must reproduce the above copyright 12# notice, this list of conditions and the following disclaimer in the 13# documentation and/or other materials provided with the distribution. 14# 15# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 16# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 17# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 18# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 19# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 20# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 21# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 22# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 23# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 24# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 25# POSSIBILITY OF SUCH DAMAGE. 26# 27 28# 29# Verifies that the remove operation works. 30# 31 32atf_test_case single 33single_head() { 34 atf_set "descr" "Checks that file removal works" 35 atf_set "require.user" "root" 36} 37single_body() { 38 test_mount 39 40 atf_check -s eq:1 -o empty -e empty test -f a 41 atf_check -s eq:0 -o empty -e empty touch a 42 atf_check -s eq:0 -o empty -e empty test -f a 43 atf_check -s eq:0 -o empty -e empty rm a 44 atf_check -s eq:1 -o empty -e empty test -f a 45 46 test_unmount 47} 48 49atf_test_case uchg 50uchg_head() { 51 atf_set "descr" "Checks that files with the uchg flag set cannot" \ 52 "be removed" 53 atf_set "require.user" "root" 54} 55uchg_body() { 56 # Begin FreeBSD 57 atf_skip "this fails on FreeBSD with root - bug 212861" 58 # End FreeBSD 59 60 test_mount 61 62 atf_check -s eq:0 -o empty -e empty touch a 63 atf_check -s eq:0 -o empty -e empty chflags uchg a 64 atf_check -s eq:1 -o empty -e ignore rm -f a 65 atf_check -s eq:0 -o empty -e empty chflags nouchg a 66 atf_check -s eq:0 -o empty -e empty rm a 67 atf_check -s eq:1 -o empty -e empty test -f a 68 69 test_unmount 70} 71 72atf_test_case dot 73dot_head() { 74 atf_set "descr" "Checks that '.' cannot be removed" 75 atf_set "require.user" "root" 76} 77dot_body() { 78 test_mount 79 80 atf_check -s eq:0 -o empty -e empty mkdir a 81 atf_check -s eq:1 -o empty -e ignore unlink a/. 82 atf_check -s eq:0 -o empty -e empty rmdir a 83 84 test_unmount 85} 86 87atf_test_case kqueue 88kqueue_head() { 89 atf_set "descr" "Removes a file and checks the kqueue events" \ 90 "raised" 91 atf_set "require.user" "root" 92} 93kqueue_body() { 94 test_mount 95 96 atf_check -s eq:0 -o empty -e empty mkdir dir 97 atf_check -s eq:0 -o empty -e empty touch dir/a 98 echo 'rm dir/a' | kqueue_monitor 2 dir dir/a 99 kqueue_check dir/a NOTE_DELETE 100 kqueue_check dir NOTE_WRITE 101 atf_check -s eq:0 -o empty -e empty rmdir dir 102 103 test_unmount 104} 105 106atf_init_test_cases() { 107 . $(atf_get_srcdir)/../h_funcs.subr 108 . $(atf_get_srcdir)/h_funcs.subr 109 110 atf_add_test_case single 111 atf_add_test_case uchg 112 atf_add_test_case dot 113 atf_add_test_case kqueue 114} 115