| 
									
										
										
										
											2016-08-06 04:48:31 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  |  * Minio Cloud Storage, (C) 2016, 2017 Minio, Inc. | 
					
						
							| 
									
										
										
										
											2016-08-06 04:48:31 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2016-08-06 04:48:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-10 00:38:07 +08:00
										 |  |  | import ( | 
					
						
							| 
									
										
										
										
											2016-08-26 15:11:53 +08:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 	"net" | 
					
						
							| 
									
										
										
										
											2016-09-10 00:38:07 +08:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 	"net/url" | 
					
						
							| 
									
										
										
										
											2016-09-10 00:38:07 +08:00
										 |  |  | 	"reflect" | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 	"runtime" | 
					
						
							| 
									
										
										
										
											2016-09-10 00:38:07 +08:00
										 |  |  | 	"testing" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Tests http.Header clone.
 | 
					
						
							|  |  |  | func TestCloneHeader(t *testing.T) { | 
					
						
							|  |  |  | 	headers := []http.Header{ | 
					
						
							| 
									
										
										
										
											2016-09-10 15:51:25 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2016-09-10 00:38:07 +08:00
										 |  |  | 			"Content-Type":   {"text/html; charset=UTF-8"}, | 
					
						
							|  |  |  | 			"Content-Length": {"0"}, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2016-09-10 15:51:25 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2016-09-10 00:38:07 +08:00
										 |  |  | 			"Content-Length": {"0", "1", "2"}, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2016-09-10 15:51:25 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2016-09-10 00:38:07 +08:00
										 |  |  | 			"Expires":          {"-1"}, | 
					
						
							|  |  |  | 			"Content-Length":   {"0"}, | 
					
						
							|  |  |  | 			"Content-Encoding": {"gzip"}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for i, header := range headers { | 
					
						
							|  |  |  | 		clonedHeader := cloneHeader(header) | 
					
						
							|  |  |  | 		if !reflect.DeepEqual(header, clonedHeader) { | 
					
						
							|  |  |  | 			t.Errorf("Test %d failed", i+1) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-06 04:48:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-26 15:11:53 +08:00
										 |  |  | // Tests check duplicates function.
 | 
					
						
							|  |  |  | func TestCheckDuplicates(t *testing.T) { | 
					
						
							|  |  |  | 	tests := []struct { | 
					
						
							|  |  |  | 		list       []string | 
					
						
							|  |  |  | 		err        error | 
					
						
							|  |  |  | 		shouldPass bool | 
					
						
							|  |  |  | 	}{ | 
					
						
							|  |  |  | 		// Test 1 - for '/tmp/1' repeated twice.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			list:       []string{"/tmp/1", "/tmp/1", "/tmp/2", "/tmp/3"}, | 
					
						
							|  |  |  | 			err:        fmt.Errorf("Duplicate key: \"/tmp/1\" found of count: \"2\""), | 
					
						
							|  |  |  | 			shouldPass: false, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Test 2 - for '/tmp/1' repeated thrice.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			list:       []string{"/tmp/1", "/tmp/1", "/tmp/1", "/tmp/3"}, | 
					
						
							|  |  |  | 			err:        fmt.Errorf("Duplicate key: \"/tmp/1\" found of count: \"3\""), | 
					
						
							|  |  |  | 			shouldPass: false, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Test 3 - empty string.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			list:       []string{""}, | 
					
						
							|  |  |  | 			err:        errInvalidArgument, | 
					
						
							|  |  |  | 			shouldPass: false, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Test 4 - empty string.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			list:       nil, | 
					
						
							|  |  |  | 			err:        errInvalidArgument, | 
					
						
							|  |  |  | 			shouldPass: false, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Test 5 - non repeated strings.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			list:       []string{"/tmp/1", "/tmp/2", "/tmp/3"}, | 
					
						
							|  |  |  | 			err:        nil, | 
					
						
							|  |  |  | 			shouldPass: true, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Validate if function runs as expected.
 | 
					
						
							|  |  |  | 	for i, test := range tests { | 
					
						
							| 
									
										
										
										
											2016-10-19 03:49:24 +08:00
										 |  |  | 		err := checkDuplicateStrings(test.list) | 
					
						
							| 
									
										
										
										
											2016-08-26 15:11:53 +08:00
										 |  |  | 		if test.shouldPass && err != test.err { | 
					
						
							|  |  |  | 			t.Errorf("Test: %d, Expected %s got %s", i+1, test.err, err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if !test.shouldPass && err.Error() != test.err.Error() { | 
					
						
							|  |  |  | 			t.Errorf("Test: %d, Expected %s got %s", i+1, test.err, err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-15 16:59:28 +08:00
										 |  |  | // Tests maximum object size.
 | 
					
						
							|  |  |  | func TestMaxObjectSize(t *testing.T) { | 
					
						
							|  |  |  | 	sizes := []struct { | 
					
						
							|  |  |  | 		isMax bool | 
					
						
							|  |  |  | 		size  int64 | 
					
						
							|  |  |  | 	}{ | 
					
						
							|  |  |  | 		// Test - 1 - maximum object size.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			true, | 
					
						
							| 
									
										
										
										
											2017-03-04 02:14:17 +08:00
										 |  |  | 			globalMaxObjectSize + 1, | 
					
						
							| 
									
										
										
										
											2016-08-15 16:59:28 +08:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		// Test - 2 - not maximum object size.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			false, | 
					
						
							| 
									
										
										
										
											2017-03-04 02:14:17 +08:00
										 |  |  | 			globalMaxObjectSize - 1, | 
					
						
							| 
									
										
										
										
											2016-08-15 16:59:28 +08:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for i, s := range sizes { | 
					
						
							|  |  |  | 		isMax := isMaxObjectSize(s.size) | 
					
						
							|  |  |  | 		if isMax != s.isMax { | 
					
						
							|  |  |  | 			t.Errorf("Test %d: Expected %t, got %t", i+1, s.isMax, isMax) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Tests minimum allowed part size.
 | 
					
						
							|  |  |  | func TestMinAllowedPartSize(t *testing.T) { | 
					
						
							|  |  |  | 	sizes := []struct { | 
					
						
							|  |  |  | 		isMin bool | 
					
						
							|  |  |  | 		size  int64 | 
					
						
							|  |  |  | 	}{ | 
					
						
							|  |  |  | 		// Test - 1 - within minimum part size.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			true, | 
					
						
							| 
									
										
										
										
											2017-03-04 02:14:17 +08:00
										 |  |  | 			globalMinPartSize + 1, | 
					
						
							| 
									
										
										
										
											2016-08-15 16:59:28 +08:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		// Test - 2 - smaller than minimum part size.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			false, | 
					
						
							| 
									
										
										
										
											2017-03-04 02:14:17 +08:00
										 |  |  | 			globalMinPartSize - 1, | 
					
						
							| 
									
										
										
										
											2016-08-15 16:59:28 +08:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for i, s := range sizes { | 
					
						
							|  |  |  | 		isMin := isMinAllowedPartSize(s.size) | 
					
						
							|  |  |  | 		if isMin != s.isMin { | 
					
						
							|  |  |  | 			t.Errorf("Test %d: Expected %t, got %t", i+1, s.isMin, isMin) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Tests maximum allowed part number.
 | 
					
						
							|  |  |  | func TestMaxPartID(t *testing.T) { | 
					
						
							|  |  |  | 	sizes := []struct { | 
					
						
							|  |  |  | 		isMax bool | 
					
						
							|  |  |  | 		partN int | 
					
						
							|  |  |  | 	}{ | 
					
						
							|  |  |  | 		// Test - 1 part number within max part number.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			false, | 
					
						
							| 
									
										
										
										
											2017-03-04 02:14:17 +08:00
										 |  |  | 			globalMaxPartID - 1, | 
					
						
							| 
									
										
										
										
											2016-08-15 16:59:28 +08:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		// Test - 2 part number bigger than max part number.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			true, | 
					
						
							| 
									
										
										
										
											2017-03-04 02:14:17 +08:00
										 |  |  | 			globalMaxPartID + 1, | 
					
						
							| 
									
										
										
										
											2016-08-15 16:59:28 +08:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for i, s := range sizes { | 
					
						
							|  |  |  | 		isMax := isMaxPartID(s.partN) | 
					
						
							|  |  |  | 		if isMax != s.isMax { | 
					
						
							|  |  |  | 			t.Errorf("Test %d: Expected %t, got %t", i+1, s.isMax, isMax) | 
					
						
							| 
									
										
										
										
											2016-08-07 14:53:10 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-08-06 04:48:31 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 03:01:23 +08:00
										 |  |  | // Tests extracting bucket and objectname from various types of URL paths.
 | 
					
						
							|  |  |  | func TestURL2BucketObjectName(t *testing.T) { | 
					
						
							|  |  |  | 	testCases := []struct { | 
					
						
							|  |  |  | 		u              *url.URL | 
					
						
							|  |  |  | 		bucket, object string | 
					
						
							|  |  |  | 	}{ | 
					
						
							|  |  |  | 		// Test case 1 normal case.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			u: &url.URL{ | 
					
						
							|  |  |  | 				Path: "/bucket/object", | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			bucket: "bucket", | 
					
						
							|  |  |  | 			object: "object", | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Test case 2 where url only has separator.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			u: &url.URL{ | 
					
						
							|  |  |  | 				Path: "/", | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			bucket: "", | 
					
						
							|  |  |  | 			object: "", | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Test case 3 only bucket is present.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			u: &url.URL{ | 
					
						
							|  |  |  | 				Path: "/bucket", | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			bucket: "bucket", | 
					
						
							|  |  |  | 			object: "", | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Test case 4 many separators and object is a directory.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			u: &url.URL{ | 
					
						
							|  |  |  | 				Path: "/bucket/object/1/", | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			bucket: "bucket", | 
					
						
							|  |  |  | 			object: "object/1/", | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Test case 5 object has many trailing separators.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			u: &url.URL{ | 
					
						
							|  |  |  | 				Path: "/bucket/object/1///", | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			bucket: "bucket", | 
					
						
							|  |  |  | 			object: "object/1///", | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Test case 6 object has only trailing separators.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			u: &url.URL{ | 
					
						
							|  |  |  | 				Path: "/bucket/object///////", | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			bucket: "bucket", | 
					
						
							|  |  |  | 			object: "object///////", | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Test case 7 object has preceding separators.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			u: &url.URL{ | 
					
						
							|  |  |  | 				Path: "/bucket////object////", | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			bucket: "bucket", | 
					
						
							|  |  |  | 			object: "///object////", | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Test case 8 url is not allocated.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			u:      nil, | 
					
						
							|  |  |  | 			bucket: "", | 
					
						
							|  |  |  | 			object: "", | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Test case 9 url path is empty.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			u:      &url.URL{}, | 
					
						
							|  |  |  | 			bucket: "", | 
					
						
							|  |  |  | 			object: "", | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Validate all test cases.
 | 
					
						
							|  |  |  | 	for i, testCase := range testCases { | 
					
						
							|  |  |  | 		bucketName, objectName := urlPath2BucketObjectName(testCase.u) | 
					
						
							|  |  |  | 		if bucketName != testCase.bucket { | 
					
						
							|  |  |  | 			t.Errorf("Test %d: failed expected bucket name \"%s\", got \"%s\"", i+1, testCase.bucket, bucketName) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if objectName != testCase.object { | 
					
						
							|  |  |  | 			t.Errorf("Test %d: failed expected bucket name \"%s\", got \"%s\"", i+1, testCase.object, objectName) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 08:36:07 +08:00
										 |  |  | // Add tests for starting and stopping different profilers.
 | 
					
						
							|  |  |  | func TestStartProfiler(t *testing.T) { | 
					
						
							|  |  |  | 	if startProfiler("") != nil { | 
					
						
							|  |  |  | 		t.Fatal("Expected nil, but non-nil value returned for invalid profiler.") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | // Tests fetch local address.
 | 
					
						
							|  |  |  | func TestLocalAddress(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 	if runtime.GOOS == globalWindowsOSName { | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-12-23 23:12:19 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	currentIsDistXL := globalIsDistXL | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		globalIsDistXL = currentIsDistXL | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 	// need to set this to avoid stale values from other tests.
 | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 	globalMinioPort = "9000" | 
					
						
							|  |  |  | 	globalMinioHost = "" | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 	testCases := []struct { | 
					
						
							| 
									
										
										
										
											2016-11-08 04:09:24 +08:00
										 |  |  | 		isDistXL     bool | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 		srvCmdConfig serverCmdConfig | 
					
						
							|  |  |  | 		localAddr    string | 
					
						
							|  |  |  | 	}{ | 
					
						
							|  |  |  | 		// Test 1 - local address is found.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2016-11-08 04:09:24 +08:00
										 |  |  | 			isDistXL: true, | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 			srvCmdConfig: serverCmdConfig{ | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 				endpoints: []*url.URL{{ | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 					Scheme: httpScheme, | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 					Host:   "localhost:9000", | 
					
						
							|  |  |  | 					Path:   "/mnt/disk1", | 
					
						
							|  |  |  | 				}, { | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 					Scheme: httpScheme, | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 					Host:   "1.1.1.2:9000", | 
					
						
							|  |  |  | 					Path:   "/mnt/disk2", | 
					
						
							|  |  |  | 				}, { | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 					Scheme: httpScheme, | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 					Host:   "1.1.2.1:9000", | 
					
						
							|  |  |  | 					Path:   "/mnt/disk3", | 
					
						
							|  |  |  | 				}, { | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 					Scheme: httpScheme, | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 					Host:   "1.1.2.2:9000", | 
					
						
							|  |  |  | 					Path:   "/mnt/disk4", | 
					
						
							|  |  |  | 				}}, | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 			localAddr: net.JoinHostPort("localhost", globalMinioPort), | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		// Test 2 - local address is everything.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2016-11-08 04:09:24 +08:00
										 |  |  | 			isDistXL: false, | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 			srvCmdConfig: serverCmdConfig{ | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 				serverAddr: net.JoinHostPort("", globalMinioPort), | 
					
						
							|  |  |  | 				endpoints: []*url.URL{{ | 
					
						
							|  |  |  | 					Path: "/mnt/disk1", | 
					
						
							|  |  |  | 				}, { | 
					
						
							|  |  |  | 					Path: "/mnt/disk2", | 
					
						
							|  |  |  | 				}, { | 
					
						
							|  |  |  | 					Path: "/mnt/disk3", | 
					
						
							|  |  |  | 				}, { | 
					
						
							|  |  |  | 					Path: "/mnt/disk4", | 
					
						
							|  |  |  | 				}}, | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 			localAddr: net.JoinHostPort("", globalMinioPort), | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		// Test 3 - local address is not found.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2016-11-08 04:09:24 +08:00
										 |  |  | 			isDistXL: true, | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 			srvCmdConfig: serverCmdConfig{ | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 				endpoints: []*url.URL{{ | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 					Scheme: httpScheme, | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 					Host:   "1.1.1.1:9000", | 
					
						
							|  |  |  | 					Path:   "/mnt/disk2", | 
					
						
							|  |  |  | 				}, { | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 					Scheme: httpScheme, | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 					Host:   "1.1.1.2:9000", | 
					
						
							|  |  |  | 					Path:   "/mnt/disk2", | 
					
						
							|  |  |  | 				}, { | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 					Scheme: httpScheme, | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 					Host:   "1.1.2.1:9000", | 
					
						
							|  |  |  | 					Path:   "/mnt/disk3", | 
					
						
							|  |  |  | 				}, { | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 					Scheme: httpScheme, | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 					Host:   "1.1.2.2:9000", | 
					
						
							|  |  |  | 					Path:   "/mnt/disk4", | 
					
						
							|  |  |  | 				}}, | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 			}, | 
					
						
							|  |  |  | 			localAddr: "", | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2016-10-21 02:39:10 +08:00
										 |  |  | 		// Test 4 - in case of FS mode, with SSL, the host
 | 
					
						
							|  |  |  | 		// name is specified in the --address option on the
 | 
					
						
							|  |  |  | 		// server command line.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2016-11-08 04:09:24 +08:00
										 |  |  | 			isDistXL: false, | 
					
						
							| 
									
										
										
										
											2016-10-21 02:39:10 +08:00
										 |  |  | 			srvCmdConfig: serverCmdConfig{ | 
					
						
							|  |  |  | 				serverAddr: "play.minio.io:9000", | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 				endpoints: []*url.URL{{ | 
					
						
							|  |  |  | 					Path: "/mnt/disk1", | 
					
						
							|  |  |  | 				}, { | 
					
						
							|  |  |  | 					Path: "/mnt/disk2", | 
					
						
							|  |  |  | 				}, { | 
					
						
							|  |  |  | 					Path: "/mnt/disk3", | 
					
						
							|  |  |  | 				}, { | 
					
						
							|  |  |  | 					Path: "/mnt/disk4", | 
					
						
							|  |  |  | 				}}, | 
					
						
							| 
									
										
										
										
											2016-10-21 02:39:10 +08:00
										 |  |  | 			}, | 
					
						
							|  |  |  | 			localAddr: "play.minio.io:9000", | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Validates fetching local address.
 | 
					
						
							|  |  |  | 	for i, testCase := range testCases { | 
					
						
							| 
									
										
										
										
											2016-11-08 04:09:24 +08:00
										 |  |  | 		globalIsDistXL = testCase.isDistXL | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 		localAddr := getLocalAddress(testCase.srvCmdConfig) | 
					
						
							|  |  |  | 		if localAddr != testCase.localAddr { | 
					
						
							|  |  |  | 			t.Fatalf("Test %d: Expected %s, got %s", i+1, testCase.localAddr, localAddr) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |