blob: d2e62c665b73f9ad5a261a810beb60c0eaa7ba22 (
plain)
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
|
#!/usr/bin/perl -w
# expect:
# - a new system user $USER
# - added to group nogroup
# - home directory /home/$USER
# - removal of home directory works
use strict;
use lib_test;
my $groupname = "nogroup";
my $username = find_unused_name();
my $cmd = "adduser --system $username";
if (!defined (getpwnam($username))) {
print "Testing $cmd... ";
`$cmd`;
my $error = ($?>>8);
if ($error) {
print "failed\n adduser returned an errorcode != 0 ($error)\n";
exit $error;
}
assert(check_user_exist ($username));
assert(check_homedir_exist($username));
assert(check_group_exist($groupname));
assert(check_user_in_group($username,$groupname));
print "ok\n";
}
$cmd = "deluser --remove-home $username";
if (defined (getpwnam($username))) {
my $homedir = (getpwnam($username))[7];
print "Testing $cmd... ";
`$cmd`;
my $error = ($?>>8);
if ($error) {
print "failed\n adduser returned an errorcode != 0 ($error)\n";
exit $error;
}
assert(check_user_not_exist ($username));
assert(check_homedir_not_exist($homedir));
print "ok\n";
}
|