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
|
use Test::More qw(no_plan);
BEGIN { use_ok('Flickr::Upload') };
my $api_key = '8dcf37880da64acfe8e30bb1091376b7';
my $not_so_secret = '2f3695d0562cdac7';
# grab auth token. If none, fail nicely.
my $pw = '******';
open( F, '<', 't/password' ) || (print STDERR "No password file\n" && exit 0);
$pw = <F>;
chomp $pw;
close F;
my $ua = Flickr::Upload->new({'key'=>$api_key, 'secret'=>$not_so_secret});
ok(defined $ua);
my $rc = $ua->upload(
'photo' => 't/testimage.jpg',
'auth_token' => $pw,
'tags' => "test kernel perl cat dog",
'description' => "Flickr Upload test for $0",
'is_public' => 0,
'is_friend' => 0,
'is_family' => 0,
);
ok( defined $rc );
exit 0;
|