mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	Fix various bugs (#35684)
1. Fix incorrect column in `applySubscribedCondition`, add a test 2. Fix debian version parsing, add more tests fix #35695 3. Fix log level for HTTP errors, fix #35651 4. Fix abused "panic" handler in API `Migrate` 5. Fix the redirection from PR to issue, add a test 6. Fix Actions variable & secret name validation, add more tests * envNameCIRegexMatch is unnecessary, removed * validating in "delete" function doesn't make sense, removed 7. Fix incorrect link in release email --------- Signed-off-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: delvh <dev.lh@web.de>
This commit is contained in:
		| @@ -497,9 +497,13 @@ func TestIssueRedirect(t *testing.T) { | ||||
| 	resp = session.MakeRequest(t, req, http.StatusSeeOther) | ||||
| 	assert.Equal(t, "/user2/repo1/pulls/2", test.RedirectURL(resp)) | ||||
|  | ||||
| 	repoUnit := unittest.AssertExistsAndLoadBean(t, &repo_model.RepoUnit{RepoID: 1, Type: unit.TypeIssues}) | ||||
| 	// by the way, test PR redirection | ||||
| 	req = NewRequest(t, "GET", "/user2/repo1/pulls/1") | ||||
| 	resp = session.MakeRequest(t, req, http.StatusSeeOther) | ||||
| 	assert.Equal(t, "/user2/repo1/issues/1", test.RedirectURL(resp)) | ||||
|  | ||||
| 	// disable issue unit, it will be reset | ||||
| 	// disable issue unit | ||||
| 	repoUnit := unittest.AssertExistsAndLoadBean(t, &repo_model.RepoUnit{RepoID: 1, Type: unit.TypeIssues}) | ||||
| 	_, err := db.DeleteByID[repo_model.RepoUnit](t.Context(), repoUnit.ID) | ||||
| 	assert.NoError(t, err) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user