ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/handle/04_listen.t
Revision: 1.14
Committed: Sat May 24 23:15:14 2008 UTC (16 years, 1 month ago) by root
Content type: application/x-troff
Branch: MAIN
Changes since 1.13: +2 -2 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 elmex 1.1 #!/opt/perl/bin/perl
2 root 1.9
3 elmex 1.1 use strict;
4 root 1.9
5 root 1.2 use AnyEvent::Impl::Perl;
6 elmex 1.7 use AnyEvent::Handle;
7 root 1.12 use AnyEvent::Socket;
8 root 1.11 use AnyEvent;
9 elmex 1.1
10     my $lbytes;
11     my $rbytes;
12    
13 elmex 1.7 print "1..2\n";
14    
15 elmex 1.1 my $cv = AnyEvent->condvar;
16    
17 elmex 1.7 my $hdl;
18 root 1.9 my $port;
19 elmex 1.7
20 root 1.12 my $w = tcp_server undef, undef,
21 root 1.9 sub {
22     my ($fh, $host, $port) = @_;
23    
24     $hdl = AnyEvent::Handle->new (fh => $fh, on_eof => sub { $cv->broadcast });
25    
26 root 1.14 $hdl->push_read (chunk => 6, sub {
27 root 1.9 my ($hdl, $data) = @_;
28    
29     if ($data eq "TEST\015\012") {
30     print "ok 1 - server received client data\n";
31     } else {
32     print "not ok 1 - server received bad client data\n";
33     }
34    
35     $hdl->push_write ("BLABLABLA\015\012");
36     });
37     }, sub {
38     ($port) = Socket::unpack_sockaddr_in getsockname $_[0];
39 elmex 1.7
40 root 1.9 0
41     };
42 elmex 1.7
43 root 1.9 my $clhdl;
44 root 1.12 my $wc = tcp_connect localhost => $port, sub {
45 root 1.10 my ($fh) = @_
46     or die "connect: $!";
47 elmex 1.6
48 root 1.9 $clhdl = AnyEvent::Handle->new (fh => $fh, on_eof => sub { $cv->broadcast });
49 elmex 1.7
50     $clhdl->push_write ("TEST\015\012");
51 root 1.14 $clhdl->push_read (line => sub {
52 elmex 1.7 my ($clhdl, $line) = @_;
53    
54     if ($line eq 'BLABLABLA') {
55     print "ok 2 - client received response\n";
56     } else {
57     print "not ok 2 - client received bad response\n";
58 elmex 1.1 }
59    
60 elmex 1.7 $cv->broadcast;
61     });
62 root 1.9 };
63 elmex 1.1
64     $cv->wait;