The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/perl -w
use strict;
if (not $ENV{ONLINE_TEST}) {
plan skip_all => 'Set $ENV{ONLINE_TEST} to run this test';
}
plan tests => 7;
# Test TD Waterhouse functions.
my $q = Finance::Quote->new();
my %quotes = $q->unionfunds("DE0008491002","12345");
ok(%quotes);
# Check the last values are defined. These are the most
# used and most reliable indicators of success.
ok($quotes{"DE0008491002","last"} > 0);
ok($quotes{"DE0008491002","success"});
ok($quotes{"DE0008491002", "currency"} eq "EUR");
my $year = (localtime())[5] + 1900;
my $lastyear = $year - 1;
ok(substr($quotes{"DE0008491002","isodate"},0,4) eq $year ||
substr($quotes{"DE0008491002","isodate"},0,4) eq $lastyear);
ok(substr($quotes{"DE0008491002","date"},6,4) eq $year ||
substr($quotes{"DE0008491002","date"},6,4) eq $lastyear);
# Check that bogus stocks return failure:
ok(! $quotes{"12345","success"});