File size: 14,778 Bytes
aef804e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | """
Integration Tests for Transaction Workflow
Tests complete transaction workflow:
1. Ingestion (bank feed, manual entry)
2. Categorization (AI/confidence-based)
3. Posting (double-entry validation)
4. Reconciliation (invoice matching, balance sheet)
Uses Decimal precision throughout. No float types for money.
"""
import pytest
from datetime import datetime, timedelta
from decimal import Decimal
from sqlalchemy import create_engine
from sqlalchemy.orm import Session, sessionmaker
from typing import List, Dict, Any
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '../..'))
from core.ai_accounting_engine import (
AIAccountingEngine,
Transaction,
TransactionStatus,
TransactionSource
)
from accounting.ledger import EventSourcedLedger, DoubleEntryEngine
from accounting.models import (
Account,
AccountType,
EntryType,
Base,
JournalEntry,
Transaction as DBTransaction,
TransactionStatus as DBTransactionStatus
)
from core.decimal_utils import to_decimal, round_money
# Test database setup
TEST_DATABASE_URL = "sqlite:///:memory:"
@pytest.fixture
def db_session():
"""Create test database session"""
engine = create_engine(TEST_DATABASE_URL)
Base.metadata.create_all(engine)
SessionLocal = sessionmaker(bind=engine)
session = SessionLocal()
try:
yield session
finally:
session.close()
@pytest.fixture
def chart_of_accounts(db_session: Session):
"""Create test chart of accounts"""
accounts = [
Account(id="1000", name="Cash", code="1000", type=AccountType.ASSET, workspace_id="test"),
Account(id="1100", name="Accounts Receivable", code="1100", type=AccountType.ASSET, workspace_id="test"),
Account(id="2000", name="Accounts Payable", code="2000", type=AccountType.LIABILITY, workspace_id="test"),
Account(id="4000", name="Revenue", code="4000", type=AccountType.REVENUE, workspace_id="test"),
Account(id="6100", name="Rent Expense", code="6100", type=AccountType.EXPENSE, workspace_id="test"),
Account(id="6200", name="Utilities", code="6200", type=AccountType.EXPENSE, workspace_id="test"),
]
for account in accounts:
db_session.add(account)
db_session.commit()
return accounts
class TestTransactionWorkflow:
"""Tests for complete transaction workflow"""
def test_full_transaction_workflow(self, db_session: Session, chart_of_accounts):
"""Test complete workflow: ingestion -> categorization -> posting"""
# Step 1: Ingestion
engine = AIAccountingEngine()
tx = Transaction(
id="tx_001",
date=datetime.now(),
amount=Decimal('1500.00'),
description="Office rent payment",
merchant="Landlord LLC",
source=TransactionSource.BANK
)
ingested = engine.ingest_transaction(tx)
assert ingested.id == "tx_001"
assert ingested.amount == Decimal('1500.00')
assert ingested.category_id is not None # Should categorize
assert ingested.confidence >= 0.0
# Step 2: Categorization (auto-categorized if high confidence)
if ingested.confidence >= engine.CONFIDENCE_THRESHOLD:
assert ingested.status == TransactionStatus.CATEGORIZED
else:
assert ingested.status == TransactionStatus.REVIEW_REQUIRED
# Override for testing
ingested.category_id = "6100" # Rent Expense
ingested.status = TransactionStatus.CATEGORIZED
ingested.confidence = 1.0
# Step 3: Posting (double-entry)
ledger = EventSourcedLedger(db_session)
# Create double-entry entries
entries = DoubleEntryEngine.create_payment_entry(
cash_account_id="1000",
expense_account_id="6100",
amount=Decimal('1500.00'),
description="Office rent payment"
)
# Post transaction
ledger_tx = ledger.record_transaction(
workspace_id="test",
transaction_date=tx.date,
description=tx.description,
entries=entries,
source="ai_accounting",
external_id=tx.id
)
assert ledger_tx is not None
assert ledger_tx.status == DBTransactionStatus.POSTED
# Verify journal entries created
journal_entries = db_session.query(JournalEntry).filter_by(
transaction_id=ledger_tx.id
).all()
assert len(journal_entries) == 2
# Verify debits == credits
debits = sum(e.amount for e in journal_entries if e.type == EntryType.DEBIT)
credits = sum(e.amount for e in journal_entries if e.type == EntryType.CREDIT)
assert debits == Decimal('1500.00')
assert credits == Decimal('1500.00')
assert debits == credits # Exact comparison
def test_bulk_ingestion_workflow(self, db_session: Session):
"""Test bulk ingestion from bank feed"""
engine = AIAccountingEngine()
bank_feed = [
{
"id": "tx_001",
"date": datetime.now().isoformat(),
"amount": "100.00",
"description": "Coffee shop",
"merchant": "Starbucks",
"source": "credit_card"
},
{
"id": "tx_002",
"date": datetime.now().isoformat(),
"amount": "50.00",
"description": "Office supplies",
"merchant": "Staples",
"source": "credit_card"
},
{
"id": "tx_003",
"date": datetime.now().isoformat(),
"amount": "1200.50",
"description": "Software subscription",
"merchant": "Amazon Web Services",
"source": "bank"
}
]
# Ingest all
results = engine.ingest_bank_feed(bank_feed)
assert len(results) == 3
# Verify each transaction
for i, tx in enumerate(results):
assert tx.id == bank_feed[i]["id"]
assert isinstance(tx.amount, Decimal)
assert tx.amount == to_decimal(bank_feed[i]["amount"])
# Should have categorization
assert tx.category_id is not None or tx.confidence == 0.0
def test_reconciliation_workflow(self, db_session: Session, chart_of_accounts):
"""Test invoice reconciliation workflow"""
from core.financial_ops_engine import InvoiceReconciler, Invoice, Contract
reconciler = InvoiceReconciler(tolerance_percent=Decimal('5.0'))
# Add contract
contract = Contract(
id="contract_001",
vendor="AWS",
monthly_amount=Decimal('1200.00'),
start_date=datetime.now() - timedelta(days=60),
end_date=datetime.now() + timedelta(days=60)
)
reconciler.add_contract(contract)
# Add matching invoice
invoice = Invoice(
id="invoice_001",
vendor="AWS",
amount=Decimal('1200.00'),
date=datetime.now(),
contract_id="contract_001"
)
reconciler.add_invoice(invoice)
# Reconcile
result = reconciler.reconcile()
assert result["summary"]["matched_count"] == 1
assert result["summary"]["discrepancy_count"] == 0
# Check matched invoice
assert len(result["matched"]) == 1
assert result["matched"][0]["invoice_id"] == "invoice_001"
def test_balance_sheet_verification(self, db_session: Session, chart_of_accounts):
"""Test balance sheet verification after transactions"""
from core.accounting_validator import check_balance_sheet
ledger = EventSourcedLedger(db_session)
# Post several transactions
transactions = [
{
"date": datetime.now(),
"description": "Initial investment",
"entries": [
{"account_id": "1000", "type": EntryType.DEBIT, "amount": Decimal('10000.00')},
{"account_id": "4000", "type": EntryType.CREDIT, "amount": Decimal('10000.00')}
]
},
{
"date": datetime.now(),
"description": "Pay rent",
"entries": [
{"account_id": "6100", "type": EntryType.DEBIT, "amount": Decimal('2000.00')},
{"account_id": "1000", "type": EntryType.CREDIT, "amount": Decimal('2000.00')}
]
},
{
"date": datetime.now(),
"description": "Pay utilities",
"entries": [
{"account_id": "6200", "type": EntryType.DEBIT, "amount": Decimal('150.00')},
{"account_id": "1000", "type": EntryType.CREDIT, "amount": Decimal('150.00')}
]
}
]
for tx_data in transactions:
ledger.record_transaction(
workspace_id="test",
transaction_date=tx_data["date"],
description=tx_data["description"],
entries=tx_data["entries"],
source="test"
)
# Get account balances
assets = {}
liabilities = {}
revenue = {}
expenses = {}
for account in chart_of_accounts:
balance = ledger.get_account_balance(account.id)
if account.type == AccountType.ASSET:
assets[account.name] = balance
elif account.type == AccountType.LIABILITY:
liabilities[account.name] = balance
elif account.type == AccountType.REVENUE:
revenue[account.name] = balance
elif account.type == AccountType.EXPENSE:
expenses[account.name] = balance
# Calculate total equity: Revenue - Expenses
total_revenue = sum(revenue.values(), Decimal('0.00'))
total_expenses = sum(expenses.values(), Decimal('0.00'))
total_equity = total_revenue - total_expenses
# Verify balance sheet: Assets = Liabilities + (Revenue - Expenses)
assert assets["Cash"] == Decimal('7850.00') # 10000 - 2000 - 150
assert total_revenue == Decimal('10000.00')
assert total_expenses == Decimal('2150.00') # 2000 + 150
assert total_equity == Decimal('7850.00') # 10000 - 2150
# Verify balance sheet equation: Assets = Liabilities + Equity
total_assets = sum(assets.values(), Decimal('0.00'))
total_liabilities = sum(liabilities.values(), Decimal('0.00'))
assert total_assets == total_liabilities + total_equity
def test_high_confidence_auto_post(self, db_session: Session):
"""Test that high confidence transactions auto-post"""
engine = AIAccountingEngine()
# Create transaction that will match pattern
tx = Transaction(
id="tx_auto",
date=datetime.now(),
amount=Decimal('500.00'),
description="rent payment for office",
merchant="Landlord"
)
result = engine.ingest_transaction(tx)
# Should auto-categorize (matches "rent" keyword and "Landlord" pattern)
if result.confidence >= engine.CONFIDENCE_THRESHOLD:
assert result.status == TransactionStatus.CATEGORIZED
# Should be able to post
posted = engine.auto_post_high_confidence()
assert posted >= 1
else:
# Should go to review
assert result.status == TransactionStatus.REVIEW_REQUIRED
def test_low_confidence_requires_review(self, db_session: Session):
"""Test that low confidence transactions require review"""
engine = AIAccountingEngine()
# Create transaction with no obvious patterns
tx = Transaction(
id="tx_review",
date=datetime.now(),
amount=Decimal('123.45'),
description="unknown transaction xyz",
merchant="UnknownVendor123"
)
result = engine.ingest_transaction(tx)
# Should require review (low confidence)
if result.confidence < engine.CONFIDENCE_THRESHOLD:
assert result.status == TransactionStatus.REVIEW_REQUIRED
assert tx.id in engine._pending_review
def test_decimal_precision_throughout_workflow(self, db_session: Session):
"""Test that Decimal precision is maintained throughout workflow"""
engine = AIAccountingEngine()
# Use amounts that would lose precision with float
amounts = [
Decimal('0.01'),
Decimal('0.10'),
Decimal('1.11'),
Decimal('10.50'),
Decimal('999999.99')
]
for amount in amounts:
tx = Transaction(
id=f"tx_{amount}",
date=datetime.now(),
amount=amount,
description=f"Test {amount}",
merchant="Test"
)
result = engine.ingest_transaction(tx)
# Verify precision preserved
assert result.amount == amount
assert isinstance(result.amount, Decimal)
assert str(result.amount) == str(amount)
class TestEdgeCases:
"""Tests for edge cases in transaction workflow"""
def test_zero_amount_transaction(self, db_session: Session):
"""Test handling of zero amount transactions"""
engine = AIAccountingEngine()
tx = Transaction(
id="tx_zero",
date=datetime.now(),
amount=Decimal('0.00'),
description="Zero amount test",
merchant="Test"
)
result = engine.ingest_transaction(tx)
assert result.amount == Decimal('0.00')
def test_large_amount_transaction(self, db_session: Session):
"""Test handling of large amount transactions"""
engine = AIAccountingEngine()
tx = Transaction(
id="tx_large",
date=datetime.now(),
amount=Decimal('99999999.99'),
description="Large amount test",
merchant="Test"
)
result = engine.ingest_transaction(tx)
assert result.amount == Decimal('99999999.99')
def test_fractional_cent_rounding(self, db_session: Session):
"""Test that fractional cents are rounded correctly"""
amount = Decimal('100.005')
# Round to cents
rounded = round_money(amount, places=2)
assert rounded == Decimal('100.01') # ROUND_HALF_UP
assert rounded.as_tuple().exponent == -2
|