ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/handle/01_readline.t
(Generate patch)

Comparing AnyEvent/t/handle/01_readline.t (file contents):
Revision 1.7 by root, Sat May 24 23:15:14 2008 UTC vs.
Revision 1.12 by root, Thu Aug 21 23:48:35 2008 UTC

1#!perl 1#!perl
2
3# actually tests a few other read/write types as well
2 4
3use strict; 5use strict;
4 6
5use AnyEvent::Impl::Perl; 7use AnyEvent::Impl::Perl;
6use AnyEvent::Handle; 8use AnyEvent::Handle;
7use Test::More tests => 4; 9use Test::More tests => 8;
8use Socket; 10use Socket;
11use Errno;
9 12
10{ 13{
11 my $cv = AnyEvent->condvar; 14 my $cv = AnyEvent->condvar;
12 15
13 socketpair my $rd, my $wr, AF_UNIX, SOCK_STREAM, PF_UNSPEC; 16 socketpair my $rd, my $wr, AF_UNIX, SOCK_STREAM, PF_UNSPEC;
14 17
15 my $rd_ae = AnyEvent::Handle->new ( 18 my $rd_ae = AnyEvent::Handle->new (
16 fh => $rd, 19 fh => $rd,
17 on_eof => sub { $cv->broadcast }, 20 on_error => sub {
21 ok ($! == &Errno::EPIPE);
22 $cv->broadcast;
23 },
24 on_eof => sub {
25 ok (0, "got eof");
26 },
18 ); 27 );
19 28
20 my $concat; 29 my $concat;
21 30
22 $rd_ae->push_read (line => sub { 31 $rd_ae->push_read (line => sub {
26 $_[0]->push_read (line => $cb); 35 $_[0]->push_read (line => $cb);
27 }; 36 };
28 $_[0]->push_read (line => $cb); 37 $_[0]->push_read (line => $cb);
29 }); 38 });
30 39
31 syswrite $wr, "A\nBC\nDEF\nG\n" . ("X" x 113) . "\n"; 40 syswrite $wr, "A\012BC\012DEF\012G\012" . ("X" x 113) . "\012";
32 close $wr; 41 close $wr;
33 42
34 $cv->wait; 43 $cv->wait;
35 is ($concat, "BCDEFG" . ("X" x 113), 'first lines were read correctly'); 44 is ($concat, "BCDEFG" . ("X" x 113), 'initial lines were read correctly');
36} 45}
37 46
38{ 47{
39 my $cv = AnyEvent->condvar; 48 my $cv = AnyEvent->condvar;
40 49
53 } 62 }
54 ); 63 );
55 64
56 my $wr_ae = new AnyEvent::Handle fh => $wr, on_eof => sub { die }; 65 my $wr_ae = new AnyEvent::Handle fh => $wr, on_eof => sub { die };
57 66
67 undef $wr;
68 undef $rd;
69
58 $wr_ae->push_write (netstring => "0:xx,,"); 70 $wr_ae->push_write (netstring => "0:xx,,");
71 $wr_ae->push_write (netstring => "");
72 $wr_ae->push_write (storable => [4,3,2]);
73 $wr_ae->push_write (packstring => "w", "hallole" x 99999); # try to exhaust socket buffer here
59 $wr_ae->push_write ("A\nBC\nDEF\nG\n" . ("X" x 113) . "\n"); 74 $wr_ae->push_write ("A\012BC\012DEF\nG\012" . ("X" x 113) . "\012");
60 undef $wr;
61 undef $wr_ae; 75 undef $wr_ae;
62 76
77 $rd_ae->push_read (netstring => sub { is ($_[1], "0:xx,,") });
63 $rd_ae->push_read (netstring => sub { 78 $rd_ae->push_read (netstring => sub { is ($_[1], "") });
64 is ($_[1], "0:xx,,"); 79 $rd_ae->push_read (storable => "w", sub { is ("@{$_[1]}", "4 3 2") });
65 }); 80 $rd_ae->push_read (packstring => "w", sub { is ($_[1], "hallole" x 99999) });
66 81
67 $cv->wait; 82 $cv->wait;
68 83
69 is ($concat, "A:BC:DEF:G:" . ("X" x 113) . ":", 'second lines were read correctly'); 84 is ($concat, "A:BC:DEF:G:" . ("X" x 113) . ":", 'second set of lines were read correctly');
70} 85}
86

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines