frankfurter/spec/quote/end_of_day_spec.rb
Hakan Ensari a96e56808e Implement time series
... along with some minor miscellaneous refactoring

This finally completes fixerAPI/fixer#22
2018-07-05 21:30:17 +01:00

84 lines
1.7 KiB
Ruby

# frozen_string_literal: true
require_relative '../helper'
require 'quote/end_of_day'
module Quote
describe EndOfDay do
let(:date) do
Date.parse('2010-10-10')
end
let(:quote) do
EndOfDay.new(date: date)
end
before do
quote.perform
end
it 'returns rates' do
quote.formatted[:rates].wont_be :empty?
end
it 'quotes given date' do
Date.parse(quote.formatted[:date]).must_be :<=, date
end
it 'quotes against the Euro' do
quote.formatted[:rates].keys.wont_include 'EUR'
end
it 'sorts rates' do
rates = quote.formatted[:rates]
rates.keys.must_equal rates.keys.sort
end
it 'has a cache key' do
quote.cache_key.wont_be :empty?
end
describe 'given a new base' do
let(:quote) do
EndOfDay.new(date: date, base: 'USD')
end
it 'quotes against that base' do
quote.formatted[:rates].keys.wont_include 'USD'
end
it 'sorts rates' do
rates = quote.formatted[:rates]
rates.keys.must_equal rates.keys.sort
end
end
describe 'given symbols' do
let(:quote) do
EndOfDay.new(date: date, symbols: %w[USD GBP JPY])
end
it 'quotes only for those symbols' do
rates = quote.formatted[:rates]
rates.keys.must_include 'USD'
rates.keys.wont_include 'CAD'
end
it 'sorts rates' do
rates = quote.formatted[:rates]
rates.keys.must_equal rates.keys.sort
end
end
describe 'when given an amount' do
let(:quote) do
EndOfDay.new(date: date, amount: 100)
end
it 'calculates quotes for that amount' do
quote.formatted[:rates]['USD'].must_be :>, 10
end
end
end
end