| 
									
										
										
										
											2018-01-14 01:13:02 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2019-04-10 02:39:42 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2018 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2018-01-14 01:13:02 +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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Tests - mkdirAll()
 | 
					
						
							|  |  |  | func TestOSMkdirAll(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	// create xlStorage test setup
 | 
					
						
							|  |  |  | 	_, path, err := newXLStorageTestSetup() | 
					
						
							| 
									
										
										
										
											2018-01-14 01:13:02 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		t.Fatalf("Unable to create xlStorage test setup, %s", err) | 
					
						
							| 
									
										
										
										
											2018-01-14 01:13:02 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	defer os.RemoveAll(path) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-11 00:36:37 +08:00
										 |  |  | 	if err = mkdirAll("", 0777); err != errInvalidArgument { | 
					
						
							| 
									
										
										
										
											2018-01-14 01:13:02 +08:00
										 |  |  | 		t.Fatal("Unexpected error", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-11 00:36:37 +08:00
										 |  |  | 	if err = mkdirAll(pathJoin(path, "my-obj-del-0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001"), 0777); err != errFileNameTooLong { | 
					
						
							| 
									
										
										
										
											2018-01-14 01:13:02 +08:00
										 |  |  | 		t.Fatal("Unexpected error", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if err = mkdirAll(pathJoin(path, "success-vol", "success-object"), 0777); err != nil { | 
					
						
							|  |  |  | 		t.Fatal("Unexpected error", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Tests - renameAll()
 | 
					
						
							|  |  |  | func TestOSRenameAll(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	// create xlStorage test setup
 | 
					
						
							|  |  |  | 	_, path, err := newXLStorageTestSetup() | 
					
						
							| 
									
										
										
										
											2018-01-14 01:13:02 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		t.Fatalf("Unable to create xlStorage test setup, %s", err) | 
					
						
							| 
									
										
										
										
											2018-01-14 01:13:02 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	defer os.RemoveAll(path) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if err = mkdirAll(pathJoin(path, "testvolume1"), 0777); err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if err = renameAll("", "foo"); err != errInvalidArgument { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if err = renameAll("foo", ""); err != errInvalidArgument { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if err = renameAll(pathJoin(path, "testvolume1"), pathJoin(path, "testvolume2")); err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-11 00:36:37 +08:00
										 |  |  | 	if err = renameAll(pathJoin(path, "testvolume1"), pathJoin(path, "testvolume2")); err != errFileNotFound { | 
					
						
							| 
									
										
										
										
											2018-01-14 01:13:02 +08:00
										 |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-11 00:36:37 +08:00
										 |  |  | 	if err = renameAll(pathJoin(path, "my-obj-del-0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001"), pathJoin(path, "testvolume2")); err != errFileNameTooLong { | 
					
						
							| 
									
										
										
										
											2018-01-14 01:13:02 +08:00
										 |  |  | 		t.Fatal("Unexpected error", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-11 00:36:37 +08:00
										 |  |  | 	if err = renameAll(pathJoin(path, "testvolume1"), pathJoin(path, "my-obj-del-0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001")); err != errFileNameTooLong { | 
					
						
							| 
									
										
										
										
											2018-01-14 01:13:02 +08:00
										 |  |  | 		t.Fatal("Unexpected error", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |