| 
									
										
										
										
											2021-04-19 03:41:13 +08:00
										 |  |  | // Copyright (c) 2015-2021 MinIO, Inc.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This file is part of MinIO Object Storage stack
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2016-09-15 16:44:19 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"errors" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							| 
									
										
										
										
											2017-10-22 13:30:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 05:59:40 +08:00
										 |  |  | 	"github.com/minio/minio/internal/crypto" | 
					
						
							|  |  |  | 	"github.com/minio/minio/internal/hash" | 
					
						
							| 
									
										
										
										
											2016-09-15 16:44:19 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 17:25:52 +08:00
										 |  |  | var toAPIErrorTests = []struct { | 
					
						
							| 
									
										
										
										
											2017-11-08 07:18:59 +08:00
										 |  |  | 	err     error | 
					
						
							|  |  |  | 	errCode APIErrorCode | 
					
						
							|  |  |  | }{ | 
					
						
							|  |  |  | 	{err: hash.BadDigest{}, errCode: ErrBadDigest}, | 
					
						
							|  |  |  | 	{err: hash.SHA256Mismatch{}, errCode: ErrContentSHA256Mismatch}, | 
					
						
							|  |  |  | 	{err: IncompleteBody{}, errCode: ErrIncompleteBody}, | 
					
						
							|  |  |  | 	{err: ObjectExistsAsDirectory{}, errCode: ErrObjectExistsAsDirectory}, | 
					
						
							|  |  |  | 	{err: BucketNameInvalid{}, errCode: ErrInvalidBucketName}, | 
					
						
							|  |  |  | 	{err: BucketExists{}, errCode: ErrBucketAlreadyOwnedByYou}, | 
					
						
							|  |  |  | 	{err: ObjectNotFound{}, errCode: ErrNoSuchKey}, | 
					
						
							|  |  |  | 	{err: ObjectNameInvalid{}, errCode: ErrInvalidObjectName}, | 
					
						
							|  |  |  | 	{err: InvalidUploadID{}, errCode: ErrNoSuchUpload}, | 
					
						
							|  |  |  | 	{err: InvalidPart{}, errCode: ErrInvalidPart}, | 
					
						
							| 
									
										
										
										
											2023-06-19 09:20:15 +08:00
										 |  |  | 	{err: InsufficientReadQuorum{}, errCode: ErrSlowDownRead}, | 
					
						
							|  |  |  | 	{err: InsufficientWriteQuorum{}, errCode: ErrSlowDownWrite}, | 
					
						
							| 
									
										
										
										
											2017-11-08 07:18:59 +08:00
										 |  |  | 	{err: InvalidUploadIDKeyCombination{}, errCode: ErrNotImplemented}, | 
					
						
							|  |  |  | 	{err: MalformedUploadID{}, errCode: ErrNoSuchUpload}, | 
					
						
							|  |  |  | 	{err: PartTooSmall{}, errCode: ErrEntityTooSmall}, | 
					
						
							|  |  |  | 	{err: BucketNotEmpty{}, errCode: ErrBucketNotEmpty}, | 
					
						
							|  |  |  | 	{err: BucketNotFound{}, errCode: ErrNoSuchBucket}, | 
					
						
							|  |  |  | 	{err: StorageFull{}, errCode: ErrStorageFull}, | 
					
						
							|  |  |  | 	{err: NotImplemented{}, errCode: ErrNotImplemented}, | 
					
						
							|  |  |  | 	{err: errSignatureMismatch, errCode: ErrSignatureDoesNotMatch}, | 
					
						
							| 
									
										
										
										
											2016-09-15 16:44:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-08 07:18:59 +08:00
										 |  |  | 	// SSE-C errors
 | 
					
						
							| 
									
										
										
										
											2018-08-18 03:52:14 +08:00
										 |  |  | 	{err: crypto.ErrInvalidCustomerAlgorithm, errCode: ErrInvalidSSECustomerAlgorithm}, | 
					
						
							|  |  |  | 	{err: crypto.ErrMissingCustomerKey, errCode: ErrMissingSSECustomerKey}, | 
					
						
							| 
									
										
										
										
											2019-03-20 08:21:05 +08:00
										 |  |  | 	{err: crypto.ErrInvalidCustomerKey, errCode: ErrAccessDenied}, | 
					
						
							| 
									
										
										
										
											2018-08-18 03:52:14 +08:00
										 |  |  | 	{err: crypto.ErrMissingCustomerKeyMD5, errCode: ErrMissingSSECustomerKeyMD5}, | 
					
						
							|  |  |  | 	{err: crypto.ErrCustomerKeyMD5Mismatch, errCode: ErrSSECustomerKeyMD5Mismatch}, | 
					
						
							| 
									
										
										
										
											2017-11-08 07:18:59 +08:00
										 |  |  | 	{err: errObjectTampered, errCode: ErrObjectTampered}, | 
					
						
							| 
									
										
										
										
											2016-09-15 16:44:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-08 07:18:59 +08:00
										 |  |  | 	{err: nil, errCode: ErrNone}, | 
					
						
							|  |  |  | 	{err: errors.New("Custom error"), errCode: ErrInternalError}, // Case where err type is unknown.
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-09-15 16:44:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-08 07:18:59 +08:00
										 |  |  | func TestAPIErrCode(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2025-04-09 22:28:39 +08:00
										 |  |  | 	ctx := t.Context() | 
					
						
							| 
									
										
										
										
											2019-02-12 17:25:52 +08:00
										 |  |  | 	for i, testCase := range toAPIErrorTests { | 
					
						
							| 
									
										
										
										
											2018-11-13 03:07:43 +08:00
										 |  |  | 		errCode := toAPIErrorCode(ctx, testCase.err) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:44:19 +08:00
										 |  |  | 		if errCode != testCase.errCode { | 
					
						
							|  |  |  | 			t.Errorf("Test %d: Expected error code %d, got %d", i+1, testCase.errCode, errCode) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2023-02-25 10:36:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Check if an API error is properly defined
 | 
					
						
							|  |  |  | func TestAPIErrCodeDefinition(t *testing.T) { | 
					
						
							|  |  |  | 	for errAPI := ErrNone + 1; errAPI < apiErrCodeEnd; errAPI++ { | 
					
						
							|  |  |  | 		errCode, ok := errorCodes[errAPI] | 
					
						
							|  |  |  | 		if !ok { | 
					
						
							|  |  |  | 			t.Fatal(errAPI, "error code is not defined in the API error code table") | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if errCode.Code == "" { | 
					
						
							|  |  |  | 			t.Fatal(errAPI, "error code has an empty XML code") | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if errCode.HTTPStatusCode == 0 { | 
					
						
							|  |  |  | 			t.Fatal(errAPI, "error code has a zero HTTP status code") | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |