Files
sure/test/models/mercury_account_test.rb
ghost 6c84fc760e fix(mercury): support named multiple API connections (#1627)
* fix(mercury): support named multiple connections

* fix(mercury): address multi-connection review feedback

* fix(mercury): localize connection labels

* fix(mercury): strip API tokens before provider calls

* test(mercury): localize provider config assertions

* fix(mercury): address multi-connection review

* refactor(mercury): simplify connection selection failure
2026-05-03 10:56:31 +02:00

105 lines
2.7 KiB
Ruby

require "test_helper"
class MercuryAccountTest < ActiveSupport::TestCase
setup do
@family_a = families(:dylan_family)
@family_b = families(:empty)
@item_a = MercuryItem.create!(
family: @family_a,
name: "Family A Mercury",
token: "token_a",
base_url: "https://api-sandbox.mercury.com/api/v1",
status: "good"
)
@item_b = MercuryItem.create!(
family: @family_b,
name: "Family B Mercury",
token: "token_b",
base_url: "https://api-sandbox.mercury.com/api/v1",
status: "good"
)
end
test "same account_id can be linked under different mercury_items" do
MercuryAccount.create!(
mercury_item: @item_a,
account_id: "shared_merc_acc_1",
name: "Checking",
currency: "USD",
current_balance: 5000
)
# A second family connecting the same Mercury account must succeed and produce
# an independent ledger (separate MercuryAccount row, separate Account).
assert_difference "MercuryAccount.count", 1 do
MercuryAccount.create!(
mercury_item: @item_b,
account_id: "shared_merc_acc_1",
name: "Checking",
currency: "USD",
current_balance: 5000
)
end
end
test "same account_id can be linked under different mercury_items in the same family" do
item_a_2 = MercuryItem.create!(
family: @family_a,
name: "Family A Second Mercury",
token: "token_a_2",
base_url: "https://api-sandbox.mercury.com/api/v1",
status: "good"
)
MercuryAccount.create!(
mercury_item: @item_a,
account_id: "shared_merc_acc_1",
name: "Checking",
currency: "USD",
current_balance: 5000
)
assert_difference "MercuryAccount.count", 1 do
MercuryAccount.create!(
mercury_item: item_a_2,
account_id: "shared_merc_acc_1",
name: "Checking",
currency: "USD",
current_balance: 5000
)
end
end
test "same account_id cannot appear twice under the same mercury_item" do
MercuryAccount.create!(
mercury_item: @item_a,
account_id: "duplicate_acc",
name: "Checking",
currency: "USD",
current_balance: 1000
)
duplicate = MercuryAccount.new(
mercury_item: @item_a,
account_id: "duplicate_acc",
name: "Checking",
currency: "USD",
current_balance: 1000
)
refute duplicate.valid?
assert_includes duplicate.errors[:account_id], "has already been taken"
assert_raises(ActiveRecord::RecordInvalid) do
MercuryAccount.create!(
mercury_item: @item_a,
account_id: "duplicate_acc",
name: "Checking",
currency: "USD",
current_balance: 1000
)
end
end
end