tercul-backend/internal/testutil
google-labs-jules[bot] 9fd2331eb4 feat: Implement production-ready API patterns
This commit introduces a comprehensive set of foundational improvements to make the API more robust, secure, and observable.

The following features have been implemented:

- **Observability Stack:** A new `internal/observability` package has been added, providing structured logging with `zerolog`, Prometheus metrics, and OpenTelemetry tracing. This stack is fully integrated into the application's request pipeline.

- **Centralized Authorization:** A new `internal/app/authz` service has been created to centralize authorization logic. This service is now used by the `user`, `work`, and `comment` services to protect all Create, Update, and Delete operations.

- **Standardized Input Validation:** The previous ad-hoc validation has been replaced with a more robust, struct-tag-based system using the `go-playground/validator` library. This has been applied to all GraphQL input models.

- **Structured Error Handling:** A new set of custom error types has been introduced in the `internal/domain` package. A custom `gqlgen` error presenter has been implemented to map these domain errors to structured GraphQL error responses with specific error codes.

- **`updateUser` Endpoint:** The `updateUser` mutation has been fully implemented as a proof of concept for the new patterns, including support for partial updates and comprehensive authorization checks.

- **Test Refactoring:** The test suite has been significantly improved by decoupling mock repositories from the shared `testutil` package, resolving circular dependency issues and making the tests more maintainable.
2025-10-04 18:16:08 +00:00
..
integration_test_utils.go refactor(domain): Isolate Work aggregate 2025-10-03 16:15:09 +00:00
mock_analytics_service.go refactor(domain): Isolate Work aggregate 2025-10-03 16:15:09 +00:00
mock_base_repository.go Fix build issues and refactor for maintainability 2025-09-05 21:37:42 +00:00
mock_jwt_manager.go refactor: Refactor GraphQL tests to use mock-based unit tests 2025-10-03 09:21:41 +00:00
mock_like_repository.go refactor: Refactor GraphQL tests to use mock-based unit tests 2025-10-03 09:21:41 +00:00
mock_like_service.go refactor: Refactor GraphQL tests to use mock-based unit tests 2025-10-03 09:21:41 +00:00
mock_translation_repository.go Refactor: Introduce service layer for application logic 2025-09-09 02:28:25 +00:00
mock_user_repository.go refactor: Refactor GraphQL tests to use mock-based unit tests 2025-10-03 09:21:41 +00:00
mock_weaviate_wrapper.go refactor(domain): Isolate Work aggregate 2025-10-03 16:15:09 +00:00
simple_test_utils.go feat: Implement production-ready API patterns 2025-10-04 18:16:08 +00:00
test_entity.go Refactor repository tests to be more DRY and maintainable. 2025-09-06 13:01:04 +00:00
testutil.go feat: Implement blog schema and example content 2025-09-07 23:22:36 +00:00