File: perm.t

package info (click to toggle)
libhash-sharedmem-perl 0.005-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 600 kB
  • sloc: perl: 463; makefile: 3
file content (224 lines) | stat: -r--r--r-- 6,110 bytes parent folder | download
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
use warnings;
use strict;

use File::Temp 0.22 qw(tempdir);
use POSIX qw(
	S_IRUSR S_IWUSR S_IXUSR
	S_IRGRP S_IWGRP S_IXGRP
	S_IROTH S_IWOTH S_IXOTH
);
use Test::More tests => 91;

BEGIN { use_ok "Hash::SharedMem", qw(is_shash shash_open shash_set); }

my $tmpdir = tempdir(CLEANUP => 1);

sub perm_to_trad($) {
	my($p) = @_;
	my $t = 0;
	$t |= 0400 if $p & S_IRUSR;
	$t |= 0200 if $p & S_IWUSR;
	$t |= 0100 if $p & S_IXUSR;
	$t |= 0040 if $p & S_IRGRP;
	$t |= 0020 if $p & S_IWGRP;
	$t |= 0010 if $p & S_IXGRP;
	$t |= 0004 if $p & S_IROTH;
	$t |= 0002 if $p & S_IWOTH;
	$t |= 0001 if $p & S_IXOTH;
	return $t;
}

sub perm_from_trad($) {
	my($t) = @_;
	my $p = 0;
	$p |= S_IRUSR if $t & 0400;
	$p |= S_IWUSR if $t & 0200;
	$p |= S_IXUSR if $t & 0100;
	$p |= S_IRGRP if $t & 0040;
	$p |= S_IWGRP if $t & 0020;
	$p |= S_IXGRP if $t & 0010;
	$p |= S_IROTH if $t & 0004;
	$p |= S_IWOTH if $t & 0002;
	$p |= S_IXOTH if $t & 0001;
	return $p;
}

sub mkd($) {
	my($fn) = @_;
	mkdir $fn or die "can't create $fn: $!";
}

sub chm($$) {
	my($mode, $fn) = @_;
	chmod $mode, $fn or die "can't chmod $fn: $!";
}

sub file_perm_trad($) {
	my($fn) = @_;
	my @st = stat $fn;
	@st or die "can't stat $fn: $!";
	return perm_to_trad($st[2]);
}

umask(perm_from_trad(0000));
my $sh = shash_open("$tmpdir/t0", "rwc");
ok $sh;
ok is_shash($sh);
is file_perm_trad("$tmpdir/t0"), 0777;
is file_perm_trad("$tmpdir/t0/iNmv0,m\$%3"), 0666;
ok !-f "$tmpdir/t0/&\"JBLMEgGm0000000000000001";
shash_set($sh, "a", "b");
$sh = undef;
is file_perm_trad("$tmpdir/t0"), 0777;
is file_perm_trad("$tmpdir/t0/iNmv0,m\$%3"), 0666;
is file_perm_trad("$tmpdir/t0/&\"JBLMEgGm0000000000000001"), 0666;

umask(perm_from_trad(0000));
$sh = shash_open("$tmpdir/t1", "rwc");
ok $sh;
ok is_shash($sh);
$sh = undef;
is file_perm_trad("$tmpdir/t1"), 0777;
is file_perm_trad("$tmpdir/t1/iNmv0,m\$%3"), 0666;
ok !-f "$tmpdir/t1/&\"JBLMEgGm0000000000000001";
$sh = shash_open("$tmpdir/t1", "rw");
ok $sh;
ok is_shash($sh);
shash_set($sh, "a", "b");
$sh = undef;
is file_perm_trad("$tmpdir/t1"), 0777;
is file_perm_trad("$tmpdir/t1/iNmv0,m\$%3"), 0666;
is file_perm_trad("$tmpdir/t1/&\"JBLMEgGm0000000000000001"), 0666;

umask(perm_from_trad(0000));
$sh = shash_open("$tmpdir/t2", "rwc");
ok $sh;
ok is_shash($sh);
$sh = undef;
is file_perm_trad("$tmpdir/t2"), 0777;
is file_perm_trad("$tmpdir/t2/iNmv0,m\$%3"), 0666;
ok !-f "$tmpdir/t2/&\"JBLMEgGm0000000000000001";
umask(perm_from_trad(0077));
$sh = shash_open("$tmpdir/t2", "rw");
ok $sh;
ok is_shash($sh);
shash_set($sh, "a", "b");
$sh = undef;
is file_perm_trad("$tmpdir/t2"), 0777;
is file_perm_trad("$tmpdir/t2/iNmv0,m\$%3"), 0666;
is file_perm_trad("$tmpdir/t2/&\"JBLMEgGm0000000000000001"), 0666;

umask(perm_from_trad(0000));
$sh = shash_open("$tmpdir/t3", "rwc");
ok $sh;
ok is_shash($sh);
$sh = undef;
is file_perm_trad("$tmpdir/t3"), 0777;
is file_perm_trad("$tmpdir/t3/iNmv0,m\$%3"), 0666;
ok !-f "$tmpdir/t3/&\"JBLMEgGm0000000000000001";
umask(perm_from_trad(0777));
$sh = shash_open("$tmpdir/t3", "rw");
ok $sh;
ok is_shash($sh);
shash_set($sh, "a", "b");
$sh = undef;
is file_perm_trad("$tmpdir/t3"), 0777;
is file_perm_trad("$tmpdir/t3/iNmv0,m\$%3"), 0666;
is file_perm_trad("$tmpdir/t3/&\"JBLMEgGm0000000000000001"), 0666;

umask(perm_from_trad(0077));
$sh = shash_open("$tmpdir/t4", "rwc");
ok $sh;
ok is_shash($sh);
$sh = undef;
is file_perm_trad("$tmpdir/t4"), 0700;
is file_perm_trad("$tmpdir/t4/iNmv0,m\$%3"), 0600;
ok !-f "$tmpdir/t4/&\"JBLMEgGm0000000000000001";
umask(perm_from_trad(0000));
$sh = shash_open("$tmpdir/t4", "rw");
ok $sh;
ok is_shash($sh);
shash_set($sh, "a", "b");
$sh = undef;
is file_perm_trad("$tmpdir/t4"), 0700;
is file_perm_trad("$tmpdir/t4/iNmv0,m\$%3"), 0600;
is file_perm_trad("$tmpdir/t4/&\"JBLMEgGm0000000000000001"), 0600;

umask(perm_from_trad(0022));
$sh = shash_open("$tmpdir/t5", "rwc");
ok $sh;
ok is_shash($sh);
$sh = undef;
is file_perm_trad("$tmpdir/t5"), 0755;
is file_perm_trad("$tmpdir/t5/iNmv0,m\$%3"), 0644;
ok !-f "$tmpdir/t5/&\"JBLMEgGm0000000000000001";
umask(perm_from_trad(0000));
$sh = shash_open("$tmpdir/t5", "rw");
ok $sh;
ok is_shash($sh);
shash_set($sh, "a", "b");
$sh = undef;
is file_perm_trad("$tmpdir/t5"), 0755;
is file_perm_trad("$tmpdir/t5/iNmv0,m\$%3"), 0644;
is file_perm_trad("$tmpdir/t5/&\"JBLMEgGm0000000000000001"), 0644;

umask(perm_from_trad(0027));
$sh = shash_open("$tmpdir/t6", "rwc");
ok $sh;
ok is_shash($sh);
$sh = undef;
is file_perm_trad("$tmpdir/t6"), 0750;
is file_perm_trad("$tmpdir/t6/iNmv0,m\$%3"), 0640;
ok !-f "$tmpdir/t6/&\"JBLMEgGm0000000000000001";
umask(perm_from_trad(0750));
$sh = shash_open("$tmpdir/t6", "rw");
ok $sh;
ok is_shash($sh);
shash_set($sh, "a", "b");
$sh = undef;
is file_perm_trad("$tmpdir/t6"), 0750;
is file_perm_trad("$tmpdir/t6/iNmv0,m\$%3"), 0640;
is file_perm_trad("$tmpdir/t6/&\"JBLMEgGm0000000000000001"), 0640;

umask(perm_from_trad(0077));
mkd "$tmpdir/t7";
is file_perm_trad("$tmpdir/t7"), 0700;
umask(perm_from_trad(0000));
$sh = shash_open("$tmpdir/t7", "rwc");
ok $sh;
ok is_shash($sh);
$sh = undef;
is file_perm_trad("$tmpdir/t7"), 0700;
is file_perm_trad("$tmpdir/t7/iNmv0,m\$%3"), 0666;
ok !-f "$tmpdir/t7/&\"JBLMEgGm0000000000000001";
umask(perm_from_trad(0007));
$sh = shash_open("$tmpdir/t7", "rw");
ok $sh;
ok is_shash($sh);
shash_set($sh, "a", "b");
$sh = undef;
is file_perm_trad("$tmpdir/t7"), 0700;
is file_perm_trad("$tmpdir/t7/iNmv0,m\$%3"), 0666;
is file_perm_trad("$tmpdir/t7/&\"JBLMEgGm0000000000000001"), 0666;

umask(perm_from_trad(0000));
$sh = shash_open("$tmpdir/t8", "rwc");
ok $sh;
ok is_shash($sh);
$sh = undef;
is file_perm_trad("$tmpdir/t8"), 0777;
is file_perm_trad("$tmpdir/t8/iNmv0,m\$%3"), 0666;
ok !-f "$tmpdir/t8/&\"JBLMEgGm0000000000000001";
chm perm_from_trad(0770), "$tmpdir/t8/iNmv0,m\$%3";
is file_perm_trad("$tmpdir/t8/iNmv0,m\$%3"), 0770;
umask(perm_from_trad(0077));
$sh = shash_open("$tmpdir/t8", "rw");
ok $sh;
ok is_shash($sh);
shash_set($sh, "a", "b");
$sh = undef;
is file_perm_trad("$tmpdir/t8"), 0777;
is file_perm_trad("$tmpdir/t8/iNmv0,m\$%3"), 0770;
is file_perm_trad("$tmpdir/t8/&\"JBLMEgGm0000000000000001"), 0660;

1;