Net-Curl
view release on metacpan or search on metacpan
t/old-02callbacks.t view on Meta::CPAN
#!perl
use strict;
use warnings;
use lib 'inc';
use Test::More;
use Test::HTTP::Server;
use File::Temp qw/tempfile/;
use Net::Curl::Easy qw(:constants);
my $server = Test::HTTP::Server->new;
plan skip_all => "Could not run http server\n" unless $server;
plan tests => 6;
# Init the curl session
my $curl = Net::Curl::Easy->new();
ok($curl, 'Curl session initialize returns something');
ok(ref($curl) eq 'Net::Curl::Easy', 'Curl session looks like an object from the Net::Curl::Easy module');
$curl->setopt(CURLOPT_NOPROGRESS, 1);
$curl->setopt(CURLOPT_FOLLOWLOCATION, 1);
$curl->setopt(CURLOPT_TIMEOUT, 30);
my $head = tempfile();
$curl->setopt(CURLOPT_WRITEHEADER, $head);
my $body = tempfile();
$curl->setopt(CURLOPT_FILE,$body);
$curl->setopt(CURLOPT_URL, $server->uri);
my $header_called = 0;
sub header_callback {
$header_called = 1;
$_[0]->{head} = 1;
return length($_[1])
};
my $body_called = 0;
sub body_callback {
$body_called++;
$_[0]->{body}++;
return length($_[1])
};
ok (! $curl->setopt(CURLOPT_HEADERFUNCTION, \&header_callback), "CURLOPT_HEADERFUNCTION set");
ok (! $curl->setopt(CURLOPT_WRITEFUNCTION, \&body_callback), "CURLOPT_WRITEFUNCTION set");
$curl->perform();
ok($curl->{head}, "CURLOPT_HEADERFUNCTION callback was used");
ok($curl->{body}, "CURLOPT_WRITEFUNCTION callback was used");
( run in 1.110 second using v1.01-cache-2.11-cpan-a49fcb8fa48 )