#!/usr/bin/perl -w
if
(not
$ENV
{ONLINE_TEST}) {
plan
skip_all
=>
'Set $ENV{ONLINE_TEST} to run this test'
;
}
plan
tests
=> 22;
my
$q
= Finance::Quote->new();
my
@stocks
= (
"HDFCBANK"
,
"TCS"
,
"INE009A01021"
,
"INE062A01020"
);
my
$year
= (
localtime
())[5] + 1900;
my
$lastyear
=
$year
- 1;
my
%quotes
=
$q
->fetch(
"nseindia"
,
@stocks
);
ok(
%quotes
);
foreach
my
$stock
(
@stocks
) {
ok(
$quotes
{
$stock
,
"last"
} > 0);
ok(
$quotes
{
$stock
,
"success"
});
ok(
$quotes
{
$stock
,
"currency"
} eq
"INR"
);
ok(
substr
(
$quotes
{
$stock
,
"isodate"
},0,4) ==
$year
||
substr
(
$quotes
{
$stock
,
"isodate"
},0,4) ==
$lastyear
);
ok(
substr
(
$quotes
{
$stock
,
"date"
},6,4) ==
$year
||
substr
(
$quotes
{
$stock
,
"date"
},6,4) ==
$lastyear
);
}
%quotes
=
$q
->fetch(
"nseindia"
,
"BOGUS"
);
ok(!
$quotes
{
"BOGUS"
,
"success"
});