gin/recovery_test.go

57 lines
1.2 KiB
Go
Raw Normal View History

2014-08-29 17:49:50 +00:00
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
2014-08-08 12:50:52 +00:00
package gin
import (
"bytes"
"log"
"os"
"testing"
)
// TestPanicInHandler assert that panic has been recovered.
func TestPanicInHandler(t *testing.T) {
// SETUP
log.SetOutput(bytes.NewBuffer(nil)) // Disable panic logs for testing
r := New()
r.Use(Recovery())
2014-08-11 10:37:35 +00:00
r.GET("/recovery", func(_ *Context) {
2015-03-23 04:50:10 +00:00
log.Panic("Oupps, Houston, we have a problem")
2014-08-08 12:50:52 +00:00
})
// RUN
w := PerformRequest(r, "GET", "/recovery")
2014-08-08 12:50:52 +00:00
// restore logging
log.SetOutput(os.Stderr)
if w.Code != 500 {
2015-03-23 03:41:29 +00:00
t.Errorf("Response code should be Internal Server Error, was: %d", w.Code)
2014-08-08 12:50:52 +00:00
}
2014-08-11 10:37:35 +00:00
}
// TestPanicWithAbort assert that panic has been recovered even if context.Abort was used.
func TestPanicWithAbort(t *testing.T) {
// SETUP
2014-08-11 10:37:35 +00:00
log.SetOutput(bytes.NewBuffer(nil))
r := New()
r.Use(Recovery())
2014-08-11 10:37:35 +00:00
r.GET("/recovery", func(c *Context) {
2014-10-08 19:37:26 +00:00
c.AbortWithStatus(400)
2015-03-23 04:50:10 +00:00
log.Panic("Oupps, Houston, we have a problem")
2014-08-11 10:37:35 +00:00
})
// RUN
w := PerformRequest(r, "GET", "/recovery")
2014-08-11 10:37:35 +00:00
// restore logging
log.SetOutput(os.Stderr)
// TEST
if w.Code != 500 {
2015-03-23 03:41:29 +00:00
t.Errorf("Response code should be Bad request, was: %d", w.Code)
2014-08-11 10:37:35 +00:00
}
2014-08-08 12:50:52 +00:00
}