forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix and test for delete user (go-gitea#1713)
* Fix and test for delete user * Run updates in batches * Unit test
- Loading branch information
1 parent
85a7396
commit cf02cd7
Showing
11 changed files
with
160 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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{}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,13 @@ | |
id: 1 | ||
user_id: 4 | ||
follow_id: 2 | ||
|
||
- | ||
id: 2 | ||
user_id: 8 | ||
follow_id: 2 | ||
|
||
- | ||
id: 3 | ||
user_id: 2 | ||
follow_id: 8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ | |
name: user1 | ||
full_name: User One | ||
email: [email protected] | ||
passwd: password | ||
passwd: 7d93daa0d1e6f2305cc8fa496847d61dc7320bb16262f9c55dd753480207234cdd96a93194e408341971742f4701772a025a # password | ||
type: 0 # individual | ||
salt: salt | ||
salt: ZogKvWdyEx | ||
is_admin: true | ||
avatar: avatar1 | ||
avatar_email: [email protected] | ||
|
@@ -26,7 +26,8 @@ | |
avatar_email: [email protected] | ||
num_repos: 2 | ||
num_stars: 2 | ||
num_followers: 1 | ||
num_followers: 2 | ||
num_following: 1 | ||
is_active: true | ||
|
||
- | ||
|
@@ -123,6 +124,8 @@ | |
avatar_email: [email protected] | ||
num_repos: 0 | ||
is_active: true | ||
num_followers: 1 | ||
num_following: 1 | ||
|
||
- | ||
id: 9 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package models | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"path/filepath" | ||
"testing" | ||
|
||
"code.gitea.io/gitea/modules/setting" | ||
) | ||
|
||
func TestMain(m *testing.M) { | ||
if err := CreateTestEngine(); err != nil { | ||
fmt.Printf("Error creating test engine: %v\n", err) | ||
os.Exit(1) | ||
} | ||
|
||
setting.AppURL = "https://try.gitea.io/" | ||
setting.RunUser = "runuser" | ||
setting.SSH.Port = 3000 | ||
setting.SSH.Domain = "try.gitea.io" | ||
setting.RepoRootPath = filepath.Join(os.TempDir(), "repos") | ||
setting.AppDataPath = filepath.Join(os.TempDir(), "appdata") | ||
|
||
os.Exit(m.Run()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.