File: 05progress.t

package info (click to toggle)
libwww-curl-perl 4.17-12
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 584 kB
  • sloc: perl: 1,909; makefile: 5
file content (25 lines) | stat: -rw-r--r-- 668 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use strict;
use Test::More tests => 3;
use WWW::Curl::Easy;

my ( $progress, $last );

sub progress_callback {
    my ( $clientp, $dltotal, $dlnow, $ultotal, $ulnow ) = @_;
    $last = $dlnow;
    $progress++;
    return 0;
}

SKIP: {
    skip 'You need to set CURL_TEST_URL', 3 unless $ENV{CURL_TEST_URL};
    my $curl = new WWW::Curl::Easy;
    $curl->setopt( CURLOPT_URL,              $ENV{CURL_TEST_URL} );
    $curl->setopt( CURLOPT_NOPROGRESS,       1 );
    $curl->setopt( CURLOPT_NOPROGRESS,       0 );
    $curl->setopt( CURLOPT_PROGRESSFUNCTION, \&progress_callback );
    my $code = $curl->perform;
    ok( $code == 0 );
    ok($progress);
    ok($last);
}