224 lines
6.6 KiB
Go
224 lines
6.6 KiB
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"testing"
|
|
|
|
"wucher/internal/domain/forces_present"
|
|
)
|
|
|
|
type forcesPresentRepoMock struct {
|
|
createCalled bool
|
|
updateCalled bool
|
|
deleteCalled bool
|
|
getByIDCalled bool
|
|
listCalled bool
|
|
|
|
lastCreate *forces_present.ForcesPresent
|
|
lastUpdate *forces_present.ForcesPresent
|
|
lastDeleteID []byte
|
|
lastDeleteBy []byte
|
|
lastGetByID []byte
|
|
lastListFilter string
|
|
lastListSort string
|
|
lastListLimit int
|
|
lastListOffset int
|
|
|
|
getByIDResult *forces_present.ForcesPresent
|
|
listResult []forces_present.ForcesPresent
|
|
listTotal int64
|
|
|
|
createErr error
|
|
updateErr error
|
|
deleteErr error
|
|
getByIDErr error
|
|
listErr error
|
|
}
|
|
|
|
func (m *forcesPresentRepoMock) Create(_ context.Context, row *forces_present.ForcesPresent) error {
|
|
m.createCalled = true
|
|
m.lastCreate = row
|
|
return m.createErr
|
|
}
|
|
|
|
func (m *forcesPresentRepoMock) Update(_ context.Context, row *forces_present.ForcesPresent) error {
|
|
m.updateCalled = true
|
|
m.lastUpdate = row
|
|
return m.updateErr
|
|
}
|
|
|
|
func (m *forcesPresentRepoMock) Delete(_ context.Context, id []byte, deletedBy []byte) error {
|
|
m.deleteCalled = true
|
|
m.lastDeleteID = id
|
|
m.lastDeleteBy = deletedBy
|
|
return m.deleteErr
|
|
}
|
|
|
|
func (m *forcesPresentRepoMock) GetByID(_ context.Context, id []byte) (*forces_present.ForcesPresent, error) {
|
|
m.getByIDCalled = true
|
|
m.lastGetByID = id
|
|
return m.getByIDResult, m.getByIDErr
|
|
}
|
|
|
|
func (m *forcesPresentRepoMock) List(_ context.Context, filter, sort string, limit, offset int) ([]forces_present.ForcesPresent, int64, error) {
|
|
m.listCalled = true
|
|
m.lastListFilter = filter
|
|
m.lastListSort = sort
|
|
m.lastListLimit = limit
|
|
m.lastListOffset = offset
|
|
return m.listResult, m.listTotal, m.listErr
|
|
}
|
|
|
|
func TestNewForcesPresentService(t *testing.T) {
|
|
repo := &forcesPresentRepoMock{}
|
|
svc := NewForcesPresentService(repo)
|
|
if svc == nil || svc.repo == nil {
|
|
t.Fatalf("expected service and repo initialized")
|
|
}
|
|
}
|
|
|
|
func TestForcesPresentServiceCreate(t *testing.T) {
|
|
repo := &forcesPresentRepoMock{}
|
|
svc := NewForcesPresentService(repo)
|
|
row := &forces_present.ForcesPresent{Name: "Team A"}
|
|
|
|
if err := svc.Create(context.Background(), row); err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
if !repo.createCalled || repo.lastCreate != row {
|
|
t.Fatalf("expected Create forwarded to repo")
|
|
}
|
|
|
|
repo.createErr = errors.New("create failed")
|
|
if err := svc.Create(context.Background(), row); err == nil {
|
|
t.Fatalf("expected error from repo")
|
|
}
|
|
}
|
|
|
|
func TestForcesPresentServiceUpdate(t *testing.T) {
|
|
repo := &forcesPresentRepoMock{}
|
|
svc := NewForcesPresentService(repo)
|
|
row := &forces_present.ForcesPresent{Name: "Team B"}
|
|
|
|
if err := svc.Update(context.Background(), row); err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
if !repo.updateCalled || repo.lastUpdate != row {
|
|
t.Fatalf("expected Update forwarded to repo")
|
|
}
|
|
|
|
repo.updateErr = errors.New("update failed")
|
|
if err := svc.Update(context.Background(), row); err == nil {
|
|
t.Fatalf("expected error from repo")
|
|
}
|
|
}
|
|
|
|
func TestForcesPresentServiceDelete(t *testing.T) {
|
|
repo := &forcesPresentRepoMock{}
|
|
svc := NewForcesPresentService(repo)
|
|
id := []byte("id")
|
|
deletedBy := []byte("by")
|
|
|
|
if err := svc.Delete(context.Background(), id, deletedBy); err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
if !repo.deleteCalled {
|
|
t.Fatalf("expected Delete forwarded to repo")
|
|
}
|
|
if string(repo.lastDeleteID) != string(id) || string(repo.lastDeleteBy) != string(deletedBy) {
|
|
t.Fatalf("expected delete params forwarded")
|
|
}
|
|
|
|
repo.deleteErr = errors.New("delete failed")
|
|
if err := svc.Delete(context.Background(), id, deletedBy); err == nil {
|
|
t.Fatalf("expected error from repo")
|
|
}
|
|
}
|
|
|
|
func TestForcesPresentServiceGetByID(t *testing.T) {
|
|
expected := &forces_present.ForcesPresent{Name: "Team A"}
|
|
repo := &forcesPresentRepoMock{getByIDResult: expected}
|
|
svc := NewForcesPresentService(repo)
|
|
id := []byte("id")
|
|
|
|
got, err := svc.GetByID(context.Background(), id)
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
if got != expected {
|
|
t.Fatalf("unexpected result")
|
|
}
|
|
if !repo.getByIDCalled || string(repo.lastGetByID) != string(id) {
|
|
t.Fatalf("expected GetByID forwarded")
|
|
}
|
|
|
|
repo.getByIDErr = errors.New("get failed")
|
|
if _, err := svc.GetByID(context.Background(), id); err == nil {
|
|
t.Fatalf("expected error from repo")
|
|
}
|
|
}
|
|
|
|
func TestForcesPresentServiceList(t *testing.T) {
|
|
repo := &forcesPresentRepoMock{
|
|
listResult: []forces_present.ForcesPresent{{Name: "Team A"}},
|
|
listTotal: 1,
|
|
}
|
|
svc := NewForcesPresentService(repo)
|
|
|
|
rows, total, err := svc.List(context.Background(), "find", "name", 10, 20)
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
if len(rows) != 1 || total != 1 {
|
|
t.Fatalf("unexpected list result")
|
|
}
|
|
if !repo.listCalled {
|
|
t.Fatalf("expected List forwarded to repo")
|
|
}
|
|
if repo.lastListFilter != "find" || repo.lastListSort != "name ASC" || repo.lastListLimit != 10 || repo.lastListOffset != 20 {
|
|
t.Fatalf("unexpected list args forwarded")
|
|
}
|
|
|
|
rows, total, err = svc.List(context.Background(), "find", "sortkey", 10, 20)
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
if len(rows) != 1 || total != 1 {
|
|
t.Fatalf("unexpected list result")
|
|
}
|
|
if repo.lastListSort != "is_active DESC, CASE WHEN is_active = 1 AND sortkey IS NOT NULL AND sortkey >= 0 THEN 0 ELSE 1 END ASC, CASE WHEN is_active = 1 AND sortkey IS NOT NULL AND sortkey >= 0 THEN sortkey END ASC, name ASC" {
|
|
t.Fatalf("unexpected sortkey args forwarded: %q", repo.lastListSort)
|
|
}
|
|
|
|
repo.listErr = errors.New("list failed")
|
|
if _, _, err := svc.List(context.Background(), "", "unknown", 1, 0); err == nil {
|
|
t.Fatalf("expected error from repo")
|
|
}
|
|
}
|
|
|
|
func TestNormalizeForcesPresentSort(t *testing.T) {
|
|
cases := map[string]string{
|
|
"name": "name ASC",
|
|
"-name": "name DESC",
|
|
"sortkey": "is_active DESC, CASE WHEN is_active = 1 AND sortkey IS NOT NULL AND sortkey >= 0 THEN 0 ELSE 1 END ASC, CASE WHEN is_active = 1 AND sortkey IS NOT NULL AND sortkey >= 0 THEN sortkey END ASC, name ASC",
|
|
"-sortkey": "is_active DESC, CASE WHEN is_active = 1 AND sortkey IS NOT NULL AND sortkey >= 0 THEN 0 ELSE 1 END ASC, CASE WHEN is_active = 1 AND sortkey IS NOT NULL AND sortkey >= 0 THEN sortkey END DESC, name ASC",
|
|
"note": "note ASC",
|
|
"-note": "note DESC",
|
|
"is_active": "is_active ASC",
|
|
"-is_active": "is_active DESC",
|
|
"created_at": "created_at ASC",
|
|
"-created_at": "created_at DESC",
|
|
"updated_at": "updated_at ASC",
|
|
"-updated_at": "updated_at DESC",
|
|
"unknown": "",
|
|
"": "",
|
|
}
|
|
|
|
for in, want := range cases {
|
|
if got := normalizeForcesPresentSort(in); got != want {
|
|
t.Fatalf("normalizeForcesPresentSort(%q) = %q, want %q", in, got, want)
|
|
}
|
|
}
|
|
}
|