You've already forked openaccounting-server
forked from cybercinch/openaccounting-server
- Replace SQL-based queries with GORM repository calls - Update all model interfaces to use repository pattern - Fix compilation errors in core/model/ files - Update mocks to match new repository interfaces - Modify API handlers to use new repository layer - Maintain backward compatibility with existing interfaces 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
151 lines
2.7 KiB
Go
151 lines
2.7 KiB
Go
package model
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/openaccounting/oa-server/core/mocks"
|
|
"github.com/openaccounting/oa-server/core/model/types"
|
|
"github.com/openaccounting/oa-server/core/util"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCreatePrice(t *testing.T) {
|
|
|
|
price := types.Price{
|
|
Id: "1",
|
|
OrgId: "2",
|
|
Currency: "BTC",
|
|
Date: time.Unix(0, 0),
|
|
Inserted: time.Unix(0, 0),
|
|
Updated: time.Unix(0, 0),
|
|
Price: 6700,
|
|
}
|
|
|
|
badPrice := types.Price{
|
|
Id: "1",
|
|
OrgId: "2",
|
|
Currency: "",
|
|
Date: time.Unix(0, 0),
|
|
Inserted: time.Unix(0, 0),
|
|
Updated: time.Unix(0, 0),
|
|
Price: 6700,
|
|
}
|
|
|
|
badOrg := types.Price{
|
|
Id: "1",
|
|
OrgId: "1",
|
|
Currency: "BTC",
|
|
Date: time.Unix(0, 0),
|
|
Inserted: time.Unix(0, 0),
|
|
Updated: time.Unix(0, 0),
|
|
Price: 6700,
|
|
}
|
|
|
|
tests := map[string]struct {
|
|
err error
|
|
price types.Price
|
|
}{
|
|
"successful": {
|
|
err: nil,
|
|
price: price,
|
|
},
|
|
"with error": {
|
|
err: errors.New("currency required"),
|
|
price: badPrice,
|
|
},
|
|
"with org error": {
|
|
err: errors.New("User does not belong to org"),
|
|
price: badOrg,
|
|
},
|
|
}
|
|
|
|
for name, test := range tests {
|
|
t.Logf("Running test case: %s", name)
|
|
|
|
price := test.price
|
|
userId := "3"
|
|
|
|
db := &mocks.Datastore{}
|
|
|
|
db.On("GetOrgs", userId).Return([]*types.Org{
|
|
{
|
|
Id: "2",
|
|
},
|
|
}, nil)
|
|
|
|
db.On("InsertPrice", &test.price).Return(nil)
|
|
|
|
db.On("GetOrgUserIds", price.OrgId).Return([]string{userId}, nil)
|
|
|
|
model := NewModel(db, &util.StandardBcrypt{}, types.Config{})
|
|
|
|
err := model.CreatePrice(&price, userId)
|
|
|
|
assert.Equal(t, test.err, err)
|
|
}
|
|
}
|
|
|
|
func TestDeletePrice(t *testing.T) {
|
|
|
|
price := types.Price{
|
|
Id: "1",
|
|
OrgId: "2",
|
|
Currency: "BTC",
|
|
Date: time.Unix(0, 0),
|
|
Inserted: time.Unix(0, 0),
|
|
Updated: time.Unix(0, 0),
|
|
Price: 6700,
|
|
}
|
|
|
|
tests := map[string]struct {
|
|
err error
|
|
userId string
|
|
price types.Price
|
|
}{
|
|
"successful": {
|
|
err: nil,
|
|
price: price,
|
|
userId: "3",
|
|
},
|
|
"with org error": {
|
|
err: errors.New("User does not belong to org"),
|
|
price: price,
|
|
userId: "4",
|
|
},
|
|
}
|
|
|
|
for name, test := range tests {
|
|
t.Logf("Running test case: %s", name)
|
|
|
|
price := test.price
|
|
|
|
db := &mocks.Datastore{}
|
|
|
|
db.On("GetPriceById", price.Id).Return(&price, nil)
|
|
|
|
db.On("GetOrgs", "3").Return([]*types.Org{
|
|
{
|
|
Id: "2",
|
|
},
|
|
}, nil)
|
|
|
|
db.On("GetOrgs", "4").Return([]*types.Org{
|
|
{
|
|
Id: "7",
|
|
},
|
|
}, nil)
|
|
|
|
db.On("DeletePrice", price.Id).Return(nil)
|
|
|
|
db.On("GetOrgUserIds", price.OrgId).Return([]string{test.userId}, nil)
|
|
|
|
model := NewModel(db, &util.StandardBcrypt{}, types.Config{})
|
|
|
|
err := model.DeletePrice(price.Id, test.userId)
|
|
|
|
assert.Equal(t, test.err, err)
|
|
}
|
|
}
|