tercul-backend/internal/app/copyright/queries_test.go
google-labs-jules[bot] 06e6e2be85 refactor(domain): Isolate Work aggregate
This commit isolates the `Work` aggregate into its own package at `internal/domain/work`, following the first step of the refactoring plan in `refactor.md`.

- The `Work` struct, related types, and the `WorkRepository` interface have been moved to the new package.
- A circular dependency between `domain` and `work` was resolved by moving the `AnalyticsRepository` to the `app` layer.
- All references to the moved types have been updated across the entire codebase to fix compilation errors.
- Test files, including mocks and integration tests, have been updated to reflect the new structure.
2025-10-03 16:15:09 +00:00

233 lines
8.5 KiB
Go

package copyright
import (
"context"
"errors"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/suite"
"tercul/internal/domain"
"tercul/internal/domain/work"
"testing"
)
type CopyrightQueriesSuite struct {
suite.Suite
repo *mockCopyrightRepository
workRepo *mockWorkRepository
authorRepo *mockAuthorRepository
bookRepo *mockBookRepository
publisherRepo *mockPublisherRepository
sourceRepo *mockSourceRepository
queries *CopyrightQueries
}
func (s *CopyrightQueriesSuite) SetupTest() {
s.repo = &mockCopyrightRepository{}
s.workRepo = &mockWorkRepository{}
s.authorRepo = &mockAuthorRepository{}
s.bookRepo = &mockBookRepository{}
s.publisherRepo = &mockPublisherRepository{}
s.sourceRepo = &mockSourceRepository{}
s.queries = NewCopyrightQueries(s.repo, s.workRepo, s.authorRepo, s.bookRepo, s.publisherRepo, s.sourceRepo)
}
func TestCopyrightQueriesSuite(t *testing.T) {
suite.Run(t, new(CopyrightQueriesSuite))
}
func (s *CopyrightQueriesSuite) TestGetCopyrightByID_Success() {
copyright := &domain.Copyright{Name: "Test Copyright"}
copyright.ID = 1
s.repo.getByIDFunc = func(ctx context.Context, id uint) (*domain.Copyright, error) {
return copyright, nil
}
c, err := s.queries.GetCopyrightByID(context.Background(), 1)
assert.NoError(s.T(), err)
assert.Equal(s.T(), copyright, c)
}
func (s *CopyrightQueriesSuite) TestGetCopyrightByID_ZeroID() {
c, err := s.queries.GetCopyrightByID(context.Background(), 0)
assert.Error(s.T(), err)
assert.Nil(s.T(), c)
}
func (s *CopyrightQueriesSuite) TestListCopyrights_Success() {
copyrights := []domain.Copyright{{Name: "Test Copyright"}}
s.repo.listAllFunc = func(ctx context.Context) ([]domain.Copyright, error) {
return copyrights, nil
}
c, err := s.queries.ListCopyrights(context.Background())
assert.NoError(s.T(), err)
assert.Equal(s.T(), copyrights, c)
}
func (s *CopyrightQueriesSuite) TestGetCopyrightsForAuthor_RepoError() {
s.authorRepo.getByIDWithOptionsFunc = func(ctx context.Context, id uint, options *domain.QueryOptions) (*domain.Author, error) {
return nil, errors.New("db error")
}
c, err := s.queries.GetCopyrightsForAuthor(context.Background(), 1)
assert.Error(s.T(), err)
assert.Nil(s.T(), c)
}
func (s *CopyrightQueriesSuite) TestGetCopyrightsForBook_RepoError() {
s.bookRepo.getByIDWithOptionsFunc = func(ctx context.Context, id uint, options *domain.QueryOptions) (*domain.Book, error) {
return nil, errors.New("db error")
}
c, err := s.queries.GetCopyrightsForBook(context.Background(), 1)
assert.Error(s.T(), err)
assert.Nil(s.T(), c)
}
func (s *CopyrightQueriesSuite) TestGetCopyrightsForPublisher_RepoError() {
s.publisherRepo.getByIDWithOptionsFunc = func(ctx context.Context, id uint, options *domain.QueryOptions) (*domain.Publisher, error) {
return nil, errors.New("db error")
}
c, err := s.queries.GetCopyrightsForPublisher(context.Background(), 1)
assert.Error(s.T(), err)
assert.Nil(s.T(), c)
}
func (s *CopyrightQueriesSuite) TestGetCopyrightsForSource_RepoError() {
s.sourceRepo.getByIDWithOptionsFunc = func(ctx context.Context, id uint, options *domain.QueryOptions) (*domain.Source, error) {
return nil, errors.New("db error")
}
c, err := s.queries.GetCopyrightsForSource(context.Background(), 1)
assert.Error(s.T(), err)
assert.Nil(s.T(), c)
}
func (s *CopyrightQueriesSuite) TestGetCopyrightsForWork_Success() {
copyrights := []*domain.Copyright{{Name: "Test Copyright"}}
s.workRepo.getByIDWithOptionsFunc = func(ctx context.Context, id uint, options *domain.QueryOptions) (*work.Work, error) {
return &work.Work{Copyrights: copyrights}, nil
}
c, err := s.queries.GetCopyrightsForWork(context.Background(), 1)
assert.NoError(s.T(), err)
assert.Equal(s.T(), copyrights, c)
}
func (s *CopyrightQueriesSuite) TestGetCopyrightsForWork_RepoError() {
s.workRepo.getByIDWithOptionsFunc = func(ctx context.Context, id uint, options *domain.QueryOptions) (*work.Work, error) {
return nil, errors.New("db error")
}
c, err := s.queries.GetCopyrightsForWork(context.Background(), 1)
assert.Error(s.T(), err)
assert.Nil(s.T(), c)
}
func (s *CopyrightQueriesSuite) TestGetCopyrightsForAuthor_Success() {
copyrights := []*domain.Copyright{{Name: "Test Copyright"}}
s.authorRepo.getByIDWithOptionsFunc = func(ctx context.Context, id uint, options *domain.QueryOptions) (*domain.Author, error) {
return &domain.Author{Copyrights: copyrights}, nil
}
c, err := s.queries.GetCopyrightsForAuthor(context.Background(), 1)
assert.NoError(s.T(), err)
assert.Equal(s.T(), copyrights, c)
}
func (s *CopyrightQueriesSuite) TestGetCopyrightsForBook_Success() {
copyrights := []*domain.Copyright{{Name: "Test Copyright"}}
s.bookRepo.getByIDWithOptionsFunc = func(ctx context.Context, id uint, options *domain.QueryOptions) (*domain.Book, error) {
return &domain.Book{Copyrights: copyrights}, nil
}
c, err := s.queries.GetCopyrightsForBook(context.Background(), 1)
assert.NoError(s.T(), err)
assert.Equal(s.T(), copyrights, c)
}
func (s *CopyrightQueriesSuite) TestGetCopyrightsForPublisher_Success() {
copyrights := []*domain.Copyright{{Name: "Test Copyright"}}
s.publisherRepo.getByIDWithOptionsFunc = func(ctx context.Context, id uint, options *domain.QueryOptions) (*domain.Publisher, error) {
return &domain.Publisher{Copyrights: copyrights}, nil
}
c, err := s.queries.GetCopyrightsForPublisher(context.Background(), 1)
assert.NoError(s.T(), err)
assert.Equal(s.T(), copyrights, c)
}
func (s *CopyrightQueriesSuite) TestGetCopyrightsForSource_Success() {
copyrights := []*domain.Copyright{{Name: "Test Copyright"}}
s.sourceRepo.getByIDWithOptionsFunc = func(ctx context.Context, id uint, options *domain.QueryOptions) (*domain.Source, error) {
return &domain.Source{Copyrights: copyrights}, nil
}
c, err := s.queries.GetCopyrightsForSource(context.Background(), 1)
assert.NoError(s.T(), err)
assert.Equal(s.T(), copyrights, c)
}
func (s *CopyrightQueriesSuite) TestGetTranslations_Success() {
translations := []domain.CopyrightTranslation{{Message: "Test"}}
s.repo.getTranslationsFunc = func(ctx context.Context, copyrightID uint) ([]domain.CopyrightTranslation, error) {
return translations, nil
}
t, err := s.queries.GetTranslations(context.Background(), 1)
assert.NoError(s.T(), err)
assert.Equal(s.T(), translations, t)
}
func (s *CopyrightQueriesSuite) TestGetTranslations_ZeroID() {
t, err := s.queries.GetTranslations(context.Background(), 0)
assert.Error(s.T(), err)
assert.Nil(s.T(), t)
}
func (s *CopyrightQueriesSuite) TestGetCopyrightByID_RepoError() {
s.repo.getByIDFunc = func(ctx context.Context, id uint) (*domain.Copyright, error) {
return nil, errors.New("db error")
}
c, err := s.queries.GetCopyrightByID(context.Background(), 1)
assert.Error(s.T(), err)
assert.Nil(s.T(), c)
}
func (s *CopyrightQueriesSuite) TestListCopyrights_RepoError() {
s.repo.listAllFunc = func(ctx context.Context) ([]domain.Copyright, error) {
return nil, errors.New("db error")
}
c, err := s.queries.ListCopyrights(context.Background())
assert.Error(s.T(), err)
assert.Nil(s.T(), c)
}
func (s *CopyrightQueriesSuite) TestGetTranslations_RepoError() {
s.repo.getTranslationsFunc = func(ctx context.Context, copyrightID uint) ([]domain.CopyrightTranslation, error) {
return nil, errors.New("db error")
}
t, err := s.queries.GetTranslations(context.Background(), 1)
assert.Error(s.T(), err)
assert.Nil(s.T(), t)
}
func (s *CopyrightQueriesSuite) TestGetTranslationByLanguage_RepoError() {
s.repo.getTranslationByLanguageFunc = func(ctx context.Context, copyrightID uint, languageCode string) (*domain.CopyrightTranslation, error) {
return nil, errors.New("db error")
}
t, err := s.queries.GetTranslationByLanguage(context.Background(), 1, "en")
assert.Error(s.T(), err)
assert.Nil(s.T(), t)
}
func (s *CopyrightQueriesSuite) TestGetTranslationByLanguage_Success() {
translation := &domain.CopyrightTranslation{Message: "Test"}
s.repo.getTranslationByLanguageFunc = func(ctx context.Context, copyrightID uint, languageCode string) (*domain.CopyrightTranslation, error) {
return translation, nil
}
t, err := s.queries.GetTranslationByLanguage(context.Background(), 1, "en")
assert.NoError(s.T(), err)
assert.Equal(s.T(), translation, t)
}
func (s *CopyrightQueriesSuite) TestGetTranslationByLanguage_ZeroID() {
t, err := s.queries.GetTranslationByLanguage(context.Background(), 0, "en")
assert.Error(s.T(), err)
assert.Nil(s.T(), t)
}
func (s *CopyrightQueriesSuite) TestGetTranslationByLanguage_EmptyLang() {
t, err := s.queries.GetTranslationByLanguage(context.Background(), 1, "")
assert.Error(s.T(), err)
assert.Nil(s.T(), t)
}