7 Star 11 Fork 2

Gitee 极速下载/CleverGo-Router

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/clevergo/clevergo
克隆/下载
error_test.go 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
// Copyright 2020 CleverGo. All rights reserved.
// Use of this source code is governed by a MIT style license that can be found
// in the LICENSE file.
package clevergo
import (
"errors"
"net/http"
"net/http/httptest"
"testing"
"github.com/stretchr/testify/assert"
)
func TestNewError(t *testing.T) {
tests := []struct {
code int
msg string
}{
{http.StatusForbidden, "forbidden"},
{http.StatusInternalServerError, "internal server error"},
}
for _, test := range tests {
err := NewError(test.code, errors.New(test.msg))
assert.Equal(t, test.code, err.Code)
assert.Equal(t, test.msg, err.Error())
}
}
func TestErrorHandler(t *testing.T) {
m := ErrorHandler()
cases := []struct {
err error
code int
body string
}{
{nil, http.StatusOK, ""},
{ErrNotFound, http.StatusNotFound, "Not Found\n"},
{errors.New("foobar"), http.StatusInternalServerError, http.StatusText(http.StatusInternalServerError) + "\n"},
}
for _, test := range cases {
handle := m(func(c *Context) error {
return test.err
})
resp := httptest.NewRecorder()
c := newContext(resp, nil)
c.app = Pure()
assert.Nil(t, handle(c))
assert.Equal(t, test.code, resp.Code)
assert.Equal(t, test.body, resp.Body.String())
}
}
func TestPanicErrorError(t *testing.T) {
err := PanicError{
Data: "foo",
Stack: []byte("bar"),
}
msg := err.Error()
assert.Contains(t, msg, "foo")
assert.Contains(t, msg, "bar")
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/CleverGo-Router.git
git@gitee.com:mirrors/CleverGo-Router.git
mirrors
CleverGo-Router
CleverGo-Router
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385