aboutsummaryrefslogtreecommitdiff
path: root/tests/chown/08.t
blob: a98f873ff91b1b218363346d0df5f123b2b86a5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/sh
# $FreeBSD: head/tools/regression/pjdfstest/tests/chown/08.t 211352 2010-08-15 21:24:17Z pjd $

desc="chown returns EPERM if the named file has its immutable or append-only flag set"

dir=`dirname $0`
. ${dir}/../misc.sh

require chflags

case "${os}:${fs}" in
FreeBSD:ZFS)
	echo "1..20"
	;;
FreeBSD:UFS)
	echo "1..44"
	;;
*)
	quick_exit
esac

n0=`namegen`

expect 0 create ${n0} 0644
expect 0 chflags ${n0} SF_IMMUTABLE
expect EPERM chown ${n0} 65534 65534
expect 0,0 stat ${n0} uid,gid
expect 0 chflags ${n0} none
expect 0 chown ${n0} 65534 65534
expect 65534,65534 stat ${n0} uid,gid
expect 0 unlink ${n0}

expect 0 create ${n0} 0644
expect 0 chflags ${n0} SF_NOUNLINK
expect 0 chown ${n0} 65534 65534
expect 65534,65534 stat ${n0} uid,gid
expect 0 chflags ${n0} none
expect 0 unlink ${n0}

case "${os}:${fs}" in
FreeBSD:ZFS)
	expect 0 create ${n0} 0644
	expect 0 chflags ${n0} SF_APPEND
	expect 0 chown ${n0} 65534 65534
	expect 65534,65534 stat ${n0} uid,gid
	expect 0 chflags ${n0} none
	expect 0 unlink ${n0}
	;;
FreeBSD:UFS)
	expect 0 create ${n0} 0644
	expect 0 chflags ${n0} SF_APPEND
	expect EPERM chown ${n0} 65534 65534
	expect 0,0 stat ${n0} uid,gid
	expect 0 chflags ${n0} none
	expect 0 chown ${n0} 65534 65534
	expect 65534,65534 stat ${n0} uid,gid
	expect 0 unlink ${n0}

	expect 0 create ${n0} 0644
	expect 0 chflags ${n0} UF_IMMUTABLE
	expect EPERM chown ${n0} 65534 65534
	expect 0,0 stat ${n0} uid,gid
	expect 0 chflags ${n0} none
	expect 0 chown ${n0} 65534 65534
	expect 65534,65534 stat ${n0} uid,gid
	expect 0 unlink ${n0}

	expect 0 create ${n0} 0644
	expect 0 chflags ${n0} UF_NOUNLINK
	expect 0 chown ${n0} 65534 65534
	expect 65534,65534 stat ${n0} uid,gid
	expect 0 chflags ${n0} none
	expect 0 unlink ${n0}

	expect 0 create ${n0} 0644
	expect 0 chflags ${n0} UF_APPEND
	expect EPERM chown ${n0} 65534 65534
	expect 0,0 stat ${n0} uid,gid
	expect 0 chflags ${n0} none
	expect 0 chown ${n0} 65534 65534
	expect 65534,65534 stat ${n0} uid,gid
	expect 0 unlink ${n0}
	;;
esac