0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-01-24 13:06:58 +01:00

Use correct authentication

This commit is contained in:
Excellencedev 2025-12-24 05:57:51 +01:00
parent 9ada493d72
commit 43279bfb8b

View File

@ -371,9 +371,9 @@ func TestActionsCrossRepoAccess(t *testing.T) {
fileName := "test-file.bin"
content := []byte{1, 2, 3, 4, 5}
// First, upload a package to repo-B using the org owner's token
// First, upload a package to repo-B using basic auth (user2 is org owner)
packageURL := fmt.Sprintf("/api/packages/%s/generic/%s/%s/%s", orgName, packageName, packageVersion, fileName)
uploadReq := NewRequestWithBody(t, "PUT", packageURL, bytes.NewReader(content)).AddTokenAuth(token)
uploadReq := NewRequestWithBody(t, "PUT", packageURL, bytes.NewReader(content)).AddBasicAuth("user2")
MakeRequest(t, uploadReq, http.StatusCreated)
// Try to download the package with task token from repo-A (cross-repo read)