captcha/captcha_test.go
Lunny Xiao a4920ba641
All checks were successful
continuous-integration/drone/push Build is passing
use go mod & add drone
2019-06-06 09:54:15 +08:00

62 lines
1.1 KiB
Go

package captcha
import (
"bytes"
"net/http"
"net/http/httptest"
"reflect"
"testing"
"gitea.com/lunny/tango"
"gitea.com/tango/renders"
)
type CaptchaAction struct {
Captcha
renders.Renderer
}
func (c *CaptchaAction) Get() {
c.Render("captcha.html", renders.T{
"captcha": c.CreateHtml(),
})
}
func (c *CaptchaAction) Post() string {
if c.Verify() {
return "true"
}
return "false"
}
func TestCaptcha(t *testing.T) {
buff := bytes.NewBufferString("")
recorder := httptest.NewRecorder()
recorder.Body = buff
tg := tango.Classic()
tg.Use(New(), renders.New())
tg.Any("/", new(CaptchaAction))
req, err := http.NewRequest("GET", "http://localhost:3000/", nil)
if err != nil {
t.Error(err)
}
tg.ServeHTTP(recorder, req)
expect(t, recorder.Code, http.StatusOK)
}
/* Test Helpers */
func expect(t *testing.T, a interface{}, b interface{}) {
if a != b {
t.Errorf("Expected %v (type %v) - Got %v (type %v)", b, reflect.TypeOf(b), a, reflect.TypeOf(a))
}
}
func refute(t *testing.T, a interface{}, b interface{}) {
if a == b {
t.Errorf("Did not expect %v (type %v) - Got %v (type %v)", b, reflect.TypeOf(b), a, reflect.TypeOf(a))
}
}