mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	Merge pull request '[v8.0/forgejo] [BUG] Fix panic on too high page number' (#4606) from bp-v8.0/forgejo-6a49e3f into v8.0/forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4606 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
This commit is contained in:
		
				commit
				
					
						c65534ce02
					
				
			
		
					 2 changed files with 24 additions and 0 deletions
				
			
		|  | @ -242,6 +242,12 @@ func FileHistory(ctx *context.Context) { | ||||||
| 		ctx.ServerError("CommitsByFileAndRange", err) | 		ctx.ServerError("CommitsByFileAndRange", err) | ||||||
| 		return | 		return | ||||||
| 	} | 	} | ||||||
|  | 
 | ||||||
|  | 	if len(commits) == 0 { | ||||||
|  | 		ctx.NotFound("CommitsByFileAndRange", nil) | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  | 
 | ||||||
| 	oldestCommit := commits[len(commits)-1] | 	oldestCommit := commits[len(commits)-1] | ||||||
| 
 | 
 | ||||||
| 	renamedFiles, err := git.GetCommitFileRenames(ctx, ctx.Repo.GitRepo.Path, oldestCommit.ID.String()) | 	renamedFiles, err := git.GetCommitFileRenames(ctx, ctx.Repo.GitRepo.Path, oldestCommit.ID.String()) | ||||||
|  |  | ||||||
|  | @ -1022,3 +1022,21 @@ func TestRepoCodeSearchForm(t *testing.T) { | ||||||
| 		testSearchForm(t, true) | 		testSearchForm(t, true) | ||||||
| 	}) | 	}) | ||||||
| } | } | ||||||
|  | 
 | ||||||
|  | func TestFileHistoryPager(t *testing.T) { | ||||||
|  | 	defer tests.PrepareTestEnv(t)() | ||||||
|  | 
 | ||||||
|  | 	t.Run("Normal page number", func(t *testing.T) { | ||||||
|  | 		defer tests.PrintCurrentTest(t)() | ||||||
|  | 
 | ||||||
|  | 		req := NewRequest(t, "GET", "/user2/repo1/commits/branch/master/README.md?page=1") | ||||||
|  | 		MakeRequest(t, req, http.StatusOK) | ||||||
|  | 	}) | ||||||
|  | 
 | ||||||
|  | 	t.Run("Too high page number", func(t *testing.T) { | ||||||
|  | 		defer tests.PrintCurrentTest(t)() | ||||||
|  | 
 | ||||||
|  | 		req := NewRequest(t, "GET", "/user2/repo1/commits/branch/master/README.md?page=9999") | ||||||
|  | 		MakeRequest(t, req, http.StatusNotFound) | ||||||
|  | 	}) | ||||||
|  | } | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue