This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
OS/390 USS has a different idea of the pw* functions.
[perl5.git] / lib / User / pwent.t
CommitLineData
c7506216
JH
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6}
7
8BEGIN {
9 our $haspw;
10 eval { my @n = getpwuid 0 };
11 $haspw = 1 unless $@ && $@ =~ /unimplemented/;
12 unless ($haspw) { print "1..0 # Skip: no getpwuid\n"; exit 0 }
13 use Config;
14 $haspw = 0 unless $Config{'i_pwd'} eq 'define';
15 unless ($haspw) { print "1..0 # Skip: no pwd.h\n"; exit 0 }
16}
17
18BEGIN {
19 our @pwent = getpwuid 0; # This is the function getpwuid.
20 unless (@pwent) { print "1..0 # Skip: no uid 0\n"; exit 0 }
21}
22
23print "1..9\n";
24
25use User::pwent;
26
27print "ok 1\n";
28
29my $pwent = getpwuid 0; # This is the OO getpwuid.
30
0da7f12a
JH
31print "not " unless $pwent->uid == 0 ||
32 ($^O eq 'cygwin' && $pwent->uid == 500); # go figure
c7506216
JH
33print "ok 2\n";
34
598f41c0 35print "not " unless $pwent->name eq $pwent[0];
c7506216
JH
36print "ok 3\n";
37
598f41c0
JH
38if ($^O eq 'os390') {
39 print "not "
40 unless not defined $pwent->passwd &&
41 $pwent[1] eq '0'; # go figure
42} else {
43 print "not " unless $pwent->passwd eq $pwent[1];
44}
c7506216
JH
45print "ok 4\n";
46
47print "not " unless $pwent->uid == $pwent[2];
48print "ok 5\n";
49
50print "not " unless $pwent->gid == $pwent[3];
51print "ok 6\n";
52
53# The quota and comment fields are unportable.
54
55print "not " unless $pwent->gecos eq $pwent[6];
56print "ok 7\n";
57
58print "not " unless $pwent->dir eq $pwent[7];
59print "ok 8\n";
60
61print "not " unless $pwent->shell eq $pwent[8];
62print "ok 9\n";
63
64# The expire field is unportable.
65
66# Testing pretty much anything else is unportable:
67# there maybe more than one username with uid 0;
68# uid 0's home directory may be "/" or "/root' or something else,
69# and so on.
70