2017-05-20 10:48:22 +02:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-05-20 10:48:22 +02:00
|
|
|
|
2022-09-02 21:18:23 +02:00
|
|
|
package integration
|
2017-05-20 10:48:22 +02:00
|
|
|
|
|
|
|
import (
|
2017-11-12 14:36:16 +01:00
|
|
|
"fmt"
|
2017-05-20 10:48:22 +02:00
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
2022-06-13 11:37:59 +02:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2022-03-29 08:29:02 +02:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2022-05-11 12:09:36 +02:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2021-12-10 02:27:50 +01:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-16 09:53:21 +01:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-17 10:58:31 +01:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2022-09-02 21:18:23 +02:00
|
|
|
"code.gitea.io/gitea/tests"
|
2017-05-20 10:48:22 +02:00
|
|
|
)
|
|
|
|
|
2017-11-12 14:36:16 +01:00
|
|
|
func assertUserDeleted(t *testing.T, userID int64) {
|
2021-11-24 10:49:20 +01:00
|
|
|
unittest.AssertNotExistsBean(t, &user_model.User{ID: userID})
|
2021-11-17 10:58:31 +01:00
|
|
|
unittest.AssertNotExistsBean(t, &user_model.Follow{UserID: userID})
|
|
|
|
unittest.AssertNotExistsBean(t, &user_model.Follow{FollowID: userID})
|
2021-12-10 02:27:50 +01:00
|
|
|
unittest.AssertNotExistsBean(t, &repo_model.Repository{OwnerID: userID})
|
2022-05-11 12:09:36 +02:00
|
|
|
unittest.AssertNotExistsBean(t, &access_model.Access{UserID: userID})
|
2022-03-29 08:29:02 +02:00
|
|
|
unittest.AssertNotExistsBean(t, &organization.OrgUser{UID: userID})
|
2022-06-13 11:37:59 +02:00
|
|
|
unittest.AssertNotExistsBean(t, &issues_model.IssueUser{UID: userID})
|
2022-03-29 08:29:02 +02:00
|
|
|
unittest.AssertNotExistsBean(t, &organization.TeamUser{UID: userID})
|
2021-12-12 16:48:20 +01:00
|
|
|
unittest.AssertNotExistsBean(t, &repo_model.Star{UID: userID})
|
2017-11-12 14:36:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestUserDeleteAccount(t *testing.T) {
|
2022-09-02 21:18:23 +02:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2017-11-12 14:36:16 +01:00
|
|
|
|
|
|
|
session := loginUser(t, "user8")
|
2018-05-15 12:07:32 +02:00
|
|
|
csrf := GetCSRF(t, session, "/user/settings/account")
|
|
|
|
urlStr := fmt.Sprintf("/user/settings/account/delete?password=%s", userPassword)
|
2017-11-12 14:36:16 +01:00
|
|
|
req := NewRequestWithValues(t, "POST", urlStr, map[string]string{
|
|
|
|
"_csrf": csrf,
|
|
|
|
})
|
2022-03-23 05:54:07 +01:00
|
|
|
session.MakeRequest(t, req, http.StatusSeeOther)
|
2017-11-12 14:36:16 +01:00
|
|
|
|
|
|
|
assertUserDeleted(t, 8)
|
2021-11-24 10:49:20 +01:00
|
|
|
unittest.CheckConsistencyFor(t, &user_model.User{})
|
2017-11-12 14:36:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestUserDeleteAccountStillOwnRepos(t *testing.T) {
|
2022-09-02 21:18:23 +02:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2017-11-12 14:36:16 +01:00
|
|
|
|
|
|
|
session := loginUser(t, "user2")
|
2018-05-15 12:07:32 +02:00
|
|
|
csrf := GetCSRF(t, session, "/user/settings/account")
|
|
|
|
urlStr := fmt.Sprintf("/user/settings/account/delete?password=%s", userPassword)
|
2017-11-12 14:36:16 +01:00
|
|
|
req := NewRequestWithValues(t, "POST", urlStr, map[string]string{
|
|
|
|
"_csrf": csrf,
|
|
|
|
})
|
2022-03-23 05:54:07 +01:00
|
|
|
session.MakeRequest(t, req, http.StatusSeeOther)
|
2017-11-12 14:36:16 +01:00
|
|
|
|
|
|
|
// user should not have been deleted, because the user still owns repos
|
2021-11-24 10:49:20 +01:00
|
|
|
unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
2017-11-12 14:36:16 +01:00
|
|
|
}
|