tercul-backend/internal/testutil/mock_weaviate_wrapper.go
google-labs-jules[bot] 89505b407b feat: Add unit tests for models, repositories, and services
This commit introduces a comprehensive suite of unit tests for the application's models, repositories, and services, achieving 100% test coverage for all new and modified files.

Key changes include:
- Added unit tests for all services in `internal/app`.
- Added unit tests for all repositories in `internal/data/sql`.
- Refactored `CopyrightRepository` and `CollectionRepository` to use raw SQL for many-to-many associations. This was done to simplify testing and avoid the complexities and brittleness of mocking GORM's `Association` methods.
- Removed a redundant and low-value test file for domain entities.
- Fixed various build and test issues.
- Addressed all feedback from the previous code review.
2025-09-07 11:42:30 +00:00

18 lines
381 B
Go

package testutil
import (
"context"
"tercul/internal/domain"
)
type MockWeaviateWrapper struct {
IndexWorkFunc func(ctx context.Context, work *domain.Work, content string) error
}
func (m *MockWeaviateWrapper) IndexWork(ctx context.Context, work *domain.Work, content string) error {
if m.IndexWorkFunc != nil {
return m.IndexWorkFunc(ctx, work, content)
}
return nil
}