Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InvalidAccessKeyId (0.06 sec)

  1. cmd/bucket-handlers_test.go

    			expectedRespStatus: http.StatusForbidden,
    			locationResponse:   []byte(""),
    			errorResponse: APIErrorResponse{
    				Resource: SlashSeparator + bucketName + SlashSeparator,
    				Code:     "InvalidAccessKeyId",
    				Message:  "The Access Key Id you provided does not exist in our records.",
    			},
    			shouldPass: false,
    		},
    	}
    
    	for i, testCase := range testCases {
    		if i != 1 {
    			continue
    		}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 39.8K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    			data:       bytesData,
    			dataLen:    len(bytesData),
    			accessKey:  "Wrong-AccessID",
    			secretKey:  credentials.SecretKey,
    
    			expectedRespStatus: http.StatusForbidden,
    			wantAPICode:        "InvalidAccessKeyId",
    		},
    		// Test Case with invalid header key X-Amz-Copy-Source.
    		2: {
    			bucketName:         bucketName,
    			objectName:         objectName,
    			headers:            copySourceHeader,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 163.1K bytes
    - Viewed (0)
Back to top