 2457f5ff22
			
		
	
	
	2457f5ff22
	
	
	
		
			
			- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2017 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package integration
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"net/http"
 | |
| 	"testing"
 | |
| 
 | |
| 	issues_model "forgejo.org/models/issues"
 | |
| 	"forgejo.org/models/organization"
 | |
| 	access_model "forgejo.org/models/perm/access"
 | |
| 	repo_model "forgejo.org/models/repo"
 | |
| 	"forgejo.org/models/unittest"
 | |
| 	user_model "forgejo.org/models/user"
 | |
| 	"forgejo.org/tests"
 | |
| )
 | |
| 
 | |
| func assertUserDeleted(t *testing.T, userID int64, purged bool) {
 | |
| 	unittest.AssertNotExistsBean(t, &user_model.User{ID: userID})
 | |
| 	unittest.AssertNotExistsBean(t, &user_model.Follow{UserID: userID})
 | |
| 	unittest.AssertNotExistsBean(t, &user_model.Follow{FollowID: userID})
 | |
| 	unittest.AssertNotExistsBean(t, &repo_model.Repository{OwnerID: userID})
 | |
| 	unittest.AssertNotExistsBean(t, &access_model.Access{UserID: userID})
 | |
| 	unittest.AssertNotExistsBean(t, &organization.OrgUser{UID: userID})
 | |
| 	unittest.AssertNotExistsBean(t, &issues_model.IssueUser{UID: userID})
 | |
| 	unittest.AssertNotExistsBean(t, &organization.TeamUser{UID: userID})
 | |
| 	unittest.AssertNotExistsBean(t, &repo_model.Star{UID: userID})
 | |
| 	if purged {
 | |
| 		unittest.AssertNotExistsBean(t, &issues_model.Issue{PosterID: userID})
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestUserDeleteAccount(t *testing.T) {
 | |
| 	defer tests.PrepareTestEnv(t)()
 | |
| 
 | |
| 	session := loginUser(t, "user8")
 | |
| 	csrf := GetCSRF(t, session, "/user/settings/account")
 | |
| 	urlStr := fmt.Sprintf("/user/settings/account/delete?password=%s", userPassword)
 | |
| 	req := NewRequestWithValues(t, "POST", urlStr, map[string]string{
 | |
| 		"_csrf": csrf,
 | |
| 	})
 | |
| 	session.MakeRequest(t, req, http.StatusSeeOther)
 | |
| 
 | |
| 	assertUserDeleted(t, 8, false)
 | |
| 	unittest.CheckConsistencyFor(t, &user_model.User{})
 | |
| }
 | |
| 
 | |
| func TestUserDeleteAccountStillOwnRepos(t *testing.T) {
 | |
| 	defer tests.PrepareTestEnv(t)()
 | |
| 
 | |
| 	session := loginUser(t, "user2")
 | |
| 	csrf := GetCSRF(t, session, "/user/settings/account")
 | |
| 	urlStr := fmt.Sprintf("/user/settings/account/delete?password=%s", userPassword)
 | |
| 	req := NewRequestWithValues(t, "POST", urlStr, map[string]string{
 | |
| 		"_csrf": csrf,
 | |
| 	})
 | |
| 	session.MakeRequest(t, req, http.StatusSeeOther)
 | |
| 
 | |
| 	// user should not have been deleted, because the user still owns repos
 | |
| 	unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
 | |
| }
 |