2024-12-10 17:41:20 -05:00
|
|
|
require "test_helper"
|
|
|
|
|
2025-04-14 11:40:34 -04:00
|
|
|
class Holding::ReverseCalculatorTest < ActiveSupport::TestCase
|
|
|
|
include EntriesTestHelper
|
2024-12-10 17:41:20 -05:00
|
|
|
|
|
|
|
setup do
|
|
|
|
@account = families(:empty).accounts.create!(
|
|
|
|
name: "Test",
|
|
|
|
balance: 20000,
|
|
|
|
cash_balance: 20000,
|
|
|
|
currency: "USD",
|
|
|
|
accountable: Investment.new
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "no holdings" do
|
2025-04-14 11:40:34 -04:00
|
|
|
calculated = Holding::ReverseCalculator.new(@account).calculate
|
2025-03-07 17:35:55 -05:00
|
|
|
assert_equal [], calculated
|
2024-12-10 17:41:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Should be able to handle this case, although we should not be reverse-syncing an account without provided current day holdings
|
|
|
|
test "reverse portfolio with trades but without current day holdings" do
|
|
|
|
voo = Security.create!(ticker: "VOO", name: "Vanguard S&P 500 ETF")
|
|
|
|
Security::Price.create!(security: voo, date: Date.current, price: 470)
|
|
|
|
Security::Price.create!(security: voo, date: 1.day.ago.to_date, price: 470)
|
|
|
|
|
|
|
|
create_trade(voo, qty: -10, date: Date.current, price: 470, account: @account)
|
|
|
|
|
2025-04-14 11:40:34 -04:00
|
|
|
calculated = Holding::ReverseCalculator.new(@account).calculate
|
2024-12-10 17:41:20 -05:00
|
|
|
assert_equal 2, calculated.length
|
|
|
|
end
|
|
|
|
|
|
|
|
test "reverse portfolio calculation" do
|
|
|
|
load_today_portfolio
|
|
|
|
|
|
|
|
# Build up to 10 shares of VOO (current value $5000)
|
|
|
|
create_trade(@voo, qty: 20, date: 3.days.ago.to_date, price: 470, account: @account)
|
|
|
|
create_trade(@voo, qty: -15, date: 2.days.ago.to_date, price: 480, account: @account)
|
|
|
|
create_trade(@voo, qty: 5, date: 1.day.ago.to_date, price: 490, account: @account)
|
|
|
|
|
|
|
|
# Amazon won't exist in current holdings because qty is zero, but should show up in historical portfolio
|
|
|
|
create_trade(@amzn, qty: 1, date: 2.days.ago.to_date, price: 200, account: @account)
|
|
|
|
create_trade(@amzn, qty: -1, date: 1.day.ago.to_date, price: 200, account: @account)
|
|
|
|
|
|
|
|
# Build up to 100 shares of WMT (current value $10000)
|
|
|
|
create_trade(@wmt, qty: 100, date: 1.day.ago.to_date, price: 100, account: @account)
|
|
|
|
|
|
|
|
expected = [
|
|
|
|
# 4 days ago
|
2025-04-14 11:40:34 -04:00
|
|
|
Holding.new(security: @voo, date: 4.days.ago.to_date, qty: 0, price: 460, amount: 0),
|
|
|
|
Holding.new(security: @wmt, date: 4.days.ago.to_date, qty: 0, price: 100, amount: 0),
|
|
|
|
Holding.new(security: @amzn, date: 4.days.ago.to_date, qty: 0, price: 200, amount: 0),
|
2024-12-10 17:41:20 -05:00
|
|
|
|
|
|
|
# 3 days ago
|
2025-04-14 11:40:34 -04:00
|
|
|
Holding.new(security: @voo, date: 3.days.ago.to_date, qty: 20, price: 470, amount: 9400),
|
|
|
|
Holding.new(security: @wmt, date: 3.days.ago.to_date, qty: 0, price: 100, amount: 0),
|
|
|
|
Holding.new(security: @amzn, date: 3.days.ago.to_date, qty: 0, price: 200, amount: 0),
|
2024-12-10 17:41:20 -05:00
|
|
|
|
|
|
|
# 2 days ago
|
2025-04-14 11:40:34 -04:00
|
|
|
Holding.new(security: @voo, date: 2.days.ago.to_date, qty: 5, price: 480, amount: 2400),
|
|
|
|
Holding.new(security: @wmt, date: 2.days.ago.to_date, qty: 0, price: 100, amount: 0),
|
|
|
|
Holding.new(security: @amzn, date: 2.days.ago.to_date, qty: 1, price: 200, amount: 200),
|
2024-12-10 17:41:20 -05:00
|
|
|
|
|
|
|
# 1 day ago
|
2025-04-14 11:40:34 -04:00
|
|
|
Holding.new(security: @voo, date: 1.day.ago.to_date, qty: 10, price: 490, amount: 4900),
|
|
|
|
Holding.new(security: @wmt, date: 1.day.ago.to_date, qty: 100, price: 100, amount: 10000),
|
|
|
|
Holding.new(security: @amzn, date: 1.day.ago.to_date, qty: 0, price: 200, amount: 0),
|
2024-12-10 17:41:20 -05:00
|
|
|
|
|
|
|
# Today
|
2025-04-14 11:40:34 -04:00
|
|
|
Holding.new(security: @voo, date: Date.current, qty: 10, price: 500, amount: 5000),
|
|
|
|
Holding.new(security: @wmt, date: Date.current, qty: 100, price: 100, amount: 10000),
|
|
|
|
Holding.new(security: @amzn, date: Date.current, qty: 0, price: 200, amount: 0)
|
2024-12-10 17:41:20 -05:00
|
|
|
]
|
|
|
|
|
2025-04-14 11:40:34 -04:00
|
|
|
calculated = Holding::ReverseCalculator.new(@account).calculate
|
2024-12-10 17:41:20 -05:00
|
|
|
|
|
|
|
assert_equal expected.length, calculated.length
|
|
|
|
|
|
|
|
expected.each do |expected_entry|
|
|
|
|
calculated_entry = calculated.find { |c| c.security == expected_entry.security && c.date == expected_entry.date }
|
|
|
|
|
|
|
|
assert_equal expected_entry.qty, calculated_entry.qty, "Qty mismatch for #{expected_entry.security.ticker} on #{expected_entry.date}"
|
|
|
|
assert_equal expected_entry.price, calculated_entry.price, "Price mismatch for #{expected_entry.security.ticker} on #{expected_entry.date}"
|
|
|
|
assert_equal expected_entry.amount, calculated_entry.amount, "Amount mismatch for #{expected_entry.security.ticker} on #{expected_entry.date}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def assert_holdings(expected, calculated)
|
|
|
|
expected.each do |expected_entry|
|
|
|
|
calculated_entry = calculated.find { |c| c.security == expected_entry.security && c.date == expected_entry.date }
|
|
|
|
|
|
|
|
assert_equal expected_entry.qty, calculated_entry.qty, "Qty mismatch for #{expected_entry.security.ticker} on #{expected_entry.date}"
|
|
|
|
assert_equal expected_entry.price, calculated_entry.price, "Price mismatch for #{expected_entry.security.ticker} on #{expected_entry.date}"
|
|
|
|
assert_equal expected_entry.amount, calculated_entry.amount, "Amount mismatch for #{expected_entry.security.ticker} on #{expected_entry.date}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def load_prices
|
|
|
|
@voo = Security.create!(ticker: "VOO", name: "Vanguard S&P 500 ETF")
|
|
|
|
Security::Price.create!(security: @voo, date: 4.days.ago.to_date, price: 460)
|
|
|
|
Security::Price.create!(security: @voo, date: 3.days.ago.to_date, price: 470)
|
|
|
|
Security::Price.create!(security: @voo, date: 2.days.ago.to_date, price: 480)
|
|
|
|
Security::Price.create!(security: @voo, date: 1.day.ago.to_date, price: 490)
|
|
|
|
Security::Price.create!(security: @voo, date: Date.current, price: 500)
|
|
|
|
|
|
|
|
@wmt = Security.create!(ticker: "WMT", name: "Walmart Inc.")
|
|
|
|
Security::Price.create!(security: @wmt, date: 4.days.ago.to_date, price: 100)
|
|
|
|
Security::Price.create!(security: @wmt, date: 3.days.ago.to_date, price: 100)
|
|
|
|
Security::Price.create!(security: @wmt, date: 2.days.ago.to_date, price: 100)
|
|
|
|
Security::Price.create!(security: @wmt, date: 1.day.ago.to_date, price: 100)
|
|
|
|
Security::Price.create!(security: @wmt, date: Date.current, price: 100)
|
|
|
|
|
|
|
|
@amzn = Security.create!(ticker: "AMZN", name: "Amazon.com Inc.")
|
|
|
|
Security::Price.create!(security: @amzn, date: 4.days.ago.to_date, price: 200)
|
|
|
|
Security::Price.create!(security: @amzn, date: 3.days.ago.to_date, price: 200)
|
|
|
|
Security::Price.create!(security: @amzn, date: 2.days.ago.to_date, price: 200)
|
|
|
|
Security::Price.create!(security: @amzn, date: 1.day.ago.to_date, price: 200)
|
|
|
|
Security::Price.create!(security: @amzn, date: Date.current, price: 200)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Portfolio holdings:
|
|
|
|
# +--------+-----+--------+---------+
|
|
|
|
# | Ticker | Qty | Price | Amount |
|
|
|
|
# +--------+-----+--------+---------+
|
|
|
|
# | VOO | 10 | $500 | $5,000 |
|
|
|
|
# | WMT | 100 | $100 | $10,000 |
|
|
|
|
# +--------+-----+--------+---------+
|
|
|
|
# Brokerage Cash: $5,000
|
|
|
|
# Holdings Value: $15,000
|
|
|
|
# Total Balance: $20,000
|
|
|
|
def load_today_portfolio
|
|
|
|
@account.update!(cash_balance: 5000)
|
|
|
|
|
|
|
|
load_prices
|
|
|
|
|
|
|
|
@account.holdings.create!(
|
|
|
|
date: Date.current,
|
|
|
|
price: 500,
|
|
|
|
qty: 10,
|
|
|
|
amount: 5000,
|
|
|
|
currency: "USD",
|
|
|
|
security: @voo
|
|
|
|
)
|
|
|
|
|
|
|
|
@account.holdings.create!(
|
|
|
|
date: Date.current,
|
|
|
|
price: 100,
|
|
|
|
qty: 100,
|
|
|
|
amount: 10000,
|
|
|
|
currency: "USD",
|
|
|
|
security: @wmt
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|