mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	Remove incorrect "db.DefaultContext" usages (#35366)
This commit is contained in:
		| @@ -7,7 +7,6 @@ import ( | ||||
| 	"testing" | ||||
| 	"time" | ||||
|  | ||||
| 	"code.gitea.io/gitea/models/db" | ||||
| 	"code.gitea.io/gitea/models/unittest" | ||||
| 	"code.gitea.io/gitea/services/contexttest" | ||||
|  | ||||
| @@ -79,13 +78,13 @@ func TestArchive_Basic(t *testing.T) { | ||||
| 	inFlight[1] = tgzReq | ||||
| 	inFlight[2] = secondReq | ||||
|  | ||||
| 	doArchive(db.DefaultContext, zipReq) | ||||
| 	doArchive(db.DefaultContext, tgzReq) | ||||
| 	doArchive(db.DefaultContext, secondReq) | ||||
| 	doArchive(t.Context(), zipReq) | ||||
| 	doArchive(t.Context(), tgzReq) | ||||
| 	doArchive(t.Context(), secondReq) | ||||
|  | ||||
| 	// Make sure sending an unprocessed request through doesn't affect the queue | ||||
| 	// count. | ||||
| 	doArchive(db.DefaultContext, zipReq) | ||||
| 	doArchive(t.Context(), zipReq) | ||||
|  | ||||
| 	// Sleep two seconds to make sure the queue doesn't change. | ||||
| 	time.Sleep(2 * time.Second) | ||||
| @@ -100,7 +99,7 @@ func TestArchive_Basic(t *testing.T) { | ||||
| 	// We still have the other three stalled at completion, waiting to remove | ||||
| 	// from archiveInProgress.  Try to submit this new one before its | ||||
| 	// predecessor has cleared out of the queue. | ||||
| 	doArchive(db.DefaultContext, zipReq2) | ||||
| 	doArchive(t.Context(), zipReq2) | ||||
|  | ||||
| 	// Now we'll submit a request and TimedWaitForCompletion twice, before and | ||||
| 	// after we release it.  We should trigger both the timeout and non-timeout | ||||
| @@ -108,7 +107,7 @@ func TestArchive_Basic(t *testing.T) { | ||||
| 	timedReq, err := NewRequest(ctx.Repo.Repository.ID, ctx.Repo.GitRepo, secondCommit+".tar.gz") | ||||
| 	assert.NoError(t, err) | ||||
| 	assert.NotNil(t, timedReq) | ||||
| 	doArchive(db.DefaultContext, timedReq) | ||||
| 	doArchive(t.Context(), timedReq) | ||||
|  | ||||
| 	zipReq2, err = NewRequest(ctx.Repo.Repository.ID, ctx.Repo.GitRepo, firstCommit+".zip") | ||||
| 	assert.NoError(t, err) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user