mirror of
https://github.com/we-promise/sure.git
synced 2026-09-07 07:34:14 +00:00
* feat(bills): assistant and MCP tools for bills Last of three chunks carved out of #3083, stacked on the UI bundle. Exposes bills to the builtin assistant and to MCP clients. Everything here is gated behind preview features, so the tools are absent from tools/list until a user opts in. Seven tools: - get_bills, get_bill_details and get_paycheck_plan for reads - get_bill_audit, a deterministic review that surfaces likely duplicates, price changes, trials about to convert, upcoming renewals and long-overdue bills - create_bill, update_bill and record_bill_payment for writes Shared argument parsing, permission checks and error shapes live in BillsSupport, so every tool answers with the same {error, hint} contract the existing tools use, and a bad argument never aborts the turn. The write tools mutate financial records on a model's say-so, so they refuse rather than guess: a payment cannot exceed what its cycle still owes, a repeated settle will not quietly close next month, an unrecognized frequency is an error instead of a silent monthly default, and non-finite or negative amounts are rejected before they reach the database. The read tools say what they filtered. An empty result names the statuses that do hold matches, the paycheck plan discloses the unconfirmed series it excluded from spending headroom, and history and price-change windows report their real totals rather than letting a caller sum a truncated list. A not-found no longer returns the scoped relation's SQL, which handed any MCP client the access-control schema for the cost of a guessed id. The in-page AI helpers are not here. Smart fill and smart configuration are buttons on the bills pages, so they ship with the UI bundle along with the provider-side suggester they call. Suite 7,854 runs, 0 failures. Rubocop clean, eager loading verified. * Address the ready-review round * Reject an out-of-range audit lookback out loud * Speak the cycle remainder guard through the allocator locale
204 lines
7.1 KiB
Ruby
204 lines
7.1 KiB
Ruby
require "test_helper"
|
|
|
|
class Assistant::Function::UpdateBillTest < ActiveSupport::TestCase
|
|
setup do
|
|
@user = users(:family_admin)
|
|
@family = @user.family
|
|
@family.recurring_transactions.destroy_all
|
|
end
|
|
|
|
test "amount arrives as magnitude and income keeps its sign" do
|
|
income = create_series(name: "Paycheck", amount: -1200, bill_type: "income")
|
|
|
|
result = call_tool(income.id, "amount" => 1300)
|
|
|
|
assert result[:updated]
|
|
assert_equal(-1300, income.reload.amount.to_f,
|
|
"a raw assignment would have flipped the paycheck into a bill")
|
|
end
|
|
|
|
test "a non-numeric amount is refused with a hint, not raised" do
|
|
series = create_series(name: "Gym", amount: 40)
|
|
|
|
result = call_tool(series.id, "amount" => "twenty")
|
|
|
|
assert result[:error].present?
|
|
assert result[:hint].present?
|
|
assert_equal 40, series.reload.amount.to_f
|
|
end
|
|
|
|
test "a non-finite amount is refused, not assigned" do
|
|
# BigDecimal happily parses these strings, so the finite check is the
|
|
# only thing between them and the ledger.
|
|
series = create_series(name: "Gym", amount: 40)
|
|
|
|
%w[Infinity -Infinity NaN].each do |value|
|
|
result = call_tool(series.id, "amount" => value)
|
|
|
|
assert result[:error].present?, "#{value} must be refused"
|
|
assert_equal 40, series.reload.amount.to_f
|
|
end
|
|
end
|
|
|
|
test "a schedule change applies the preset and pins it against detection" do
|
|
series = create_series(name: "Gym", amount: 40)
|
|
refute series.schedule_pinned?
|
|
|
|
result = call_tool(series.id, "frequency" => "weekly", "weekday" => 5)
|
|
|
|
assert result[:updated]
|
|
assert_includes result[:changed_fields], "schedule"
|
|
assert series.reload.schedule_pinned?,
|
|
"an AI-applied cadence is user intent by proxy; detection must not move it back"
|
|
end
|
|
|
|
test "paused maps to the stored value the UI's own Pause writes" do
|
|
series = create_series(name: "Gym", amount: 40)
|
|
|
|
result = call_tool(series.id, "status" => "paused")
|
|
|
|
assert result[:updated]
|
|
assert_equal "inactive", series.reload.status
|
|
assert_equal "paused", result[:bill][:status], "but the tool answers in the UI vocabulary"
|
|
end
|
|
|
|
test "an amount change pins occurrences already due instead of restating them" do
|
|
overdue_day = 10.days.ago.to_date
|
|
series = create_series(name: "Rent", amount: 2000,
|
|
expected_day_of_month: overdue_day.day,
|
|
anchor_date: overdue_day,
|
|
last_occurrence_date: overdue_day << 1,
|
|
next_expected_date: overdue_day)
|
|
past_due = series.recurring_occurrences.open_status.find_by!(due_on: overdue_day)
|
|
|
|
call_tool(series.id, "amount" => 2500)
|
|
|
|
assert_equal 2000, past_due.reload.resolved_expected_amount.to_f,
|
|
"raising the rent must not restate what last month's unpaid rent claims"
|
|
end
|
|
|
|
test "an invalid renews_on is rejected instead of silently clearing" do
|
|
series = create_series(name: "Gym", amount: 40)
|
|
|
|
result = call_tool(series.id, "renews_on" => "not-a-date")
|
|
|
|
assert_equal "renews_on is not a valid date", result[:error]
|
|
assert_equal "Use YYYY-MM-DD.", result[:hint]
|
|
assert_nil series.reload.renews_on
|
|
|
|
result = call_tool(series.id, "renews_on" => "2027-03-01")
|
|
|
|
assert result[:updated]
|
|
assert_equal Date.new(2027, 3, 1), series.reload.renews_on
|
|
end
|
|
|
|
test "kind cannot leave the editable set" do
|
|
income = create_series(name: "Paycheck", amount: -1200, bill_type: "income")
|
|
|
|
result = call_tool(income.id, "bill_type" => "bill")
|
|
|
|
assert result[:error].present?
|
|
assert_equal "income", income.reload.bill_type
|
|
end
|
|
|
|
test "an inaccessible account name returns a hint" do
|
|
series = create_series(name: "Gym", amount: 40)
|
|
|
|
result = call_tool(series.id, "account_name" => "No Such Account")
|
|
|
|
assert_match(/No account named/, result[:error])
|
|
assert_includes result[:hint], "get_accounts"
|
|
end
|
|
|
|
test "no recognized fields is an error, not a silent no-op" do
|
|
series = create_series(name: "Gym", amount: 40)
|
|
|
|
result = call_tool(series.id, "unknown_field" => "x")
|
|
|
|
assert_match(/No recognized fields/, result[:error])
|
|
end
|
|
|
|
# Sharing is per account: a read-only share reads a bill everywhere the app
|
|
# shows it and must not change it, mirroring the pages' write guard.
|
|
test "a read-only account share cannot update the series" do
|
|
series = create_series(name: "Shared Sub", amount: 12, account: accounts(:credit_card))
|
|
member = users(:family_member)
|
|
|
|
result = Assistant::Function::UpdateBill.new(member).call("bill_id" => series.id.to_s, "name" => "Hijacked")
|
|
|
|
assert_match(/read-only/, result[:error])
|
|
assert_equal "Shared Sub", series.reload.name
|
|
end
|
|
|
|
test "the reassignment target must be writable" do
|
|
series = create_series(name: "Wandering", amount: 9, account: nil)
|
|
member = users(:family_member)
|
|
|
|
result = Assistant::Function::UpdateBill.new(member).call(
|
|
"bill_id" => series.id.to_s, "account_name" => accounts(:credit_card).name
|
|
)
|
|
|
|
assert_match(/add bills to/, result[:error])
|
|
assert_nil series.reload.account_id
|
|
end
|
|
|
|
test "namesake accounts are refused rather than picked between" do
|
|
series = create_series(name: "Gym", amount: 40)
|
|
@family.accounts.create!(
|
|
name: accounts(:depository).name, balance: 0, currency: "USD",
|
|
accountable: Depository.new, owner: @user
|
|
)
|
|
|
|
result = call_tool(series.id, "account_name" => accounts(:depository).name)
|
|
|
|
assert_match(/More than one account/, result[:error])
|
|
end
|
|
|
|
test "an unrecognized frequency is rejected before anything saves" do
|
|
series = create_series(name: "Insurance", amount: 60)
|
|
|
|
result = call_tool(series.id, "frequency" => "yearly", "name" => "Renamed")
|
|
|
|
assert_match(/not a frequency/, result[:error])
|
|
assert_equal "Insurance", series.reload.name, "companion edits must not save with a rejected cadence"
|
|
end
|
|
|
|
test "day details without a frequency are refused, not silently dropped" do
|
|
series = create_series(name: "Rent", amount: 2150)
|
|
|
|
result = call_tool(series.id, "due_day_of_month" => 5)
|
|
|
|
assert_match(/need frequency/, result[:error])
|
|
end
|
|
|
|
test "unrecognized status and kind values error instead of no-opping" do
|
|
series = create_series(name: "Gym", amount: 40)
|
|
|
|
assert_match(/not a status/, call_tool(series.id, "status" => "cancelled")[:error])
|
|
assert_match(/not a kind/, call_tool(series.id, "bill_type" => "loan")[:error])
|
|
end
|
|
|
|
private
|
|
|
|
def call_tool(bill_id, params)
|
|
Assistant::Function::UpdateBill.new(@user).call({ "bill_id" => bill_id.to_s }.merge(params))
|
|
end
|
|
|
|
def create_series(name:, amount:, **overrides)
|
|
@family.recurring_transactions.create!({
|
|
name: name,
|
|
account: accounts(:depository),
|
|
amount: amount,
|
|
dedup_scope: "#{name}-#{amount}",
|
|
currency: "USD",
|
|
expected_day_of_month: Date.current.day,
|
|
anchor_date: Date.current,
|
|
last_occurrence_date: 1.month.ago.to_date,
|
|
next_expected_date: Date.current,
|
|
status: "active",
|
|
manual: true,
|
|
bill_type: amount.to_d.negative? ? "income" : "bill"
|
|
}.merge(overrides))
|
|
end
|
|
end
|