Alvis-Pipeline

 view release on metacpan or  search on metacpan

t/1-read.t  view on Meta::CPAN

# $Id: 1-read.t,v 1.6 2005/10/24 12:33:47 mike Exp $

use strict;
use warnings;

use vars qw($ndocs);
BEGIN { $ndocs = 10 } # must be an even number
use Test::More tests => 3+$ndocs;

BEGIN { use_ok('Alvis::Pipeline') }

my $spooldir = "/tmp/xyzzy";
my $port = 31802;

my $pid = fork();
die "can't fork: $!" if $pid < 0;
if ($pid == 0) {
    # Child: generate documents and send them.
    generate_and_send();
    exit;
}

ok(1, "reading parent $$ spawned writing child with pid=$pid");

# Parent: read documents generated by child
my $pipe = new Alvis::Pipeline::Read(spooldir => $spooldir, port => $port,
				     loglevel => 0)
    or die "can't make read-pipe with spooldir='$spooldir', port='$port': $!";

for my $i (1..$ndocs) {
    my $doc = $pipe->read(1);
    ok($doc == $i*$i, "read document $i of $ndocs, got square '$doc'");
}

my $doc = $pipe->read();	# non-blocking
ok(!defined $doc, "document " . ($ndocs+1) . " not available");
$pipe->close();

system("rm -r $spooldir");


sub generate_and_send {
    sleep(1);			# Allow time for read-pipe to start up

    my $i = 1;
    for (1..2) {
	my $pipe = new Alvis::Pipeline::Write(host => "localhost",
					      port => $port)
	    or die "can't make write-pipe to localhost with port='$port': $!";

	for (1..$ndocs/2) {
	    my $doc = $i*$i;
	    $pipe->write($doc);
	    $i++;
	}

	$pipe->close();
	# Leave gap between first and second writing clients.
	sleep(11) if $i < $ndocs;
    }
}



( run in 1.580 second using v1.01-cache-2.11-cpan-5b529ec07f3 )