mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
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.
149 lines
4.3 KiB
Go
149 lines
4.3 KiB
Go
package sql_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"tercul/internal/data/sql"
|
|
"tercul/internal/domain"
|
|
"tercul/internal/domain/work"
|
|
"tercul/internal/testutil"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type WorkRepositoryTestSuite struct {
|
|
testutil.IntegrationTestSuite
|
|
WorkRepo work.WorkRepository
|
|
}
|
|
|
|
func (s *WorkRepositoryTestSuite) SetupSuite() {
|
|
s.IntegrationTestSuite.SetupSuite(testutil.DefaultTestConfig())
|
|
s.WorkRepo = sql.NewWorkRepository(s.DB)
|
|
}
|
|
|
|
func (s *WorkRepositoryTestSuite) TestCreateWork() {
|
|
s.Run("should create a new work with a copyright", func() {
|
|
// Arrange
|
|
copyright := &domain.Copyright{
|
|
Name: "Test Copyright",
|
|
Identificator: "TC-123",
|
|
}
|
|
s.Require().NoError(s.DB.Create(copyright).Error)
|
|
|
|
workModel := &work.Work{
|
|
Title: "New Test Work",
|
|
TranslatableModel: domain.TranslatableModel{
|
|
Language: "en",
|
|
},
|
|
Copyrights: []*domain.Copyright{copyright},
|
|
}
|
|
|
|
// Act
|
|
err := s.WorkRepo.Create(context.Background(), workModel)
|
|
|
|
// Assert
|
|
s.Require().NoError(err)
|
|
s.NotZero(workModel.ID)
|
|
|
|
// Verify that the work was actually created in the database
|
|
var foundWork work.Work
|
|
err = s.DB.Preload("Copyrights").First(&foundWork, workModel.ID).Error
|
|
s.Require().NoError(err)
|
|
s.Equal("New Test Work", foundWork.Title)
|
|
s.Equal("en", foundWork.Language)
|
|
s.Require().Len(foundWork.Copyrights, 1)
|
|
s.Equal("Test Copyright", foundWork.Copyrights[0].Name)
|
|
})
|
|
}
|
|
|
|
func (s *WorkRepositoryTestSuite) TestGetWorkByID() {
|
|
s.Run("should return a work by ID with copyrights", func() {
|
|
// Arrange
|
|
copyright := &domain.Copyright{
|
|
Name: "Test Copyright",
|
|
Identificator: "TC-123",
|
|
}
|
|
s.Require().NoError(s.DB.Create(copyright).Error)
|
|
|
|
workModel := s.CreateTestWork("Test Work", "en", "Test content")
|
|
s.Require().NoError(s.DB.Model(workModel).Association("Copyrights").Append(copyright))
|
|
|
|
// Act
|
|
foundWork, err := s.WorkRepo.GetByID(context.Background(), workModel.ID)
|
|
|
|
// Assert
|
|
s.Require().NoError(err)
|
|
s.Require().NotNil(foundWork)
|
|
s.Equal(workModel.ID, foundWork.ID)
|
|
s.Equal("Test Work", foundWork.Title)
|
|
})
|
|
|
|
s.Run("should return error if work not found", func() {
|
|
// Act
|
|
foundWork, err := s.WorkRepo.GetByID(context.Background(), 999)
|
|
|
|
// Assert
|
|
s.Require().Error(err)
|
|
s.Nil(foundWork)
|
|
})
|
|
}
|
|
|
|
func (s *WorkRepositoryTestSuite) TestUpdateWork() {
|
|
s.Run("should update an existing work and its copyrights", func() {
|
|
// Arrange
|
|
copyright1 := &domain.Copyright{Name: "C1", Identificator: "C1"}
|
|
copyright2 := &domain.Copyright{Name: "C2", Identificator: "C2"}
|
|
s.Require().NoError(s.DB.Create(©right1).Error)
|
|
s.Require().NoError(s.DB.Create(©right2).Error)
|
|
|
|
workModel := s.CreateTestWork("Original Title", "en", "Original content")
|
|
s.Require().NoError(s.DB.Model(workModel).Association("Copyrights").Append(copyright1))
|
|
|
|
workModel.Title = "Updated Title"
|
|
s.Require().NoError(s.DB.Model(workModel).Association("Copyrights").Replace(copyright2))
|
|
|
|
// Act
|
|
err := s.WorkRepo.Update(context.Background(), workModel)
|
|
|
|
// Assert
|
|
s.Require().NoError(err)
|
|
|
|
// Verify that the work was actually updated in the database
|
|
var foundWork work.Work
|
|
err = s.DB.Preload("Copyrights").First(&foundWork, workModel.ID).Error
|
|
s.Require().NoError(err)
|
|
s.Equal("Updated Title", foundWork.Title)
|
|
s.Require().Len(foundWork.Copyrights, 1)
|
|
s.Equal("C2", foundWork.Copyrights[0].Name)
|
|
})
|
|
}
|
|
|
|
func (s *WorkRepositoryTestSuite) TestDeleteWork() {
|
|
s.Run("should delete an existing work and its associations", func() {
|
|
// Arrange
|
|
workModel := s.CreateTestWork("To Be Deleted", "en", "Content")
|
|
copyright := &domain.Copyright{Name: "C1", Identificator: "C1"}
|
|
s.Require().NoError(s.DB.Create(copyright).Error)
|
|
s.Require().NoError(s.DB.Model(workModel).Association("Copyrights").Append(copyright))
|
|
|
|
// Act
|
|
err := s.WorkRepo.Delete(context.Background(), workModel.ID)
|
|
|
|
// Assert
|
|
s.Require().NoError(err)
|
|
|
|
// Verify that the work was actually deleted from the database
|
|
var foundWork work.Work
|
|
err = s.DB.First(&foundWork, workModel.ID).Error
|
|
s.Require().Error(err)
|
|
|
|
// Verify that the association in the join table is also deleted
|
|
var count int64
|
|
s.DB.Table("work_copyrights").Where("work_id = ?", workModel.ID).Count(&count)
|
|
s.Zero(count)
|
|
})
|
|
}
|
|
|
|
func TestWorkRepository(t *testing.T) {
|
|
suite.Run(t, new(WorkRepositoryTestSuite))
|
|
} |