diff options
author | Grail Finder <wohilas@gmail.com> | 2025-04-05 16:52:41 +0300 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2025-04-05 16:52:41 +0300 |
commit | a82d3c69b147c9798a1be7f7a80c6a98554b241b (patch) | |
tree | 9c2c3d3e9e915199d3766f90287cb59822845e90 | |
parent | b5f3dd055ecc25120df65f6655808d8a8897f1a3 (diff) |
.
-rw-r--r-- | internal/handlers/handlers_test.go | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/internal/handlers/handlers_test.go b/internal/handlers/handlers_test.go index 4eef3b9..2b3e667 100644 --- a/internal/handlers/handlers_test.go +++ b/internal/handlers/handlers_test.go @@ -1,36 +1,39 @@ package handlers import ( - "fmt" + "database/sql" + "demoon/config" + "demoon/internal/models" + "log/slog" + "net/http" + "net/http/httptest" "testing" - "github.com/playwright-community/playwright-go" "github.com/stretchr/testify/assert" ) - func TestGetQuestionHandler(t *testing.T) { t.Run("get existing question", func(t *testing.T) { // Setup mock repository mockRepo := &MockRepo{} handlers := NewHandlers(config.Config{}, slog.Default(), mockRepo) - + // Test request/response req := httptest.NewRequest("GET", "/question/1", nil) w := httptest.NewRecorder() - + // Call handler directly - handlers.GetQuestion(w, req) - + GetQuestion(w, req) + // Verify response resp := w.Result() assert.Equal(t, http.StatusOK, resp.StatusCode) - + // Add more assertions about response body }) } -type MockRepo struct{ +type MockRepo struct { questions map[uint32]*models.Question } |