Files
Atay-Makhzan/integrations/signup_test.go
T

40 lines
1023 B
Go
Raw Normal View History

2017-03-11 22:30:29 +08:00
// Copyright 2017 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2017-04-25 03:24:51 -04:00
package integrations
2017-03-11 22:30:29 +08:00
import (
2017-04-25 03:24:51 -04:00
"bytes"
"net/http"
"net/url"
2017-03-11 22:30:29 +08:00
"testing"
2017-04-25 03:24:51 -04:00
"code.gitea.io/gitea/modules/setting"
2017-03-11 22:30:29 +08:00
2017-04-25 03:24:51 -04:00
"github.com/stretchr/testify/assert"
)
2017-03-11 22:30:29 +08:00
func TestSignup(t *testing.T) {
prepareTestEnv(t)
2017-04-25 03:24:51 -04:00
setting.Service.EnableCaptcha = false
req := NewRequestBody(t, "POST", "/user/sign_up",
2017-04-25 03:24:51 -04:00
bytes.NewBufferString(url.Values{
"user_name": []string{"exampleUser"},
"email": []string{"exampleUser@example.com"},
"password": []string{"examplePassword"},
"retype": []string{"examplePassword"},
}.Encode()),
)
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
resp := MakeRequest(req)
assert.EqualValues(t, http.StatusFound, resp.HeaderCode)
2017-03-11 22:30:29 +08:00
2017-04-25 03:24:51 -04:00
// should be able to view new user's page
req = NewRequest(t, "GET", "/exampleUser")
2017-04-25 03:24:51 -04:00
resp = MakeRequest(req)
assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
2017-03-11 22:30:29 +08:00
}