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
|
#!/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 => 9;
# Test currency conversion, both explicit requests and automatic
# conversion.
my $q = Finance::Quote->new();
# Explicit conversion...
ok($q->currency("USD","AUD")); # Test 1
ok($q->currency("EUR","JPY")); # Test 2
ok(! defined($q->currency("XXX","YYY"))); # Test 3
# test for thousands : GBP -> IQD. This should be > 1000
ok($q->currency("GBP","IQD")>1000) ; # Test 4
# Test 5
ok(($q->currency("10 AUD","AUD")) == (10 * ($q->currency("AUD","AUD"))));
# Euros into French Francs are fixed at a conversion rate of
# 1:6.559576 . We can use this knowledge to test that a stock is
# converting correctly.
# Test 6
my %baseinfo = $q->fetch("yahoo_europe","UG.PA");
ok($baseinfo{"UG.PA","success"});
$q->set_currency("AUD"); # All new requests in Aussie Dollars.
my %info = $q->fetch("yahoo_europe","UG.PA");
ok($info{"UG.PA","success"}); # Test 7
ok($info{"UG.PA","currency"} eq "AUD"); # Test 8
ok($info{"UG.PA","price"} > 0); # Test 9
|