File: unix.t

package info (click to toggle)
libnet-daemon-perl 0.38-1.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 184 kB
  • ctags: 38
  • sloc: perl: 752; makefile: 47
file content (71 lines) | stat: -rw-r--r-- 1,667 bytes parent folder | download | duplicates (9)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- perl -*-
#
#   $Id: unix.t,v 1.2 1999/08/12 14:28:59 joe Exp $
#

require 5.004;
use strict;

use IO::Socket ();
use Config ();
use Net::Daemon::Test ();

if ($^O eq "MSWin32") {
  print "1..0\n";
  exit 0;
}

my $numTests = 5;


my($handle, $port) = Net::Daemon::Test->Child($numTests,
					      $^X, '-Iblib/lib', '-Iblib/arch',
					      't/server', '--localpath=mysock',
					      '--mode=fork',
					      '--timeout', 60);

print "Making first connection to port $port...\n";
my $fh = IO::Socket::UNIX->new('Peer' => $port);
if (!$fh) {
    print "Failed to connect: " . ($@ || $!) . "\n";
}
printf("%s 1\n", $fh ? "ok" : "not ok");
printf("%s 2\n", $fh->close() ? "ok" : "not ok");
print "Making second connection to port $port...\n";
$fh = IO::Socket::UNIX->new('Peer' => $port);
if (!$fh) {
    print "Failed to connect: " . ($@ || $!) . "\n";
}
printf("%s 3\n", $fh ? "ok" : "not ok");
eval {
    for (my $i = 0;  $i < 20;  $i++) {
	print "Writing number: $i\n";
	if (!$fh->print("$i\n")  ||  !$fh->flush()) {
	    die "Client: Error while writing number $i: " . $fh->error()
		. " ($!)";
	}
	print "Written.\n";
	my($line) = $fh->getline();
	if (!defined($line)) {
	    die "Client: Error while reading number $i: " . $fh->error()
		. " ($!)";
	}
	if ($line !~ /(\d+)/  ||  $1 != $i*2) {
	    die "Wrong response, exptected " . ($i*2) . ", got $line";
	}
    }
};
if ($@) {
    print STDERR "$@\n";
    print "not ok 4\n";
} else {
    print "ok 4\n";
}
printf("%s 5\n", $fh->close() ? "ok" : "not ok");

END {
    if ($handle) { $handle->Terminate() }
    unlink "ndtest.prt" if -e "ndtest.prt";
    unlink "mysock" if -e "mysock";
    exit 0;
}