From 98098de1f7c9103d87f9a1847b8406e7ad14e047 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Dachary?= Date: Sun, 26 Nov 2023 06:33:30 +0100 Subject: [PATCH] Revert "test GET /api/v1/repos/{owner}/{repo}/keys/{id}" This reverts commit d095e4fdc5ce1f0fb492b2a7b6aa68672048a531. --- tests/integration/api_keys_test.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/integration/api_keys_test.go b/tests/integration/api_keys_test.go index 03d28c9126..238c3cb823 100644 --- a/tests/integration/api_keys_test.go +++ b/tests/integration/api_keys_test.go @@ -72,17 +72,6 @@ func TestCreateReadOnlyDeployKey(t *testing.T) { Content: rawKeyBody.Key, Mode: perm.AccessModeRead, }) - - // Using the ID of a key that does not belong to the repository must fail - { - req := NewRequest(t, "GET", fmt.Sprintf("/api/v1/repos/%s/%s/keys/%d?token=%s", repoOwner.Name, repo.Name, newDeployKey.ID, token)) - MakeRequest(t, req, http.StatusOK) - - session5 := loginUser(t, "user5") - token5 := getTokenForLoggedInUser(t, session5, auth_model.AccessTokenScopeWriteRepository) - req = NewRequest(t, "GET", fmt.Sprintf("/api/v1/repos/user5/repo4/keys/%d?token=%s", newDeployKey.ID, token5)) - MakeRequest(t, req, http.StatusNotFound) - } } func TestCreateReadWriteDeployKey(t *testing.T) {