mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	Set request headers in helper functions, and new helper for requests with string-formatted URLs
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			863 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			863 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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 (
 | |
| 	"net/http"
 | |
| 	"testing"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestDeleteUser(t *testing.T) {
 | |
| 	prepareTestEnv(t)
 | |
| 
 | |
| 	session := loginUser(t, "user1")
 | |
| 
 | |
| 	req := NewRequest(t, "GET", "/admin/users/8")
 | |
| 	resp := session.MakeRequest(t, req)
 | |
| 	assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
 | |
| 
 | |
| 	doc := NewHTMLParser(t, resp.Body)
 | |
| 	req = NewRequestWithValues(t, "POST", "/admin/users/8/delete", map[string]string{
 | |
| 		"_csrf": doc.GetCSRF(),
 | |
| 	})
 | |
| 	resp = session.MakeRequest(t, req)
 | |
| 	assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
 | |
| 
 | |
| 	models.AssertNotExistsBean(t, &models.User{ID: 8})
 | |
| 	models.CheckConsistencyFor(t, &models.User{})
 | |
| }
 |