mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 23:29:39 +02:00
* Ignore env.test from source control * Simplification of providers interface * Synth tests * Update money to use new find rates method * Remove unused issues code * Additional issue feature removals * Update price data fetching and tests * Update documentation for providers * Security test fixes * Fix self host test * Update synth usage data access * Remove AI pr schema changes
36 lines
1,000 B
Ruby
36 lines
1,000 B
Ruby
require "test_helper"
|
|
|
|
module ExchangeRateProviderInterfaceTest
|
|
extend ActiveSupport::Testing::Declarative
|
|
|
|
test "fetches single exchange rate" do
|
|
VCR.use_cassette("#{vcr_key_prefix}/exchange_rate") do
|
|
response = @subject.fetch_exchange_rate(
|
|
from: "USD",
|
|
to: "GBP",
|
|
date: Date.parse("01.01.2024")
|
|
)
|
|
|
|
rate = response.data.rate
|
|
|
|
assert_kind_of ExchangeRate, rate
|
|
assert_equal "USD", rate.from_currency
|
|
assert_equal "GBP", rate.to_currency
|
|
end
|
|
end
|
|
|
|
test "fetches paginated exchange_rate historical data" do
|
|
VCR.use_cassette("#{vcr_key_prefix}/exchange_rates") do
|
|
response = @subject.fetch_exchange_rates(
|
|
from: "USD", to: "GBP", start_date: Date.parse("01.01.2024"), end_date: Date.parse("31.07.2024")
|
|
)
|
|
|
|
assert 213, response.data.rates.count # 213 days between 01.01.2024 and 31.07.2024
|
|
end
|
|
end
|
|
|
|
private
|
|
def vcr_key_prefix
|
|
@subject.class.name.demodulize.underscore
|
|
end
|
|
end
|