xref: /netbsd-src/tests/fs/tmpfs/t_remove.sh (revision 6b84fb92ac54d6e3148cc9c42fdd365ad2e46524)
1# $NetBSD: t_remove.sh,v 1.4 2010/06/04 08:39:40 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	atf_set "use.fs" "true"
37}
38single_body() {
39	test_mount
40
41	atf_check -s eq:1 -o empty -e empty test -f a
42	atf_check -s eq:0 -o empty -e empty touch a
43	atf_check -s eq:0 -o empty -e empty test -f a
44	atf_check -s eq:0 -o empty -e empty rm a
45	atf_check -s eq:1 -o empty -e empty test -f a
46
47	test_unmount
48}
49
50atf_test_case uchg
51uchg_head() {
52	atf_set "descr" "Checks that files with the uchg flag set cannot" \
53	                "be removed"
54	atf_set "require.user" "root"
55	atf_set "use.fs" "true"
56}
57uchg_body() {
58	test_mount
59
60	atf_check -s eq:0 -o empty -e empty touch a
61	atf_check -s eq:0 -o empty -e empty chflags uchg a
62	atf_check -s eq:1 -o empty -e ignore rm -f a
63	atf_check -s eq:0 -o empty -e empty chflags nouchg a
64	atf_check -s eq:0 -o empty -e empty rm a
65	atf_check -s eq:1 -o empty -e empty test -f a
66
67	test_unmount
68}
69
70atf_test_case dot
71dot_head() {
72	atf_set "descr" "Checks that '.' cannot be removed"
73	atf_set "require.user" "root"
74	atf_set "use.fs" "true"
75}
76dot_body() {
77	test_mount
78
79	atf_check -s eq:0 -o empty -e empty mkdir a
80	atf_check -s eq:1 -o empty -e ignore unlink a/.
81	atf_check -s eq:0 -o empty -e empty rmdir a
82
83	test_unmount
84}
85
86atf_test_case kqueue
87kqueue_head() {
88	atf_set "descr" "Removes a file and checks the kqueue events" \
89	                "raised"
90	atf_set "require.user" "root"
91	atf_set "use.fs" "true"
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