Restructure the monorepo into clear top-level directories: - backend/: Go module root (cmd, internal, pkg, configs, migrations, docs/swagger, scripts, tests, go.mod, Makefile, .air.toml) - deploy/: Docker (Dockerfile, docker-compose*), quickstart, fluentd - docs/: project documentation + reports/ (moved from repo root) - AGENTS.md: new AI coding-agent guide at repo root Update all references to the new layout: - Dockerfile: COPY backend/go.mod, COPY backend/ (context = repo root) - docker-compose files: context ../.., dockerfile deploy/docker/Dockerfile, env_file ../../.env, volume mounts ../../backend:/app - deploy/quickstart/compose.yaml: dockerfile deploy/docker/Dockerfile - CI: working-directory: backend for go commands, file deploy/docker/Dockerfile, coverage path backend/coverage.out, health_check backend/scripts/ - backend/Makefile: docker target uses -f ../deploy/docker/Dockerfile ../ - README: architecture tree, quickstart, config paths updated Move root stray scripts (rename_models.*, run_m11_tests.sh, verify_build.sh, gorm_bool_main.go) to backend/scripts/legacy/. All moves via git mv to preserve history. Build, vet, SQLite tests, and docker compose config verified.
88 lines
2.4 KiB
Go
88 lines
2.4 KiB
Go
package v1
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/gochat/gochat/internal/csat"
|
|
"github.com/gochat/gochat/internal/model"
|
|
"github.com/gochat/gochat/internal/service"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/suite"
|
|
"gorm.io/driver/sqlite"
|
|
"gorm.io/gorm"
|
|
"gorm.io/gorm/logger"
|
|
)
|
|
|
|
type csatDBProvider struct {
|
|
db *gorm.DB
|
|
}
|
|
|
|
func (p *csatDBProvider) DB() *gorm.DB { return p.db }
|
|
|
|
type CsatMetricsHandlerTestSuite struct {
|
|
suite.Suite
|
|
db *gorm.DB
|
|
handler *CsatMetricsHandler
|
|
account *model.Account
|
|
}
|
|
|
|
func (s *CsatMetricsHandlerTestSuite) SetupSuite() {
|
|
gin.SetMode(gin.TestMode)
|
|
db, err := gorm.Open(sqlite.Open("file::memory:"), &gorm.Config{
|
|
Logger: logger.Default.LogMode(logger.Silent),
|
|
})
|
|
s.Require().NoError(err)
|
|
s.Require().NoError(db.AutoMigrate(&model.Account{}, &csat.CsatSurveyResponse{}, &model.ReportingEventsRollup{}, &model.Conversation{}))
|
|
s.db = db
|
|
|
|
provider := &csatDBProvider{db: db}
|
|
svc := service.NewCsatMetricsService(provider)
|
|
s.handler = NewCsatMetricsHandler(svc)
|
|
|
|
s.account = &model.Account{Name: "test-csat-account"}
|
|
s.Require().NoError(db.Create(s.account).Error)
|
|
}
|
|
|
|
func (s *CsatMetricsHandlerTestSuite) TearDownSuite() {
|
|
if s.db != nil {
|
|
sqlDB, _ := s.db.DB()
|
|
sqlDB.Close()
|
|
}
|
|
}
|
|
|
|
func TestCsatMetricsHandlerSuite(t *testing.T) {
|
|
suite.Run(t, new(CsatMetricsHandlerTestSuite))
|
|
}
|
|
|
|
func (s *CsatMetricsHandlerTestSuite) TestMetrics_Success() {
|
|
r := gin.New()
|
|
r.GET("/api/v1/accounts/:account_id/csat_metrics", func(c *gin.Context) {
|
|
c.Set("account_id", float64(s.account.ID))
|
|
s.handler.Metrics(c)
|
|
})
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("GET", fmt.Sprintf("/api/v1/accounts/%d/csat_metrics", s.account.ID), nil)
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusOK, w.Code)
|
|
}
|
|
|
|
func (s *CsatMetricsHandlerTestSuite) TestDownload_Success() {
|
|
r := gin.New()
|
|
r.GET("/api/v1/accounts/:account_id/csat_metrics/download", func(c *gin.Context) {
|
|
c.Set("account_id", float64(s.account.ID))
|
|
s.handler.Download(c)
|
|
})
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("GET", fmt.Sprintf("/api/v1/accounts/%d/csat_metrics/download", s.account.ID), nil)
|
|
r.ServeHTTP(w, req)
|
|
|
|
// Download may return 200 with CSV or 404 if no data
|
|
assert.True(s.T(), w.Code == http.StatusOK || w.Code == http.StatusNotFound || w.Code == http.StatusNoContent)
|
|
} |