make lib/User/pwent.t run on VMS
[p5sagit/p5-mst-13.2.git] / lib / User / pwent.t
CommitLineData
c7506216 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;
8a1f71b2 14 # VMS's pwd.h struct passwd conflicts with the one in vmsish.h
15 $haspw = 0 unless ( $Config{'i_pwd'} eq 'define' || $^O eq 'VMS' );
c7506216 16 unless ($haspw) { print "1..0 # Skip: no pwd.h\n"; exit 0 }
17}
18
19BEGIN {
8a1f71b2 20 our $uid = 0;
21 # On VMS getpwuid(0) may return [$gid,0] UIC info (which may not exist).
22 # It is better to use the $< uid for testing on VMS instead.
23 if ( $^O eq 'VMS' ) { $uid = $< ; }
24 our @pwent = getpwuid $uid; # This is the function getpwuid.
25 unless (@pwent) { print "1..0 # Skip: no uid $uid\n"; exit 0 }
c7506216 26}
27
28print "1..9\n";
29
30use User::pwent;
31
32print "ok 1\n";
33
8a1f71b2 34my $pwent = getpwuid $uid; # This is the OO getpwuid.
c7506216 35
8a1f71b2 36my $uid_expect = $uid;
37if ( $^O eq 'cygwin' ) { $uid_expect = 500; } # go figure
38
39print "not " unless $pwent->uid == $uid_expect ;
c7506216 40print "ok 2\n";
41
598f41c0 42print "not " unless $pwent->name eq $pwent[0];
c7506216 43print "ok 3\n";
44
598f41c0 45if ($^O eq 'os390') {
46 print "not "
47 unless not defined $pwent->passwd &&
48 $pwent[1] eq '0'; # go figure
49} else {
50 print "not " unless $pwent->passwd eq $pwent[1];
51}
c7506216 52print "ok 4\n";
53
54print "not " unless $pwent->uid == $pwent[2];
55print "ok 5\n";
56
57print "not " unless $pwent->gid == $pwent[3];
58print "ok 6\n";
59
60# The quota and comment fields are unportable.
61
62print "not " unless $pwent->gecos eq $pwent[6];
63print "ok 7\n";
64
65print "not " unless $pwent->dir eq $pwent[7];
66print "ok 8\n";
67
68print "not " unless $pwent->shell eq $pwent[8];
69print "ok 9\n";
70
71# The expire field is unportable.
72
73# Testing pretty much anything else is unportable:
74# there maybe more than one username with uid 0;
75# uid 0's home directory may be "/" or "/root' or something else,
76# and so on.
77