| 
									
										
										
										
											2016-07-30 05:05:31 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  |  * Minio Cloud Storage, (C) 2016, 2017 Minio, Inc. | 
					
						
							| 
									
										
										
										
											2016-07-30 05:05: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-07-30 05:05:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"net" | 
					
						
							|  |  |  | 	"runtime" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-11 07:28:05 +08:00
										 |  |  | // Tests for port availability logic written for server startup sequence.
 | 
					
						
							| 
									
										
										
										
											2016-07-30 05:05:31 +08:00
										 |  |  | func TestCheckPortAvailability(t *testing.T) { | 
					
						
							|  |  |  | 	tests := []struct { | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 		port string | 
					
						
							| 
									
										
										
										
											2016-07-30 05:05:31 +08:00
										 |  |  | 	}{ | 
					
						
							| 
									
										
										
										
											2016-08-11 07:28:05 +08:00
										 |  |  | 		{getFreePort()}, | 
					
						
							|  |  |  | 		{getFreePort()}, | 
					
						
							| 
									
										
										
										
											2016-07-30 05:05:31 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	for _, test := range tests { | 
					
						
							|  |  |  | 		// This test should pass if the ports are available
 | 
					
						
							|  |  |  | 		err := checkPortAvailability(test.port) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 			t.Fatalf("checkPortAvailability test failed for port: %s. Error: %v", test.port, err) | 
					
						
							| 
									
										
										
										
											2016-07-30 05:05:31 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Now use the ports and check again
 | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 		ln, err := net.Listen("tcp", net.JoinHostPort("", test.port)) | 
					
						
							| 
									
										
										
										
											2016-07-30 05:05:31 +08:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			t.Fail() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		defer ln.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = checkPortAvailability(test.port) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Skip if the os is windows due to https://github.com/golang/go/issues/7598
 | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 		if err == nil && runtime.GOOS != globalWindowsOSName { | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 			t.Fatalf("checkPortAvailability should fail for port: %s. Error: %v", test.port, err) | 
					
						
							| 
									
										
										
										
											2016-07-30 05:05:31 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |