mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 15:19:38 +02:00
* Support all currencies, handle outside DB * Remove currencies from seed * Fix account balance namespace * Set default currency on authentication * Cache currency instances * Implement multi-currency syncs with tests * Series fallback, passing tests * Fix conflicts * Make value group concrete class that works with currency values * Fix migration conflict * Update tests to expect multi-currency results * Update account list to use group method * Namespace updates * Fetch unknown exchange rates from API * Fix date range bug * Ensure demo data works without external API * Enforce cascades only at DB level
38 lines
1.3 KiB
Ruby
38 lines
1.3 KiB
Ruby
require "test_helper"
|
|
|
|
class Account::SyncableTest < ActiveSupport::TestCase
|
|
test "account has no balances until synced" do
|
|
account = accounts(:savings_with_valuation_overrides)
|
|
|
|
assert_equal 0, account.balances.count
|
|
end
|
|
|
|
test "account has balances after syncing" do
|
|
account = accounts(:savings_with_valuation_overrides)
|
|
account.sync
|
|
|
|
assert_equal 31, account.balances.count
|
|
end
|
|
|
|
test "foreign currency account has balances in each currency after syncing" do
|
|
account = accounts(:eur_checking)
|
|
account.sync
|
|
|
|
assert_equal 62, account.balances.count
|
|
assert_equal 31, account.balances.where(currency: "EUR").count
|
|
assert_equal 31, account.balances.where(currency: "USD").count
|
|
end
|
|
|
|
test "stale balances are purged after syncing" do
|
|
account = accounts(:savings_with_valuation_overrides)
|
|
|
|
# Create old, stale balances that should be purged (since they are before account start date)
|
|
account.balances.create!(date: 1.year.ago, balance: 1000)
|
|
account.balances.create!(date: 2.years.ago, balance: 2000)
|
|
account.balances.create!(date: 3.years.ago, balance: 3000)
|
|
|
|
account.sync
|
|
|
|
assert_equal 31, account.balances.count
|
|
end
|
|
end
|