mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 00:31:35 +00:00
* Fix workflow triggers to use 'main' branch instead of 'master' * Switch to semantic version tags for GitHub Actions instead of SHAs for better maintainability * Fix golangci-lint by adding go mod tidy and specifying paths ./... for linting * feat: Restructure workflows following Single Responsibility Principle - Remove old monolithic workflows (ci.yml, ci-cd.yml, cd.yml) - Add focused workflows: lint.yml, test.yml, build.yml, security.yml, docker-build.yml, deploy.yml - Each workflow has a single, clear responsibility - Follow 2025 best practices with semantic versioning, OIDC auth, build attestations - Add comprehensive README.md with workflow documentation - Configure Dependabot for automated dependency updates Workflows now run independently and can be triggered separately for better CI/CD control. * fix: Resolve CI/CD workflow failures and GraphQL integration test issues - Fix Application struct mismatch in application_builder.go - Add global config.Cfg variable and BleveIndexPath field - Regenerate GraphQL code to fix ProcessArgField errors - Add search.InitBleve() call in main.go - Fix all errcheck issues (12 total) in main.go files and test files - Fix staticcheck issues (deprecated handler.NewDefaultServer, tagged switch) - Remove all unused code (50 unused items including mock implementations) - Fix GraphQL 'transport not supported' error in integration tests - Add comprehensive database cleanup for integration tests - Update GraphQL server setup with proper error presenter * feat: Complete backend CI/CD workflow setup - Add comprehensive GitHub Actions workflows for Go backend - Build workflow with binary compilation and attestation - Test workflow with coverage reporting and race detection - Lint workflow with golangci-lint and security scanning - Docker build workflow with multi-architecture support - Deploy workflow for production deployment - Security workflow with vulnerability scanning - All workflows follow Single Responsibility Principle - Use semantic versioning and latest action versions - Enable security features: OIDC auth, attestations, minimal permissions * fix: correct Go build path to ./cmd/api - Fix build workflow to target ./cmd/api instead of ./cmd - The main.go file is located in cmd/api/ subdirectory * fix: correct Dockerfile build path to ./cmd/api - Fix Docker build to target ./cmd/api instead of root directory - The main.go file is located in cmd/api/ subdirectory
198 lines
5.8 KiB
Go
198 lines
5.8 KiB
Go
package graphql_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"tercul/internal/adapters/graphql"
|
|
"tercul/internal/adapters/graphql/model"
|
|
"tercul/internal/app/auth"
|
|
"tercul/internal/domain"
|
|
platform_auth "tercul/internal/platform/auth"
|
|
"tercul/internal/testutil"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type TranslationResolversTestSuite struct {
|
|
testutil.IntegrationTestSuite
|
|
queryResolver graphql.QueryResolver
|
|
mutationResolver graphql.MutationResolver
|
|
}
|
|
|
|
func TestTranslationResolvers(t *testing.T) {
|
|
suite.Run(t, new(TranslationResolversTestSuite))
|
|
}
|
|
|
|
func (s *TranslationResolversTestSuite) SetupSuite() {
|
|
s.IntegrationTestSuite.SetupSuite(&testutil.TestConfig{
|
|
DBPath: "translation_resolvers_test.db",
|
|
})
|
|
}
|
|
|
|
func (s *TranslationResolversTestSuite) TearDownSuite() {
|
|
s.IntegrationTestSuite.TearDownSuite()
|
|
_ = os.Remove("translation_resolvers_test.db")
|
|
}
|
|
|
|
func (s *TranslationResolversTestSuite) SetupTest() {
|
|
s.IntegrationTestSuite.SetupTest()
|
|
resolver := &graphql.Resolver{App: s.App}
|
|
s.queryResolver = resolver.Query()
|
|
s.mutationResolver = resolver.Mutation()
|
|
}
|
|
|
|
// Helper to create a user for tests
|
|
func (s *TranslationResolversTestSuite) createUser(username, email, password string, role domain.UserRole) *domain.User {
|
|
resp, err := s.App.Auth.Commands.Register(context.Background(), auth.RegisterInput{
|
|
Username: username,
|
|
Email: email,
|
|
Password: password,
|
|
})
|
|
s.Require().NoError(err)
|
|
|
|
user, err := s.App.User.Queries.User(context.Background(), resp.User.ID)
|
|
s.Require().NoError(err)
|
|
|
|
if role != user.Role {
|
|
user.Role = role
|
|
err = s.DB.Save(user).Error
|
|
s.Require().NoError(err)
|
|
}
|
|
return user
|
|
}
|
|
|
|
// Helper to create a context with JWT claims
|
|
func (s *TranslationResolversTestSuite) contextWithClaims(user *domain.User) context.Context {
|
|
return testutil.ContextWithClaims(context.Background(), &platform_auth.Claims{
|
|
UserID: user.ID,
|
|
Role: string(user.Role),
|
|
})
|
|
}
|
|
|
|
func (s *TranslationResolversTestSuite) TestCreateTranslation() {
|
|
user := s.createUser("translator", "translator@test.com", "password", domain.UserRoleContributor)
|
|
ctx := s.contextWithClaims(user)
|
|
work := s.CreateTestWork(ctx, "Test Work for Translation", "en", "Original Content")
|
|
|
|
s.Run("Success", func() {
|
|
// Arrange
|
|
content := "Translated Content"
|
|
input := model.TranslationInput{
|
|
Name: "Spanish Translation",
|
|
Language: "es",
|
|
WorkID: fmt.Sprintf("%d", work.ID),
|
|
Content: &content,
|
|
}
|
|
|
|
// Act
|
|
translation, err := s.mutationResolver.CreateTranslation(ctx, input)
|
|
|
|
// Assert
|
|
s.Require().NoError(err)
|
|
s.Require().NotNil(translation)
|
|
s.Equal("Spanish Translation", translation.Name)
|
|
s.Equal("es", translation.Language)
|
|
s.Equal("Translated Content", *translation.Content)
|
|
})
|
|
}
|
|
|
|
func (s *TranslationResolversTestSuite) TestUpdateTranslation() {
|
|
user := s.createUser("translator-updater", "translator-updater@test.com", "password", domain.UserRoleContributor)
|
|
ctx := s.contextWithClaims(user)
|
|
work := s.CreateTestWork(ctx, "Test Work for Translation Update", "en", "Original Content")
|
|
|
|
content := "Initial Translated Content"
|
|
createInput := model.TranslationInput{
|
|
Name: "Updatable Translation",
|
|
Language: "fr",
|
|
WorkID: fmt.Sprintf("%d", work.ID),
|
|
Content: &content,
|
|
}
|
|
createdTranslation, err := s.mutationResolver.CreateTranslation(ctx, createInput)
|
|
s.Require().NoError(err)
|
|
|
|
s.Run("Success", func() {
|
|
// Arrange
|
|
updatedContent := "Updated French Content"
|
|
updateInput := model.TranslationInput{
|
|
Name: "Updated French Translation",
|
|
Language: "fr",
|
|
WorkID: fmt.Sprintf("%d", work.ID),
|
|
Content: &updatedContent,
|
|
}
|
|
|
|
// Act
|
|
updatedTranslation, err := s.mutationResolver.UpdateTranslation(ctx, createdTranslation.ID, updateInput)
|
|
|
|
// Assert
|
|
s.Require().NoError(err)
|
|
s.Require().NotNil(updatedTranslation)
|
|
s.Equal("Updated French Translation", updatedTranslation.Name)
|
|
s.Equal("fr", updatedTranslation.Language)
|
|
s.Equal("Updated French Content", *updatedTranslation.Content)
|
|
})
|
|
}
|
|
|
|
func (s *TranslationResolversTestSuite) TestDeleteTranslation() {
|
|
user := s.createUser("translator-deletor", "translator-deletor@test.com", "password", domain.UserRoleContributor)
|
|
ctx := s.contextWithClaims(user)
|
|
work := s.CreateTestWork(ctx, "Test Work for Translation Deletion", "en", "Original Content")
|
|
|
|
content := "Content to be deleted"
|
|
createInput := model.TranslationInput{
|
|
Name: "Deletable Translation",
|
|
Language: "de",
|
|
WorkID: fmt.Sprintf("%d", work.ID),
|
|
Content: &content,
|
|
}
|
|
createdTranslation, err := s.mutationResolver.CreateTranslation(ctx, createInput)
|
|
s.Require().NoError(err)
|
|
|
|
s.Run("Success", func() {
|
|
// Act
|
|
ok, err := s.mutationResolver.DeleteTranslation(ctx, createdTranslation.ID)
|
|
|
|
// Assert
|
|
s.Require().NoError(err)
|
|
s.True(ok)
|
|
})
|
|
}
|
|
|
|
func (s *TranslationResolversTestSuite) TestTranslationQueries() {
|
|
user := s.createUser("translator-reader", "translator-reader@test.com", "password", domain.UserRoleContributor)
|
|
ctx := s.contextWithClaims(user)
|
|
work := s.CreateTestWork(ctx, "Test Work for Translation Queries", "en", "Original Content")
|
|
|
|
content := "Queried Content"
|
|
createInput := model.TranslationInput{
|
|
Name: "Queried Translation",
|
|
Language: "it",
|
|
WorkID: fmt.Sprintf("%d", work.ID),
|
|
Content: &content,
|
|
}
|
|
createdTranslation, err := s.mutationResolver.CreateTranslation(ctx, createInput)
|
|
s.Require().NoError(err)
|
|
|
|
s.Run("Get Translation by ID", func() {
|
|
// Act
|
|
translation, err := s.queryResolver.Translation(ctx, createdTranslation.ID)
|
|
|
|
// Assert
|
|
s.Require().NoError(err)
|
|
s.Require().NotNil(translation)
|
|
s.Equal("Queried Translation", translation.Name)
|
|
})
|
|
|
|
s.Run("List Translations for a Work", func() {
|
|
// Act
|
|
translations, err := s.queryResolver.Translations(ctx, fmt.Sprintf("%d", work.ID), nil, nil, nil)
|
|
|
|
// Assert
|
|
s.Require().NoError(err)
|
|
s.Require().NotNil(translations)
|
|
s.Len(translations, 2) // Original + Italian
|
|
})
|
|
}
|