| 
									
										
										
										
											2016-12-28 00:28:10 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  |  * Minio Cloud Storage, (C) 2016, 2017 Minio, Inc. | 
					
						
							| 
									
										
										
										
											2016-12-28 00:28:10 +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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-13 10:25:43 +08:00
										 |  |  | import ( | 
					
						
							| 
									
										
										
										
											2017-09-20 03:37:56 +08:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2017-08-13 10:25:43 +08:00
										 |  |  | 	"os" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							| 
									
										
										
										
											2017-11-01 02:54:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/minio/minio/pkg/auth" | 
					
						
							| 
									
										
										
										
											2017-08-13 10:25:43 +08:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2016-12-28 00:28:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | func testAuthenticate(authType string, t *testing.T) { | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 	testPath, err := newTestConfig(globalMinioDefaultRegion) | 
					
						
							| 
									
										
										
										
											2016-12-28 00:28:10 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("unable initialize config file, %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-13 10:25:43 +08:00
										 |  |  | 	defer os.RemoveAll(testPath) | 
					
						
							| 
									
										
										
										
											2017-11-01 02:54:32 +08:00
										 |  |  | 	cred := auth.MustGetNewCredentials() | 
					
						
							| 
									
										
										
										
											2017-08-04 11:03:37 +08:00
										 |  |  | 	serverConfig.SetCredential(cred) | 
					
						
							| 
									
										
										
										
											2016-12-28 00:28:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Define test cases.
 | 
					
						
							|  |  |  | 	testCases := []struct { | 
					
						
							|  |  |  | 		accessKey   string | 
					
						
							|  |  |  | 		secretKey   string | 
					
						
							|  |  |  | 		expectedErr error | 
					
						
							|  |  |  | 	}{ | 
					
						
							| 
									
										
										
										
											2017-08-04 11:03:37 +08:00
										 |  |  | 		// Access key (less than 5 chrs) too small.
 | 
					
						
							| 
									
										
										
										
											2017-11-01 02:54:32 +08:00
										 |  |  | 		{"user", cred.SecretKey, auth.ErrInvalidAccessKeyLength}, | 
					
						
							| 
									
										
										
										
											2017-08-04 11:03:37 +08:00
										 |  |  | 		// Secret key (less than 8 chrs) too small.
 | 
					
						
							| 
									
										
										
										
											2017-11-01 02:54:32 +08:00
										 |  |  | 		{cred.AccessKey, "pass", auth.ErrInvalidSecretKeyLength}, | 
					
						
							| 
									
										
										
										
											2016-12-28 00:28:10 +08:00
										 |  |  | 		// Authentication error.
 | 
					
						
							|  |  |  | 		{"myuser", "mypassword", errInvalidAccessKeyID}, | 
					
						
							|  |  |  | 		// Authentication error.
 | 
					
						
							| 
									
										
										
										
											2017-08-04 11:03:37 +08:00
										 |  |  | 		{cred.AccessKey, "mypassword", errAuthentication}, | 
					
						
							| 
									
										
										
										
											2016-12-28 00:28:10 +08:00
										 |  |  | 		// Success.
 | 
					
						
							| 
									
										
										
										
											2017-08-04 11:03:37 +08:00
										 |  |  | 		{cred.AccessKey, cred.SecretKey, nil}, | 
					
						
							| 
									
										
										
										
											2016-12-28 00:28:10 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Run tests.
 | 
					
						
							|  |  |  | 	for _, testCase := range testCases { | 
					
						
							|  |  |  | 		var err error | 
					
						
							|  |  |  | 		if authType == "node" { | 
					
						
							|  |  |  | 			_, err = authenticateNode(testCase.accessKey, testCase.secretKey) | 
					
						
							|  |  |  | 		} else if authType == "web" { | 
					
						
							|  |  |  | 			_, err = authenticateWeb(testCase.accessKey, testCase.secretKey) | 
					
						
							| 
									
										
										
										
											2017-07-25 03:46:37 +08:00
										 |  |  | 		} else if authType == "url" { | 
					
						
							|  |  |  | 			_, err = authenticateURL(testCase.accessKey, testCase.secretKey) | 
					
						
							| 
									
										
										
										
											2016-12-28 00:28:10 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if testCase.expectedErr != nil { | 
					
						
							|  |  |  | 			if err == nil { | 
					
						
							|  |  |  | 				t.Fatalf("%+v: expected: %s, got: <nil>", testCase, testCase.expectedErr) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if testCase.expectedErr.Error() != err.Error() { | 
					
						
							|  |  |  | 				t.Fatalf("%+v: expected: %s, got: %s", testCase, testCase.expectedErr, err) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else if err != nil { | 
					
						
							|  |  |  | 			t.Fatalf("%+v: expected: <nil>, got: %s", testCase, err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-27 08:51:51 +08:00
										 |  |  | func TestAuthenticateNode(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-12-28 00:28:10 +08:00
										 |  |  | 	testAuthenticate("node", t) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-27 08:51:51 +08:00
										 |  |  | func TestAuthenticateWeb(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-12-28 00:28:10 +08:00
										 |  |  | 	testAuthenticate("web", t) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-01-27 08:51:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-25 03:46:37 +08:00
										 |  |  | func TestAuthenticateURL(t *testing.T) { | 
					
						
							|  |  |  | 	testAuthenticate("url", t) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-20 03:37:56 +08:00
										 |  |  | // Tests web request authenticator.
 | 
					
						
							|  |  |  | func TestWebRequestAuthenticate(t *testing.T) { | 
					
						
							|  |  |  | 	testPath, err := newTestConfig(globalMinioDefaultRegion) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("unable initialize config file, %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer os.RemoveAll(testPath) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	creds := serverConfig.GetCredential() | 
					
						
							|  |  |  | 	token, err := getTokenString(creds.AccessKey, creds.SecretKey) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("unable get token %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	testCases := []struct { | 
					
						
							|  |  |  | 		req         *http.Request | 
					
						
							|  |  |  | 		expectedErr error | 
					
						
							|  |  |  | 	}{ | 
					
						
							|  |  |  | 		// Set valid authorization header.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			req: &http.Request{ | 
					
						
							|  |  |  | 				Header: http.Header{ | 
					
						
							|  |  |  | 					"Authorization": []string{token}, | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			expectedErr: nil, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// No authorization header.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			req: &http.Request{ | 
					
						
							|  |  |  | 				Header: http.Header{}, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			expectedErr: errNoAuthToken, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		// Invalid authorization token.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			req: &http.Request{ | 
					
						
							|  |  |  | 				Header: http.Header{ | 
					
						
							|  |  |  | 					"Authorization": []string{"invalid-token"}, | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			expectedErr: errAuthentication, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for i, testCase := range testCases { | 
					
						
							|  |  |  | 		gotErr := webRequestAuthenticate(testCase.req) | 
					
						
							|  |  |  | 		if testCase.expectedErr != gotErr { | 
					
						
							|  |  |  | 			t.Errorf("Test %d, expected err %s, got %s", i+1, testCase.expectedErr, gotErr) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-27 08:51:51 +08:00
										 |  |  | func BenchmarkAuthenticateNode(b *testing.B) { | 
					
						
							|  |  |  | 	testPath, err := newTestConfig(globalMinioDefaultRegion) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		b.Fatalf("unable initialize config file, %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-13 10:25:43 +08:00
										 |  |  | 	defer os.RemoveAll(testPath) | 
					
						
							| 
									
										
										
										
											2017-01-27 08:51:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	creds := serverConfig.GetCredential() | 
					
						
							|  |  |  | 	b.ResetTimer() | 
					
						
							|  |  |  | 	b.ReportAllocs() | 
					
						
							|  |  |  | 	for i := 0; i < b.N; i++ { | 
					
						
							|  |  |  | 		authenticateNode(creds.AccessKey, creds.SecretKey) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func BenchmarkAuthenticateWeb(b *testing.B) { | 
					
						
							|  |  |  | 	testPath, err := newTestConfig(globalMinioDefaultRegion) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		b.Fatalf("unable initialize config file, %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-13 10:25:43 +08:00
										 |  |  | 	defer os.RemoveAll(testPath) | 
					
						
							| 
									
										
										
										
											2017-01-27 08:51:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	creds := serverConfig.GetCredential() | 
					
						
							|  |  |  | 	b.ResetTimer() | 
					
						
							|  |  |  | 	b.ReportAllocs() | 
					
						
							|  |  |  | 	for i := 0; i < b.N; i++ { | 
					
						
							|  |  |  | 		authenticateWeb(creds.AccessKey, creds.SecretKey) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |