mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1023 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1023 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// 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.
 | 
						|
 | 
						|
package integrations
 | 
						|
 | 
						|
import (
 | 
						|
	"bytes"
 | 
						|
	"net/http"
 | 
						|
	"net/url"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
func TestSignup(t *testing.T) {
 | 
						|
	prepareTestEnv(t)
 | 
						|
 | 
						|
	setting.Service.EnableCaptcha = false
 | 
						|
 | 
						|
	req := NewRequestBody(t, "POST", "/user/sign_up",
 | 
						|
		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)
 | 
						|
 | 
						|
	// should be able to view new user's page
 | 
						|
	req = NewRequest(t, "GET", "/exampleUser")
 | 
						|
	resp = MakeRequest(req)
 | 
						|
	assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
 | 
						|
}
 |