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