This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate mainline
[perl5.git] / ext / Sys / Syslog / syslog.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     @INC = '../lib';
6     require Config; import Config;
7     if ($Config{'extensions'} !~ /\bSyslog\b/) {
8         print "1..0 # Skip: Sys::Syslog was not built\n";
9         exit 0;
10     }
11
12     require Socket;
13
14     # This code inspired by Sys::Syslog::connect():
15     require Sys::Hostname;
16     my ($host_uniq) = Sys::Hostname::hostname();
17     my ($host)      = $host_uniq =~ /([A-Za-z0-9_.-]+)/;
18
19     if (! defined Socket::inet_aton($host)) {
20         print "1..0 # Skip: Can't lookup $host\n";
21         exit 0;
22     }
23 }
24
25 BEGIN {
26   eval {require Sys::Syslog} or do {
27     if ($@ =~ /Your vendor has not/) {
28       print "1..0 # Skip: missing macros\n";
29       exit 0;
30     }
31   }
32 }
33
34 use Sys::Syslog qw(:DEFAULT setlogsock);
35
36 # Test this to 1 if your syslog accepts udp connections.
37 # Most don't (or at least shouldn't)
38 my $Test_Syslog_INET = 0;
39
40 my $test_string = "uid $< is testing perl $] syslog capabilities";
41
42 print "1..6\n";
43
44 if (Sys::Syslog::_PATH_LOG()) {
45     if (-e Sys::Syslog::_PATH_LOG()) {
46         print defined(eval { setlogsock('unix') }) ? "ok 1\n" : "not ok 1 # $!\n";
47         print defined(eval { openlog('perl', 'ndelay', 'local0') }) ? "ok 2\n" : "not ok 2 # $!\n";
48         print defined(eval { syslog('info', $test_string ) }) ? "ok 3\n" : "not ok 3 # $!\n";
49     }
50     else {
51         for (1..3) {
52             print
53                 "ok $_ # Skip: file ",
54                 Sys::Syslog::_PATH_LOG(),
55                 " does not exist\n";
56         }
57     }
58 }
59 else {
60     for (1..3) { print "ok $_ # Skip: _PATH_LOG unavailable\n" }
61 }
62
63 if( $Test_Syslog_INET ) {
64     print defined(eval { setlogsock('inet') }) ? "ok 4\n" 
65                                                : "not ok 4\n";
66     print defined(eval { openlog('perl', 'ndelay', 'local0') }) ? "ok 5\n" 
67                                                                 : "not ok 5 # $!\n";
68     print defined(eval { syslog('info', $test_string ) }) ? "ok 6\n" 
69                                                    : "not ok 6 # $!\n";
70 }
71 else {
72     print "ok $_ # Skip: assuming syslog doesn't accept inet connections\n" 
73       foreach (4..6);
74 }