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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
|
use 5.008004;
use lib 't/lib';
use MyTest::FauxFetchCommand;
use MyTest::HTTP;
use MyTest::CaptureNote;
use Test2::V0 -no_srand => 1;
use Test::Alien::Build;
use Alien::Build::Plugin::Fetch::CurlCommand;
use Path::Tiny qw( path );
use Capture::Tiny ();
use JSON::PP ();
use File::Which qw( which );
use Alien::Build::Util qw( _dump );
use JSON::PP qw( decode_json );
$Alien::Build::Plugin::Fetch::CurlCommand::VERSION = '1.19';
# This test makes real http request against localhost only
$ENV{ALIEN_DOWNLOAD_RULE} = 'warn';
subtest 'fetch from http' => sub {
my $config = test_config 'httpd';
skip_all 'Test requires httpd config' unless $config;
my $base = $config->{url};
my $build = alienfile_ok qq{
use alienfile;
meta->prop->{start_url} = '$base/html_test.html';
probe sub { 'share' };
share {
plugin 'Fetch::CurlCommand';
};
};
alien_install_type_is 'share';
subtest 'directory listing' => sub {
my $list = capture_note { $build->fetch };
is(
$list,
hash {
field type => 'html';
field base => "$base/html_test.html";
field content => "<html><head><title>Hello World</title></head><body><p>Hello World</p></body></html>\n";
field protocol => 'http';
end;
},
'list'
);
};
subtest 'file' => sub {
my $file = capture_note { $build->fetch("$base/foo-1.01.tar") };
is(
$file,
hash {
field type => 'file';
field filename => 'foo-1.01.tar';
field path => T();
field protocol => 'http';
end;
},
'file meta',
);
is(
scalar path($file->{path})->slurp,
"content:foo-1.01\n",
'file content',
);
};
subtest '404' => sub {
my($file, $error) = capture_note {
my $file = eval {
$build->fetch("$base/bogus.html");
};
($file, $@);
};
isnt $error, '', 'throws error';
note "error is: $error";
};
};
#subtest 'fetch from ftp' => sub {
#
# my $config = test_config 'ftpd';
#
# skip_all 'Test requires ftp config' unless $config;
#
# my $base = $config->{url};
#
# my $build = alienfile_ok qq{
# use alienfile;
#
# meta->prop->{start_url} = '$base/html_test.html';
#
# probe sub { 'share' };
#
# share {
# plugin 'Fetch::CurlCommand';
# };
# };
#
# alien_install_type_is 'share';
#
# subtest 'get directory listing with trailing slash' => sub {
#
# my $list = capture_note { $build->fetch("$base/") };
#
# is(
# $list,
# hash {
# field type => 'list';
# field list => array {
# foreach my $filename (qw( foo-1.00.tar foo-1.01.tar foo-1.02.tar html_test.html ))
# {
# item hash {
# field filename => $filename;
# field url => "$base/$filename";
# end;
# };
# };
# end;
# };
# },
# 'list',
# );
#
# };
#
# subtest 'get non-existant directory listing with trailing slash' => sub {
#
# my $error = capture_note {
# eval {
# $build->fetch("$base/bogus/")
# };
# $@;
# };
#
# isnt $error, '', 'throws error';
# note "error = $error";
#
# };
#
# subtest 'get file' => sub {
#
# my $file = capture_note { $build->fetch("$base/foo-1.01.tar") };
#
# is(
# $file,
# hash {
# field type => 'file';
# field filename => 'foo-1.01.tar';
# field path => T();
# end;
# },
# 'file meta',
# );
#
# is(
# scalar path($file->{path})->slurp,
# "content:foo-1.01\n",
# 'file content',
# );
#
# };
#
# subtest 'get missing file' => sub {
#
# my($error) = capture_note {
# eval {
# $build->fetch("$base/bogus.txt");
# };
# $@;
# };
#
# isnt $error, '', 'throws error';
# note "error is : $error";
#
# };
#
# subtest 'get directory listing sans trailing slash' => sub {
#
# my $list = capture_note { $build->fetch("$base") };
#
# is(
# $list,
# hash {
# field type => 'list';
# field list => array {
# foreach my $filename (qw( foo-1.00.tar foo-1.01.tar foo-1.02.tar html_test.html ))
# {
# item hash {
# field filename => $filename;
# field url => "$base/$filename";
# end;
# };
# };
# end;
# };
# },
# 'list',
# );
#
# };
#
#};
subtest 'live test' => sub {
skip_all 'set ALIEN_BUILD_LIVE_TEST=1 to enable test' unless $ENV{ALIEN_BUILD_LIVE_TEST};
my $curl = which('curl');
is $curl, T();
note "curl = $curl";
my $pok = Alien::Build::Plugin::Fetch::CurlCommand->protocol_ok('https');
is $pok, T();
require Alien::Build::Plugin::Download::Negotiate;
my $mock = mock 'Alien::Build::Plugin::Download::Negotiate' => (
override => [
pick => sub {
('Fetch::CurlCommand', 'Decode::Mojo');
},
],
);
alienfile_ok q{
use alienfile;
probe sub { 'share' };
share {
plugin Download => (
url => 'https://alienfile.org/dontpanic/',
version => qr/([0-9\.]+)\.tar\.gz$/,
);
};
};
my $download = alien_download_ok;
ok -f $download, "file exists";
is
path($download)->basename,
match qr/^dontpanic-.*\.tar\.gz$/;
};
subtest 'headers' => sub {
my $url = http_url;
skip_all http_error unless $url;
my $build = do {
my $plugin = Alien::Build::Plugin::Fetch::CurlCommand->new( url => "$url" );
my $build = alienfile filename => 'corpus/blank/alienfile';
my $meta = $build->meta;
$plugin->init($meta);
$build;
};
require URI;
my $furl = URI->new_abs("test1/foo.txt", $url);
note "url = $furl";
my $res = capture_note { $build->fetch("$furl", http_headers => [ Foo => 'Bar1', Foo => 'Bar2', Baz => 1 ]) };
note _dump($res);
my $content;
is
$content = decode_json(path($res->{path})->slurp_raw),
hash {
field headers => hash {
field Foo => 'Bar1, Bar2';
field Baz => 1;
etc;
};
etc;
},
;
note _dump($content);
};
done_testing
|