mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
This commit introduces a significant refactoring to improve the application's quality, test coverage, and production readiness, focusing on core localization and business logic features. Key changes include: - Consolidated the `CreateTranslation` and `UpdateTranslation` commands into a single, more robust `CreateOrUpdateTranslation` command. This uses a database-level `Upsert` for atomicity. - Centralized authorization for translatable entities into a new `CanEditEntity` check within the application service layer. - Fixed a critical bug in the `MergeWork` command that caused a UNIQUE constraint violation when merging works with conflicting translations. The logic now intelligently handles language conflicts. - Implemented decrementing for "like" counts in the analytics service when a like is deleted, ensuring accurate statistics. - Stabilized the test suite by switching to a file-based database for integration tests, fixing test data isolation issues, and adding a unique index to the `Translation` model to enforce data integrity. - Refactored manual mocks to use the `testify/mock` library for better consistency and maintainability.
98 lines
4.1 KiB
Go
98 lines
4.1 KiB
Go
package testutil
|
|
|
|
import (
|
|
"context"
|
|
|
|
"tercul/internal/domain"
|
|
"tercul/internal/domain/work"
|
|
|
|
"github.com/stretchr/testify/mock"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
// MockWorkRepository is a mock implementation of the work.WorkRepository interface.
|
|
type MockWorkRepository struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// Ensure MockWorkRepository implements the interface.
|
|
var _ work.WorkRepository = (*MockWorkRepository)(nil)
|
|
|
|
// GetByID mocks the GetByID method.
|
|
func (m *MockWorkRepository) GetByID(ctx context.Context, id uint) (*work.Work, error) {
|
|
args := m.Called(ctx, id)
|
|
if args.Get(0) == nil {
|
|
return nil, args.Error(1)
|
|
}
|
|
return args.Get(0).(*work.Work), args.Error(1)
|
|
}
|
|
|
|
// IsAuthor mocks the IsAuthor method.
|
|
func (m *MockWorkRepository) IsAuthor(ctx context.Context, workID uint, authorID uint) (bool, error) {
|
|
args := m.Called(ctx, workID, authorID)
|
|
return args.Bool(0), args.Error(1)
|
|
}
|
|
|
|
// Empty implementations for the rest of the interface to satisfy the compiler.
|
|
func (m *MockWorkRepository) Create(ctx context.Context, entity *work.Work) error {
|
|
args := m.Called(ctx, entity)
|
|
return args.Error(0)
|
|
}
|
|
func (m *MockWorkRepository) Update(ctx context.Context, entity *work.Work) error { return nil }
|
|
func (m *MockWorkRepository) Delete(ctx context.Context, id uint) error { return nil }
|
|
func (m *MockWorkRepository) List(ctx context.Context, page, pageSize int) (*domain.PaginatedResult[work.Work], error) {
|
|
return nil, nil
|
|
}
|
|
func (m *MockWorkRepository) ListAll(ctx context.Context) ([]work.Work, error) { return nil, nil }
|
|
func (m *MockWorkRepository) Count(ctx context.Context) (int64, error) { return 0, nil }
|
|
func (m *MockWorkRepository) Exists(ctx context.Context, id uint) (bool, error) { return false, nil }
|
|
func (m *MockWorkRepository) WithTx(ctx context.Context, fn func(tx *gorm.DB) error) error { return fn(nil) }
|
|
func (m *MockWorkRepository) FindByTitle(ctx context.Context, title string) ([]work.Work, error) { return nil, nil }
|
|
func (m *MockWorkRepository) FindByAuthor(ctx context.Context, authorID uint) ([]work.Work, error) {
|
|
return nil, nil
|
|
}
|
|
func (m *MockWorkRepository) FindByCategory(ctx context.Context, categoryID uint) ([]work.Work, error) {
|
|
return nil, nil
|
|
}
|
|
func (m *MockWorkRepository) FindByLanguage(ctx context.Context, language string, page, pageSize int) (*domain.PaginatedResult[work.Work], error) {
|
|
return nil, nil
|
|
}
|
|
func (m *MockWorkRepository) GetWithTranslations(ctx context.Context, id uint) (*work.Work, error) {
|
|
return nil, nil
|
|
}
|
|
func (m *MockWorkRepository) GetWithAssociations(ctx context.Context, id uint) (*work.Work, error) {
|
|
return nil, nil
|
|
}
|
|
func (m *MockWorkRepository) GetWithAssociationsInTx(ctx context.Context, tx *gorm.DB, id uint) (*work.Work, error) {
|
|
return nil, nil
|
|
}
|
|
func (m *MockWorkRepository) ListWithTranslations(ctx context.Context, page, pageSize int) (*domain.PaginatedResult[work.Work], error) {
|
|
return nil, nil
|
|
}
|
|
func (m *MockWorkRepository) FindWithPreload(ctx context.Context, preloads []string, id uint) (*work.Work, error) {
|
|
return nil, nil
|
|
}
|
|
func (m *MockWorkRepository) GetAllForSync(ctx context.Context, batchSize, offset int) ([]work.Work, error) {
|
|
return nil, nil
|
|
}
|
|
func (m *MockWorkRepository) CreateInTx(ctx context.Context, tx *gorm.DB, entity *work.Work) error {
|
|
return nil
|
|
}
|
|
func (m *MockWorkRepository) GetByIDWithOptions(ctx context.Context, id uint, options *domain.QueryOptions) (*work.Work, error) {
|
|
args := m.Called(ctx, id, options)
|
|
if args.Get(0) == nil {
|
|
return nil, args.Error(1)
|
|
}
|
|
return args.Get(0).(*work.Work), args.Error(1)
|
|
}
|
|
func (m *MockWorkRepository) UpdateInTx(ctx context.Context, tx *gorm.DB, entity *work.Work) error {
|
|
return nil
|
|
}
|
|
func (m *MockWorkRepository) DeleteInTx(ctx context.Context, tx *gorm.DB, id uint) error { return nil }
|
|
func (m *MockWorkRepository) ListWithOptions(ctx context.Context, options *domain.QueryOptions) ([]work.Work, error) {
|
|
return nil, nil
|
|
}
|
|
func (m *MockWorkRepository) CountWithOptions(ctx context.Context, options *domain.QueryOptions) (int64, error) {
|
|
return 0, nil
|
|
}
|
|
func (m *MockWorkRepository) BeginTx(ctx context.Context) (*gorm.DB, error) { return nil, nil } |