summaryrefslogtreecommitdiffstats
path: root/integrations/signup_test.go
blob: 49017b29ff2fd0f0cd92c16156ff8e1a805f41dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// 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, err := http.NewRequest("POST", "/user/sign_up",
		bytes.NewBufferString(url.Values{
			"user_name": []string{"exampleUser"},
			"email":     []string{"exampleUser@example.com"},
			"password":  []string{"examplePassword"},
			"retype":    []string{"examplePassword"},
		}.Encode()),
	)
	assert.NoError(t, err)
	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, err = http.NewRequest("GET", "/exampleUser", nil)
	assert.NoError(t, err)
	resp = MakeRequest(req)
	assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
}