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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines