summaryrefslogtreecommitdiffstats
path: root/integrations/delete_user_test.go
blob: bf38eeae2b156dd476e1a85013cb41bac26b3f83 (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/models"

	"github.com/stretchr/testify/assert"
)

func TestDeleteUser(t *testing.T) {
	prepareTestEnv(t)

	session := loginUser(t, "user1", "password")

	req, err := http.NewRequest("GET", "/admin/users/8", nil)
	assert.NoError(t, err)
	resp := session.MakeRequest(t, req)
	assert.EqualValues(t, http.StatusOK, resp.HeaderCode)

	doc, err := NewHtmlParser(resp.Body)
	assert.NoError(t, err)
	req, err = http.NewRequest("POST", "/admin/users/8/delete",
		bytes.NewBufferString(url.Values{
			"_csrf": []string{doc.GetInputValueByName("_csrf")},
		}.Encode()))
	assert.NoError(t, err)
	req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
	resp = session.MakeRequest(t, req)
	assert.EqualValues(t, http.StatusOK, resp.HeaderCode)

	models.AssertNotExistsBean(t, &models.User{ID: 8})
	models.CheckConsistencyFor(t, &models.User{})
}