1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-07-02 20:28:38 -04:00

testing: Add initial OFX investment import tests

Also fix up a "bug" caused by financial institutions not deciding on
which sign to use for an OFX field...
This commit is contained in:
2017-11-28 21:25:50 -05:00
parent 238809cd46
commit 30d4515780
3 changed files with 47 additions and 0 deletions

View File

@ -1,6 +1,7 @@
package handlers_test
import (
"github.com/aclindsa/moneygo/internal/handlers"
"net/http"
"strconv"
"testing"
@ -60,3 +61,39 @@ func TestImportOFXCreditCard(t *testing.T) {
accountBalanceHelper(t, d.clients[0], &d.accounts[7], "-4.49")
})
}
func TestImportOFX401kMutualFunds(t *testing.T) {
RunWith(t, &data[0], func(t *testing.T, d *TestData) {
// Ensure there's only one USD currency
oldDefault, err := getSecurity(d.clients[0], d.users[0].DefaultCurrency)
if err != nil {
t.Fatalf("Error fetching default security: %s\n", err)
}
d.users[0].DefaultCurrency = d.securities[0].SecurityId
if _, err := updateUser(d.clients[0], &d.users[0]); err != nil {
t.Fatalf("Error updating user: %s\n", err)
}
if err := deleteSecurity(d.clients[0], oldDefault); err != nil {
t.Fatalf("Error removing default security: %s\n", err)
}
account := &handlers.Account{
SecurityId: d.securities[0].SecurityId,
UserId: d.users[0].UserId,
ParentAccountId: -1,
Type: handlers.Investment,
Name: "401k",
}
account, err = createAccount(d.clients[0], account)
if err != nil {
t.Fatalf("Error creating 401k account: %s\n", err)
}
// Import and ensure it didn't return a nasty error code
if err = importOFX(d.clients[0], account.AccountId, "handlers_testdata/401k_mutualfunds.ofx"); err != nil {
t.Fatalf("Error importing OFX: %s\n", err)
}
accountBalanceHelper(t, d.clients[0], account, "-192.10")
})
}