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
|
#!/usr/bin/perl -w
use strict;
use Test::More;
use Finance::Quote;
if (not $ENV{ONLINE_TEST}) {
plan skip_all => 'Set $ENV{ONLINE_TEST} to run this test';
}
plan tests => 23;
# Test TIAA-CREF functions.
my $q = Finance::Quote->new();
my $year = (localtime())[5] + 1900;
my $lastyear = $year - 1;
my %quotes = $q->tiaacref("CREFmony","TIAAreal","TLSIX","TCMVX","TLGIX","BOGOname");
ok(%quotes);
ok($quotes{"CREFmony","nav"} > 0);
ok($quotes{"CREFmony", "currency"} eq "USD");
ok(length($quotes{"CREFmony","date"}) > 0);
ok(substr($quotes{"CREFmony","isodate"},0,4) == $year ||
substr($quotes{"CREFmony","isodate"},0,4) == $lastyear);
ok(substr($quotes{"CREFmony","date"},6,4) == $year ||
substr($quotes{"CREFmony","date"},6,4) == $lastyear);
ok($quotes{"TIAAreal","nav"} > 0);
ok(length($quotes{"TIAAreal","date"}) > 0);
ok(substr($quotes{"TIAAreal","isodate"},0,4) == $year ||
substr($quotes{"TIAAreal","isodate"},0,4) == $lastyear);
ok(substr($quotes{"TIAAreal","date"},6,4) == $year ||
substr($quotes{"TIAAreal","date"},6,4) == $lastyear);
ok($quotes{"TLSIX","success"} > 0);
ok($quotes{"TLSIX","nav"} > 0);
ok(length($quotes{"TLSIX","date"}) > 0);
ok(substr($quotes{"TLSIX","isodate"},0,4) == $year ||
substr($quotes{"TLSIX","isodate"},0,4) == $lastyear);
ok(substr($quotes{"TLSIX","date"},6,4) == $year ||
substr($quotes{"TLSIX","date"},6,4) == $lastyear);
ok($quotes{"TCMVX","success"} > 0);
ok($quotes{"TCMVX","nav"} > 0);
ok(length($quotes{"TCMVX","date"}) > 0);
ok(substr($quotes{"TCMVX","isodate"},0,4) == $year ||
substr($quotes{"TCMVX","isodate"},0,4) == $lastyear);
ok(substr($quotes{"TCMVX","date"},6,4) == $year ||
substr($quotes{"TCMVX","date"},6,4) == $lastyear);
ok($quotes{"TLGIX","success"} > 0);
ok($quotes{"BOGOname","success"} == 0);
ok($quotes{"BOGOname","errormsg"} eq "Bad symbol");
|