267 lines
8.8 KiB
Go
267 lines
8.8 KiB
Go
package v1
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/gochat/gochat/internal/model"
|
|
"github.com/gochat/gochat/internal/repository"
|
|
"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 ArticleHandlerTestSuite struct {
|
|
suite.Suite
|
|
db *gorm.DB
|
|
handler *ArticleHandler
|
|
|
|
account *model.Account
|
|
portal *model.Portal
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) 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{}, &model.User{}, &model.Portal{},
|
|
&model.Category{}, &model.Folder{}, &model.Article{},
|
|
))
|
|
s.db = db
|
|
|
|
repo := repository.NewArticleRepo(db)
|
|
svc := service.NewArticleService(repo)
|
|
s.handler = NewArticleHandler(svc)
|
|
|
|
s.account = &model.Account{Name: "test-article-account"}
|
|
s.Require().NoError(db.Create(s.account).Error)
|
|
s.portal = &model.Portal{AccountID: s.account.ID, Name: "test-portal", Slug: "test-portal"}
|
|
s.Require().NoError(db.Create(s.portal).Error)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TearDownSuite() {
|
|
if s.db != nil {
|
|
sqlDB, _ := s.db.DB()
|
|
sqlDB.Close()
|
|
}
|
|
}
|
|
|
|
func TestArticleHandlerSuite(t *testing.T) {
|
|
suite.Run(t, new(ArticleHandlerTestSuite))
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestCreate_BadRequest_InvalidAccountID() {
|
|
r := gin.New()
|
|
r.POST("/api/v1/accounts/:account_id/portals/:portal_id/articles", s.handler.Create)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("POST", "/api/v1/accounts/abc/portals/1/articles", nil)
|
|
req.Header.Set("Content-Type", "application/json")
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestCreate_BadRequest_InvalidPortalID() {
|
|
r := gin.New()
|
|
r.POST("/api/v1/accounts/:account_id/portals/:portal_id/articles", s.handler.Create)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("POST", fmt.Sprintf("/api/v1/accounts/%d/portals/abc/articles", s.account.ID), nil)
|
|
req.Header.Set("Content-Type", "application/json")
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestCreate_BadRequest_EmptyBody() {
|
|
r := gin.New()
|
|
r.POST("/api/v1/accounts/:account_id/portals/:portal_id/articles", s.handler.Create)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("POST", fmt.Sprintf("/api/v1/accounts/%d/portals/%d/articles", s.account.ID, s.portal.ID), nil)
|
|
req.Header.Set("Content-Type", "application/json")
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestGet_BadRequest_InvalidAccountID() {
|
|
r := gin.New()
|
|
r.GET("/api/v1/accounts/:account_id/portals/:portal_id/articles/:article_id", s.handler.Get)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("GET", fmt.Sprintf("/api/v1/accounts/%d/portals/%d/articles/abc", s.account.ID, s.portal.ID), nil)
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestEdit_BadRequest_InvalidArticleID() {
|
|
r := gin.New()
|
|
r.GET("/api/v1/accounts/:account_id/portals/:portal_id/articles/:article_id/edit", s.handler.Edit)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("GET", fmt.Sprintf("/api/v1/accounts/%d/portals/%d/articles/abc/edit", s.account.ID, s.portal.ID), nil)
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestUpdate_BadRequest_InvalidID() {
|
|
r := gin.New()
|
|
r.PUT("/api/v1/accounts/:account_id/portals/:portal_id/articles/:article_id", s.handler.Update)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("PUT", fmt.Sprintf("/api/v1/accounts/%d/portals/%d/articles/abc", s.account.ID, s.portal.ID), nil)
|
|
req.Header.Set("Content-Type", "application/json")
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestDelete_BadRequest_InvalidID() {
|
|
r := gin.New()
|
|
r.DELETE("/api/v1/accounts/:account_id/portals/:portal_id/articles/:article_id", s.handler.Delete)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("DELETE", fmt.Sprintf("/api/v1/accounts/%d/portals/%d/articles/abc", s.account.ID, s.portal.ID), nil)
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
|
|
|
|
func (s *ArticleHandlerTestSuite) TestList_BadRequest_InvalidPortalID() {
|
|
r := gin.New()
|
|
r.GET("/api/v1/accounts/:account_id/portals/:portal_id/articles", s.handler.List)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("GET", fmt.Sprintf("/api/v1/accounts/%d/portals/abc/articles", s.account.ID), nil)
|
|
r.ServeHTTP(w, req)
|
|
|
|
// List doesn't validate account_id, so invalid portal_id may pass or return empty
|
|
// We just check it doesn't crash
|
|
assert.True(s.T(), w.Code == http.StatusOK || w.Code == http.StatusBadRequest)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestListByCategory_BadRequest_InvalidCategoryID() {
|
|
r := gin.New()
|
|
r.GET("/api/v1/accounts/:account_id/portals/:portal_id/categories/:category_id/articles", s.handler.ListByCategory)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("GET", fmt.Sprintf("/api/v1/accounts/%d/portals/%d/categories/abc/articles", s.account.ID, s.portal.ID), nil)
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestSearch_BadRequest_InvalidPortalID() {
|
|
r := gin.New()
|
|
r.GET("/api/v1/accounts/:account_id/portals/:portal_id/articles/search", s.handler.Search)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("GET", fmt.Sprintf("/api/v1/accounts/%d/portals/abc/articles/search?q=test", s.account.ID), nil)
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestStatusCounts_BadRequest_InvalidPortalID() {
|
|
r := gin.New()
|
|
r.GET("/api/v1/accounts/:account_id/portals/:portal_id/articles/status_counts", s.handler.StatusCounts)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("GET", fmt.Sprintf("/api/v1/accounts/%d/portals/abc/articles/status_counts", s.account.ID), nil)
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestReorder_BadRequest_InvalidAccountID() {
|
|
r := gin.New()
|
|
r.POST("/api/v1/accounts/:account_id/portals/:portal_id/articles/reorder", s.handler.Reorder)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("POST", "/api/v1/accounts/abc/portals/1/articles/reorder", nil)
|
|
req.Header.Set("Content-Type", "application/json")
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestBulkUpdateStatus_BadRequest_InvalidAccountID() {
|
|
r := gin.New()
|
|
r.POST("/api/v1/accounts/:account_id/portals/:portal_id/articles/bulk_update_status", s.handler.BulkUpdateStatus)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("POST", "/api/v1/accounts/abc/portals/1/articles/bulk_update_status", nil)
|
|
req.Header.Set("Content-Type", "application/json")
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestBulkDelete_BadRequest_InvalidAccountID() {
|
|
r := gin.New()
|
|
r.POST("/api/v1/accounts/:account_id/portals/:portal_id/articles/bulk_delete", s.handler.BulkDelete)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("POST", "/api/v1/accounts/abc/portals/1/articles/bulk_delete", nil)
|
|
req.Header.Set("Content-Type", "application/json")
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusBadRequest, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestCreate_Success() {
|
|
r := gin.New()
|
|
r.POST("/api/v1/accounts/:account_id/portals/:portal_id/articles", s.handler.Create)
|
|
|
|
body := map[string]interface{}{
|
|
"title": "test-article",
|
|
"content": "test content",
|
|
"status": "draft",
|
|
}
|
|
b, _ := json.Marshal(body)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("POST", fmt.Sprintf("/api/v1/accounts/%d/portals/%d/articles", s.account.ID, s.portal.ID), bytes.NewBuffer(b))
|
|
req.Header.Set("Content-Type", "application/json")
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusCreated, w.Code)
|
|
}
|
|
|
|
func (s *ArticleHandlerTestSuite) TestList_Success() {
|
|
// Create an article first
|
|
article := &model.Article{
|
|
AccountID: s.account.ID,
|
|
PortalID: s.portal.ID,
|
|
Title: "test-list-article",
|
|
Slug: "test-list-article",
|
|
Status: "draft",
|
|
}
|
|
s.Require().NoError(s.db.Create(article).Error)
|
|
|
|
r := gin.New()
|
|
r.GET("/api/v1/accounts/:account_id/portals/:portal_id/articles", s.handler.List)
|
|
|
|
w := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("GET", fmt.Sprintf("/api/v1/accounts/%d/portals/%d/articles", s.account.ID, s.portal.ID), nil)
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.Equal(s.T(), http.StatusOK, w.Code)
|
|
} |