Skip to content

Commit

Permalink
Revert "Fix test error (#242)" (#261)
Browse files Browse the repository at this point in the history
This reverts commit eae73ba.
  • Loading branch information
ubogdan committed Mar 20, 2023
1 parent eae73ba commit 753ceaa
Showing 1 changed file with 4 additions and 19 deletions.
23 changes: 4 additions & 19 deletions swagger_test.go
Expand Up @@ -5,7 +5,6 @@ import (
"net/http"
"net/http/httptest"
"os"
"sync"
"testing"

"github.com/gin-contrib/gzip"
Expand All @@ -23,17 +22,6 @@ func (s *mockedSwag) ReadDoc() string {
}`
}

var (
once sync.Once
doc = &mockedSwag{}
)

func regDoc() {
once.Do(func() {
swag.Register(swag.Name, doc)
})
}

func TestWrapHandler(t *testing.T) {
gin.SetMode(gin.TestMode)
router := gin.New()
Expand All @@ -44,8 +32,6 @@ func TestWrapHandler(t *testing.T) {
}

func TestWrapCustomHandler(t *testing.T) {
regDoc()

gin.SetMode(gin.TestMode)
router := gin.New()

Expand All @@ -55,7 +41,10 @@ func TestWrapCustomHandler(t *testing.T) {
assert.Equal(t, http.StatusOK, w1.Code)
assert.Equal(t, w1.Header()["Content-Type"][0], "text/html; charset=utf-8")

assert.Equal(t, http.StatusOK, performRequest(http.MethodGet, "/doc.json", router).Code)
assert.Equal(t, http.StatusInternalServerError, performRequest(http.MethodGet, "/doc.json", router).Code)

doc := &mockedSwag{}
swag.Register(swag.Name, doc)

w2 := performRequest(http.MethodGet, "/doc.json", router)
assert.Equal(t, http.StatusOK, w2.Code)
Expand Down Expand Up @@ -86,8 +75,6 @@ func TestWrapCustomHandler(t *testing.T) {
}

func TestDisablingWrapHandler(t *testing.T) {
regDoc()

gin.SetMode(gin.TestMode)

router := gin.New()
Expand Down Expand Up @@ -129,8 +116,6 @@ func TestDisablingCustomWrapHandler(t *testing.T) {
}

func TestWithGzipMiddleware(t *testing.T) {
regDoc()

gin.SetMode(gin.TestMode)
router := gin.New()

Expand Down

0 comments on commit 753ceaa

Please sign in to comment.