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