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.1 by elmex, Sun Apr 27 16:56:17 2008 UTC vs.
Revision 1.11 by root, Fri Jun 6 11:05:16 2008 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines