mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Improve integration test helper functions (#2049)
Set request headers in helper functions, and new helper for requests with string-formatted URLs
This commit is contained in:
		| @@ -34,7 +34,6 @@ func TestCreateFile(t *testing.T) { | ||||
| 		"content":       "Content", | ||||
| 		"commit_choice": "direct", | ||||
| 	}) | ||||
| 	req.Header.Add("Content-Type", "application/x-www-form-urlencoded") | ||||
| 	resp = session.MakeRequest(t, req) | ||||
| 	assert.EqualValues(t, http.StatusFound, resp.HeaderCode) | ||||
| } | ||||
| @@ -57,7 +56,6 @@ func TestCreateFileOnProtectedBranch(t *testing.T) { | ||||
| 		"branchName": "master", | ||||
| 		"canPush":    "true", | ||||
| 	}) | ||||
| 	req.Header.Add("Content-Type", "application/x-www-form-urlencoded") | ||||
| 	resp = session.MakeRequest(t, req) | ||||
| 	assert.EqualValues(t, http.StatusOK, resp.HeaderCode) | ||||
| 	// Check if master branch has been locked successfully | ||||
| @@ -83,7 +81,6 @@ func TestCreateFileOnProtectedBranch(t *testing.T) { | ||||
| 		"commit_choice": "direct", | ||||
| 	}) | ||||
|  | ||||
| 	req.Header.Add("Content-Type", "application/x-www-form-urlencoded") | ||||
| 	resp = session.MakeRequest(t, req) | ||||
| 	assert.EqualValues(t, http.StatusOK, resp.HeaderCode) | ||||
| 	// Check body for error message | ||||
| @@ -113,7 +110,6 @@ func testEditFile(t *testing.T, session *TestSession, user, repo, branch, filePa | ||||
| 			"commit_choice": "direct", | ||||
| 		}, | ||||
| 	) | ||||
| 	req.Header.Add("Content-Type", "application/x-www-form-urlencoded") | ||||
| 	resp = session.MakeRequest(t, req) | ||||
| 	assert.EqualValues(t, http.StatusFound, resp.HeaderCode) | ||||
|  | ||||
| @@ -150,7 +146,6 @@ func testEditFileToNewBranch(t *testing.T, session *TestSession, user, repo, bra | ||||
| 			"new_branch_name": targetBranch, | ||||
| 		}, | ||||
| 	) | ||||
| 	req.Header.Add("Content-Type", "application/x-www-form-urlencoded") | ||||
| 	resp = session.MakeRequest(t, req) | ||||
| 	assert.EqualValues(t, http.StatusFound, resp.HeaderCode) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user