2017-03-11 07:30:29 -07: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 01:24:51 -06:00
|
|
|
package integrations
|
2017-03-11 07:30:29 -07:00
|
|
|
|
|
|
|
import (
|
2017-04-25 01:24:51 -06:00
|
|
|
"net/http"
|
2017-03-11 07:30:29 -07:00
|
|
|
"testing"
|
|
|
|
|
2017-04-25 01:24:51 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
)
|
2017-03-11 07:30:29 -07:00
|
|
|
|
|
|
|
func TestSignup(t *testing.T) {
|
2019-11-25 16:21:37 -07:00
|
|
|
defer prepareTestEnv(t)()
|
2017-04-28 07:23:28 -06:00
|
|
|
|
2017-04-25 01:24:51 -06:00
|
|
|
setting.Service.EnableCaptcha = false
|
|
|
|
|
2017-06-16 22:49:45 -06:00
|
|
|
req := NewRequestWithValues(t, "POST", "/user/sign_up", map[string]string{
|
|
|
|
"user_name": "exampleUser",
|
|
|
|
"email": "exampleUser@example.com",
|
2019-11-08 20:40:37 -07:00
|
|
|
"password": "examplePassword!1",
|
|
|
|
"retype": "examplePassword!1",
|
2017-06-16 22:49:45 -06:00
|
|
|
})
|
2017-07-07 13:36:47 -06:00
|
|
|
MakeRequest(t, req, http.StatusFound)
|
2017-03-11 07:30:29 -07:00
|
|
|
|
2017-04-25 01:24:51 -06:00
|
|
|
// should be able to view new user's page
|
2017-06-09 18:41:36 -06:00
|
|
|
req = NewRequest(t, "GET", "/exampleUser")
|
2017-07-07 13:36:47 -06:00
|
|
|
MakeRequest(t, req, http.StatusOK)
|
2017-03-11 07:30:29 -07:00
|
|
|
}
|