| 
									
										
										
										
											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-20 04:14:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2022-10-14 18:08:40 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2017-08-13 10:25:43 +08:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2016-09-20 04:14:55 +08:00
										 |  |  | 	"reflect" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							| 
									
										
										
										
											2020-09-26 10:21:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 05:59:40 +08:00
										 |  |  | 	"github.com/minio/minio/internal/dsync" | 
					
						
							| 
									
										
										
										
											2016-09-20 04:14:55 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-18 14:16:27 +08:00
										 |  |  | // Helper function to create a lock server for testing
 | 
					
						
							| 
									
										
										
										
											2022-10-14 18:08:40 +08:00
										 |  |  | func createLockTestServer(ctx context.Context, t *testing.T) (string, *lockRESTServer, string) { | 
					
						
							|  |  |  | 	obj, fsDir, err := prepareFS(ctx) | 
					
						
							| 
									
										
										
										
											2019-04-18 14:16:27 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if err = newTestConfig(globalMinioDefaultRegion, obj); err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("unable initialize config file, %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	locker := &lockRESTServer{ | 
					
						
							| 
									
										
										
										
											2023-02-01 01:41:17 +08:00
										 |  |  | 		ll: newLocker(), | 
					
						
							| 
									
										
										
										
											2019-04-18 14:16:27 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-10-23 13:59:13 +08:00
										 |  |  | 	creds := globalActiveCred | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 	token, err := authenticateNode(creds.AccessKey, creds.SecretKey, "") | 
					
						
							| 
									
										
										
										
											2019-04-18 14:16:27 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return fsDir, locker, token | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:29 +08:00
										 |  |  | // Test function to remove lock entries from map based on name & uid combination
 | 
					
						
							|  |  |  | func TestLockRpcServerRemoveEntry(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2022-10-14 18:08:40 +08:00
										 |  |  | 	ctx, cancel := context.WithCancel(context.Background()) | 
					
						
							|  |  |  | 	defer cancel() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	testPath, locker, _ := createLockTestServer(ctx, t) | 
					
						
							| 
									
										
										
										
											2017-08-13 10:25:43 +08:00
										 |  |  | 	defer os.RemoveAll(testPath) | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	lockRequesterInfo1 := lockRequesterInfo{ | 
					
						
							| 
									
										
										
										
											2021-03-04 10:36:43 +08:00
										 |  |  | 		Owner:           "owner", | 
					
						
							|  |  |  | 		Writer:          true, | 
					
						
							|  |  |  | 		UID:             "0123-4567", | 
					
						
							|  |  |  | 		Timestamp:       UTCNow(), | 
					
						
							|  |  |  | 		TimeLastRefresh: UTCNow(), | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:29 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	lockRequesterInfo2 := lockRequesterInfo{ | 
					
						
							| 
									
										
										
										
											2021-03-04 10:36:43 +08:00
										 |  |  | 		Owner:           "owner", | 
					
						
							|  |  |  | 		Writer:          true, | 
					
						
							|  |  |  | 		UID:             "89ab-cdef", | 
					
						
							|  |  |  | 		Timestamp:       UTCNow(), | 
					
						
							|  |  |  | 		TimeLastRefresh: UTCNow(), | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:29 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-06 03:25:04 +08:00
										 |  |  | 	locker.ll.lockMap["name"] = []lockRequesterInfo{ | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:29 +08:00
										 |  |  | 		lockRequesterInfo1, | 
					
						
							|  |  |  | 		lockRequesterInfo2, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-13 20:59:36 +08:00
										 |  |  | 	lri := locker.ll.lockMap["name"] | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// test unknown uid
 | 
					
						
							| 
									
										
										
										
											2020-09-26 10:21:52 +08:00
										 |  |  | 	if locker.ll.removeEntry("name", dsync.LockArgs{ | 
					
						
							|  |  |  | 		Owner: "owner", | 
					
						
							|  |  |  | 		UID:   "unknown-uid", | 
					
						
							|  |  |  | 	}, &lri) { | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:29 +08:00
										 |  |  | 		t.Errorf("Expected %#v, got %#v", false, true) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-26 10:21:52 +08:00
										 |  |  | 	if !locker.ll.removeEntry("name", dsync.LockArgs{ | 
					
						
							|  |  |  | 		Owner: "owner", | 
					
						
							|  |  |  | 		UID:   "0123-4567", | 
					
						
							|  |  |  | 	}, &lri) { | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:29 +08:00
										 |  |  | 		t.Errorf("Expected %#v, got %#v", true, false) | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2019-02-13 20:59:36 +08:00
										 |  |  | 		gotLri := locker.ll.lockMap["name"] | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:29 +08:00
										 |  |  | 		expectedLri := []lockRequesterInfo{lockRequesterInfo2} | 
					
						
							|  |  |  | 		if !reflect.DeepEqual(expectedLri, gotLri) { | 
					
						
							|  |  |  | 			t.Errorf("Expected %#v, got %#v", expectedLri, gotLri) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-26 10:21:52 +08:00
										 |  |  | 	if !locker.ll.removeEntry("name", dsync.LockArgs{ | 
					
						
							|  |  |  | 		Owner: "owner", | 
					
						
							|  |  |  | 		UID:   "89ab-cdef", | 
					
						
							|  |  |  | 	}, &lri) { | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:29 +08:00
										 |  |  | 		t.Errorf("Expected %#v, got %#v", true, false) | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2019-02-13 20:59:36 +08:00
										 |  |  | 		gotLri := locker.ll.lockMap["name"] | 
					
						
							| 
									
										
										
										
											2016-10-11 01:11:29 +08:00
										 |  |  | 		expectedLri := []lockRequesterInfo(nil) | 
					
						
							|  |  |  | 		if !reflect.DeepEqual(expectedLri, gotLri) { | 
					
						
							|  |  |  | 			t.Errorf("Expected %#v, got %#v", expectedLri, gotLri) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |