mirror of https://github.com/minio/minio.git
				
				
				
			
		
			
				
	
	
		
			237 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			237 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			Go
		
	
	
	
/*
 | 
						|
 * Minio Cloud Storage, (C) 2017 Minio, Inc.
 | 
						|
 *
 | 
						|
 * Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
 * you may not use this file except in compliance with the License.
 | 
						|
 * You may obtain a copy of the License at
 | 
						|
 *
 | 
						|
 *     http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 *
 | 
						|
 * Unless required by applicable law or agreed to in writing, software
 | 
						|
 * distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
 * See the License for the specific language governing permissions and
 | 
						|
 * limitations under the License.
 | 
						|
 */
 | 
						|
 | 
						|
package cmd
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
	"net/url"
 | 
						|
	"reflect"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/Azure/azure-sdk-for-go/storage"
 | 
						|
)
 | 
						|
 | 
						|
// Test canonical metadata.
 | 
						|
func TestS3ToAzureHeaders(t *testing.T) {
 | 
						|
	headers := map[string]string{
 | 
						|
		"accept-encoding":  "gzip",
 | 
						|
		"content-encoding": "gzip",
 | 
						|
	}
 | 
						|
	expectedHeaders := map[string]string{
 | 
						|
		"Accept-Encoding":  "gzip",
 | 
						|
		"Content-Encoding": "gzip",
 | 
						|
	}
 | 
						|
	actualHeaders := s3ToAzureHeaders(headers)
 | 
						|
	if !reflect.DeepEqual(actualHeaders, expectedHeaders) {
 | 
						|
		t.Fatalf("Test failed, expected %#v, got %#v", expectedHeaders, actualHeaders)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestAzureToS3Metadata(t *testing.T) {
 | 
						|
	// Just one testcase. Adding more test cases does not add value to the testcase
 | 
						|
	// as azureToS3Metadata() just adds a prefix.
 | 
						|
	metadata := map[string]string{
 | 
						|
		"First-Name": "myname",
 | 
						|
	}
 | 
						|
	expectedMeta := map[string]string{
 | 
						|
		"X-Amz-Meta-First-Name": "myname",
 | 
						|
	}
 | 
						|
	actualMeta := azureToS3Metadata(metadata)
 | 
						|
	if !reflect.DeepEqual(actualMeta, expectedMeta) {
 | 
						|
		t.Fatalf("Test failed, expected %#v, got %#v", expectedMeta, actualMeta)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// Add tests for azure to object error.
 | 
						|
func TestAzureToObjectError(t *testing.T) {
 | 
						|
	testCases := []struct {
 | 
						|
		actualErr      error
 | 
						|
		expectedErr    error
 | 
						|
		bucket, object string
 | 
						|
	}{
 | 
						|
		{
 | 
						|
			nil, nil, "", "",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			traceError(errUnexpected), errUnexpected, "", "",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			traceError(errUnexpected), traceError(errUnexpected), "", "",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			traceError(storage.AzureStorageServiceError{
 | 
						|
				Code: "ContainerAlreadyExists",
 | 
						|
			}), BucketExists{Bucket: "bucket"}, "bucket", "",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			traceError(storage.AzureStorageServiceError{
 | 
						|
				Code: "InvalidResourceName",
 | 
						|
			}), BucketNameInvalid{Bucket: "bucket."}, "bucket.", "",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			traceError(storage.AzureStorageServiceError{
 | 
						|
				StatusCode: http.StatusNotFound,
 | 
						|
			}), ObjectNotFound{
 | 
						|
				Bucket: "bucket",
 | 
						|
				Object: "object",
 | 
						|
			}, "bucket", "object",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			traceError(storage.AzureStorageServiceError{
 | 
						|
				StatusCode: http.StatusNotFound,
 | 
						|
			}), BucketNotFound{Bucket: "bucket"}, "bucket", "",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			traceError(storage.AzureStorageServiceError{
 | 
						|
				StatusCode: http.StatusBadRequest,
 | 
						|
			}), BucketNameInvalid{Bucket: "bucket."}, "bucket.", "",
 | 
						|
		},
 | 
						|
	}
 | 
						|
	for i, testCase := range testCases {
 | 
						|
		err := azureToObjectError(testCase.actualErr, testCase.bucket, testCase.object)
 | 
						|
		if err != nil {
 | 
						|
			if err.Error() != testCase.expectedErr.Error() {
 | 
						|
				t.Errorf("Test %d: Expected error %s, got %s", i+1, testCase.expectedErr, err)
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// Test azureGetBlockID().
 | 
						|
func TestAzureGetBlockID(t *testing.T) {
 | 
						|
	testCases := []struct {
 | 
						|
		partID  int
 | 
						|
		md5     string
 | 
						|
		blockID string
 | 
						|
	}{
 | 
						|
		{1, "d41d8cd98f00b204e9800998ecf8427e", "MDAwMDEuZDQxZDhjZDk4ZjAwYjIwNGU5ODAwOTk4ZWNmODQyN2U="},
 | 
						|
		{2, "a7fb6b7b36ee4ed66b5546fac4690273", "MDAwMDIuYTdmYjZiN2IzNmVlNGVkNjZiNTU0NmZhYzQ2OTAyNzM="},
 | 
						|
	}
 | 
						|
	for _, test := range testCases {
 | 
						|
		blockID := azureGetBlockID(test.partID, test.md5)
 | 
						|
		if blockID != test.blockID {
 | 
						|
			t.Fatalf("%s is not equal to %s", blockID, test.blockID)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// Test azureParseBlockID().
 | 
						|
func TestAzureParseBlockID(t *testing.T) {
 | 
						|
	testCases := []struct {
 | 
						|
		partID  int
 | 
						|
		md5     string
 | 
						|
		blockID string
 | 
						|
	}{
 | 
						|
		{1, "d41d8cd98f00b204e9800998ecf8427e", "MDAwMDEuZDQxZDhjZDk4ZjAwYjIwNGU5ODAwOTk4ZWNmODQyN2U="},
 | 
						|
		{2, "a7fb6b7b36ee4ed66b5546fac4690273", "MDAwMDIuYTdmYjZiN2IzNmVlNGVkNjZiNTU0NmZhYzQ2OTAyNzM="},
 | 
						|
	}
 | 
						|
	for _, test := range testCases {
 | 
						|
		partID, md5, err := azureParseBlockID(test.blockID)
 | 
						|
		if err != nil {
 | 
						|
			t.Fatal(err)
 | 
						|
		}
 | 
						|
		if partID != test.partID {
 | 
						|
			t.Fatalf("%d not equal to %d", partID, test.partID)
 | 
						|
		}
 | 
						|
		if md5 != test.md5 {
 | 
						|
			t.Fatalf("%s not equal to %s", md5, test.md5)
 | 
						|
		}
 | 
						|
	}
 | 
						|
	_, _, err := azureParseBlockID("junk")
 | 
						|
	if err == nil {
 | 
						|
		t.Fatal("Expected azureParseBlockID() to return error")
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// Test azureListBlobsGetParameters()
 | 
						|
func TestAzureListBlobsGetParameters(t *testing.T) {
 | 
						|
 | 
						|
	// Test values set 1
 | 
						|
	expectedURLValues := url.Values{}
 | 
						|
	expectedURLValues.Set("prefix", "test")
 | 
						|
	expectedURLValues.Set("delimiter", "_")
 | 
						|
	expectedURLValues.Set("marker", "marker")
 | 
						|
	expectedURLValues.Set("include", "hello")
 | 
						|
	expectedURLValues.Set("maxresults", "20")
 | 
						|
	expectedURLValues.Set("timeout", "10")
 | 
						|
 | 
						|
	setBlobParameters := storage.ListBlobsParameters{"test", "_", "marker", "hello", 20, 10}
 | 
						|
 | 
						|
	// Test values set 2
 | 
						|
	expectedURLValues1 := url.Values{}
 | 
						|
 | 
						|
	setBlobParameters1 := storage.ListBlobsParameters{"", "", "", "", 0, 0}
 | 
						|
 | 
						|
	testCases := []struct {
 | 
						|
		name string
 | 
						|
		args storage.ListBlobsParameters
 | 
						|
		want url.Values
 | 
						|
	}{
 | 
						|
		{"TestIfValuesSet", setBlobParameters, expectedURLValues},
 | 
						|
		{"TestIfValuesNotSet", setBlobParameters1, expectedURLValues1},
 | 
						|
	}
 | 
						|
	for _, test := range testCases {
 | 
						|
		t.Run(test.name, func(t *testing.T) {
 | 
						|
			if got := azureListBlobsGetParameters(test.args); !reflect.DeepEqual(got, test.want) {
 | 
						|
				t.Errorf("azureListBlobsGetParameters() = %v, want %v", got, test.want)
 | 
						|
			}
 | 
						|
		})
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestAnonErrToObjectErr(t *testing.T) {
 | 
						|
	testCases := []struct {
 | 
						|
		name       string
 | 
						|
		statusCode int
 | 
						|
		params     []string
 | 
						|
		wantErr    error
 | 
						|
	}{
 | 
						|
		{"ObjectNotFound",
 | 
						|
			http.StatusNotFound,
 | 
						|
			[]string{"testBucket", "testObject"},
 | 
						|
			ObjectNotFound{Bucket: "testBucket", Object: "testObject"},
 | 
						|
		},
 | 
						|
		{"BucketNotFound",
 | 
						|
			http.StatusNotFound,
 | 
						|
			[]string{"testBucket", ""},
 | 
						|
			BucketNotFound{Bucket: "testBucket"},
 | 
						|
		},
 | 
						|
		{"ObjectNameInvalid",
 | 
						|
			http.StatusBadRequest,
 | 
						|
			[]string{"testBucket", "testObject"},
 | 
						|
			ObjectNameInvalid{Bucket: "testBucket", Object: "testObject"},
 | 
						|
		},
 | 
						|
		{"BucketNameInvalid",
 | 
						|
			http.StatusBadRequest,
 | 
						|
			[]string{"testBucket", ""},
 | 
						|
			BucketNameInvalid{Bucket: "testBucket"},
 | 
						|
		},
 | 
						|
		{"UnexpectedError",
 | 
						|
			http.StatusBadGateway,
 | 
						|
			[]string{"testBucket", "testObject"},
 | 
						|
			errUnexpected,
 | 
						|
		},
 | 
						|
	}
 | 
						|
	for _, test := range testCases {
 | 
						|
		t.Run(test.name, func(t *testing.T) {
 | 
						|
			if err := anonErrToObjectErr(test.statusCode, test.params...); !reflect.DeepEqual(err, test.wantErr) {
 | 
						|
				t.Errorf("anonErrToObjectErr() error = %v, wantErr %v", err, test.wantErr)
 | 
						|
			}
 | 
						|
		})
 | 
						|
	}
 | 
						|
}
 |