| 
									
										
										
										
											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-29 02:19:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2020-04-15 08:52:38 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	"reflect" | 
					
						
							| 
									
										
										
										
											2016-09-29 02:19:07 +08:00
										 |  |  | 	"testing" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-07 17:33:56 +08:00
										 |  |  | func TestServerConfigFile(t *testing.T) { | 
					
						
							|  |  |  | 	for _, testcase := range []struct { | 
					
						
							|  |  |  | 		config      string | 
					
						
							|  |  |  | 		expectedErr bool | 
					
						
							|  |  |  | 		hash        string | 
					
						
							|  |  |  | 	}{ | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			config:      "testdata/config/1.yaml", | 
					
						
							|  |  |  | 			expectedErr: false, | 
					
						
							|  |  |  | 			hash:        "hash:02bf70285dc71f76", | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			config:      "testdata/config/2.yaml", | 
					
						
							|  |  |  | 			expectedErr: false, | 
					
						
							|  |  |  | 			hash:        "hash:676d2da00f71f205", | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			config:      "testdata/config/invalid.yaml", | 
					
						
							|  |  |  | 			expectedErr: true, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			config:      "testdata/config/invalid-types.yaml", | 
					
						
							|  |  |  | 			expectedErr: true, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			config:      "testdata/config/invalid-disks.yaml", | 
					
						
							|  |  |  | 			expectedErr: true, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	} { | 
					
						
							|  |  |  | 		testcase := testcase | 
					
						
							|  |  |  | 		t.Run(testcase.config, func(t *testing.T) { | 
					
						
							|  |  |  | 			sctx := &serverCtxt{} | 
					
						
							|  |  |  | 			err := mergeServerCtxtFromConfigFile(testcase.config, sctx) | 
					
						
							|  |  |  | 			if testcase.expectedErr && err == nil { | 
					
						
							|  |  |  | 				t.Error("expected failure, got success") | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if !testcase.expectedErr && err != nil { | 
					
						
							|  |  |  | 				t.Error("expected success, got failure", err) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if err == nil { | 
					
						
							|  |  |  | 				if len(sctx.Layout.pools) != 2 { | 
					
						
							|  |  |  | 					t.Error("expected parsed pools to be 2, not", len(sctx.Layout.pools)) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				if sctx.Layout.pools[0].cmdline != testcase.hash { | 
					
						
							|  |  |  | 					t.Error("expected hash", testcase.hash, "got", sctx.Layout.pools[0].cmdline) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | // Tests initializing new object layer.
 | 
					
						
							|  |  |  | func TestNewObjectLayer(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2020-04-15 08:52:38 +08:00
										 |  |  | 	ctx, cancel := context.WithCancel(context.Background()) | 
					
						
							|  |  |  | 	defer cancel() | 
					
						
							| 
									
										
										
										
											2022-05-31 01:58:37 +08:00
										 |  |  | 	// Tests for ErasureSD object layer.
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	nDisks := 1 | 
					
						
							|  |  |  | 	disks, err := getRandomDisks(nDisks) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2022-08-05 07:10:08 +08:00
										 |  |  | 		t.Fatal("Failed to create drives for the backend") | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	defer removeRoots(disks) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-04 00:47:40 +08:00
										 |  |  | 	obj, err := newObjectLayer(ctx, mustGetPoolEndpoints(0, disks...)) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal("Unexpected object layer initialization error", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-11-02 07:41:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_, ok := obj.(*erasureServerPools) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if !ok { | 
					
						
							|  |  |  | 		t.Fatal("Unexpected object layer detected", reflect.TypeOf(obj)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	// Tests for Erasure object layer initialization.
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Create temporary backend for the test server.
 | 
					
						
							|  |  |  | 	nDisks = 16 | 
					
						
							|  |  |  | 	disks, err = getRandomDisks(nDisks) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2022-08-05 07:10:08 +08:00
										 |  |  | 		t.Fatal("Failed to create drives for the backend") | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	defer removeRoots(disks) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-04 00:47:40 +08:00
										 |  |  | 	obj, err = newObjectLayer(ctx, mustGetPoolEndpoints(0, disks...)) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal("Unexpected object layer initialization error", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-02 05:50:33 +08:00
										 |  |  | 	_, ok = obj.(*erasureServerPools) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if !ok { | 
					
						
							|  |  |  | 		t.Fatal("Unexpected object layer detected", reflect.TypeOf(obj)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |