blob: 5695bb7db4a82df2805b2f768559c5820f9176b8 (
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
|
#!/usr/bin/perl -w
# expect:
# - a new user $USER with uid $want_uid
# - added to group nogroup
# - a home directory /home/$USER
use strict;
use lib_test;
my $groupname = "nogroup";
my $username = find_unused_name();
my $want_uid = find_unused_uid("system");
my $cmd = "adduser --system --uid $want_uid $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, $want_uid));
assert(check_homedir_exist ($username));
assert(check_group_exist($groupname));
assert(check_user_in_group($username,$groupname));
print "ok\n";
}
|