13
13
14
14
package org .opensearch .action .support .clustermanager ;
15
15
16
- import org .mockito .Mock ;
17
- import org .mockito .Mockito ;
18
16
import org .opensearch .OpenSearchException ;
19
17
import org .opensearch .Version ;
20
18
import org .opensearch .action .ActionRequestValidationException ;
21
19
import org .opensearch .action .admin .cluster .settings .ClusterUpdateSettingsRequest ;
22
20
import org .opensearch .action .admin .cluster .settings .TransportClusterUpdateSettingsAction ;
23
- import org .opensearch .action .admin .cluster .state .TransportClusterStateAction ;
24
21
import org .opensearch .action .support .ActionFilters ;
25
22
import org .opensearch .action .support .PlainActionFuture ;
26
23
import org .opensearch .action .support .ThreadedActionListener ;
92
89
import java .util .concurrent .TimeUnit ;
93
90
import java .util .concurrent .atomic .AtomicBoolean ;
94
91
95
- import static java .util .Collections .emptySet ;
96
- import static org .mockito .ArgumentMatchers .any ;
97
- import static org .mockito .ArgumentMatchers .eq ;
98
- import static org .mockito .Mockito .when ;
92
+ import org .mockito .Mockito ;
93
+
99
94
import static org .opensearch .index .remote .RemoteMigrationIndexMetadataUpdaterTests .createIndexMetadataWithRemoteStoreSettings ;
100
95
import static org .opensearch .node .remotestore .RemoteStoreNodeAttribute .REMOTE_STORE_SEGMENT_REPOSITORY_NAME_ATTRIBUTE_KEY ;
101
96
import static org .opensearch .node .remotestore .RemoteStoreNodeAttribute .REMOTE_STORE_TRANSLOG_REPOSITORY_NAME_ATTRIBUTE_KEY ;
105
100
import static org .hamcrest .Matchers .containsString ;
106
101
import static org .hamcrest .Matchers .equalTo ;
107
102
import static org .hamcrest .Matchers .instanceOf ;
103
+ import static org .mockito .ArgumentMatchers .any ;
104
+ import static org .mockito .ArgumentMatchers .eq ;
105
+ import static org .mockito .Mockito .when ;
108
106
109
107
public class TransportClusterManagerNodeActionTests extends OpenSearchTestCase {
110
108
private static ThreadPool threadPool ;
@@ -220,7 +218,8 @@ public void writeTo(StreamOutput out) throws IOException {
220
218
}
221
219
222
220
class Action extends TransportClusterManagerNodeAction <Request , Response > {
223
- private boolean localExecuteSupported = false ;
221
+ private boolean localExecuteSupported = false ;
222
+
224
223
Action (String actionName , TransportService transportService , ClusterService clusterService , ThreadPool threadPool ) {
225
224
super (
226
225
actionName ,
@@ -233,11 +232,17 @@ class Action extends TransportClusterManagerNodeAction<Request, Response> {
233
232
);
234
233
}
235
234
236
-
237
235
protected boolean localExecuteSupportedByAction () {
238
236
return localExecuteSupported ;
239
237
}
240
- Action (String actionName , TransportService transportService , ClusterService clusterService , ThreadPool threadPool , RemoteClusterStateService clusterStateService ) {
238
+
239
+ Action (
240
+ String actionName ,
241
+ TransportService transportService ,
242
+ ClusterService clusterService ,
243
+ ThreadPool threadPool ,
244
+ RemoteClusterStateService clusterStateService
245
+ ) {
241
246
this (actionName , transportService , clusterService , threadPool );
242
247
this .remoteClusterStateService = clusterStateService ;
243
248
this .localExecuteSupported = true ;
@@ -743,34 +748,32 @@ public void testFetchFromRemoteStore() throws InterruptedException, BrokenBarrie
743
748
ClusterState state = clusterService .state ();
744
749
RemoteClusterStateService clusterStateService = Mockito .mock (RemoteClusterStateService .class );
745
750
Request request = new Request ();
746
- ClusterMetadataManifest manifest = ClusterMetadataManifest .builder ().clusterTerm (state .term () + 1 ).stateVersion (state .version () + 1 ).build ();
751
+ ClusterMetadataManifest manifest = ClusterMetadataManifest .builder ()
752
+ .clusterTerm (state .term () + 1 )
753
+ .stateVersion (state .version () + 1 )
754
+ .build ();
747
755
when (clusterStateService .getClusterMetadataManifestByFileName (eq (state .stateUUID ()), any ())).thenReturn (manifest );
748
756
749
757
when (clusterStateService .getClusterStateForManifest (state .getClusterName ().value (), manifest , localNode .getId (), true )).thenReturn (
750
- buildClusterState (state , state .term () + 1 , state .version () + 1 ));
758
+ buildClusterState (state , state .term () + 1 , state .version () + 1 )
759
+ );
751
760
752
761
PlainActionFuture <Response > listener = new PlainActionFuture <>();
753
762
Action action = new Action ("internal:testAction" , transportService , clusterService , threadPool , clusterStateService );
754
763
action .execute (request , listener );
755
764
756
-
757
- CapturingTransport .CapturedRequest capturedRequest = transport .capturedRequests ()[0 ];
758
- // mismatch term and version
759
- GetTermVersionResponse termResp = new GetTermVersionResponse (
760
- new ClusterStateTermVersion (
761
- state .getClusterName (),
762
- state .metadata ().clusterUUID (),
763
- state .term () + 1 ,
764
- state .version () + 1
765
- )
766
- );
767
- transport .handleResponse (capturedRequest .requestId , termResp );
768
- //no more transport calls
769
- assertThat (transport .capturedRequests ().length , equalTo (1 ));
765
+ CapturingTransport .CapturedRequest capturedRequest = transport .capturedRequests ()[0 ];
766
+ // mismatch term and version
767
+ GetTermVersionResponse termResp = new GetTermVersionResponse (
768
+ new ClusterStateTermVersion (state .getClusterName (), state .metadata ().clusterUUID (), state .term () + 1 , state .version () + 1 )
769
+ );
770
+ transport .handleResponse (capturedRequest .requestId , termResp );
771
+ // no more transport calls
772
+ assertThat (transport .capturedRequests ().length , equalTo (1 ));
770
773
assertTrue (listener .isDone ());
771
774
}
772
775
773
- private ClusterState buildClusterState (ClusterState state , long term , long version ) {
776
+ private ClusterState buildClusterState (ClusterState state , long term , long version ) {
774
777
CoordinationMetadata .Builder coordMetadataBuilder = CoordinationMetadata .builder ().term (term );
775
778
Metadata newMetadata = Metadata .builder ().coordinationMetadata (coordMetadataBuilder .build ()).build ();
776
779
return ClusterState .builder (state ).version (version ).metadata (newMetadata ).build ();
0 commit comments