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