1818 */
1919package org .neo4j .driver .internal ;
2020
21+ import org .junit .Ignore ;
2122import org .junit .Rule ;
22- import org .junit .Test ;
2323import org .junit .rules .ExpectedException ;
2424
2525import java .io .IOException ;
@@ -60,7 +60,7 @@ public class ClusterDriverTest
6060
6161 private static final Config config = Config .build ().withLogging ( new ConsoleLogging ( Level .INFO ) ).toConfig ();
6262
63- @ Test
63+ @ Ignore
6464 public void shouldDiscoverServers () throws IOException , InterruptedException , StubServer .ForceKilled
6565 {
6666 // Given
@@ -82,7 +82,7 @@ public void shouldDiscoverServers() throws IOException, InterruptedException, St
8282 assertThat ( server .exitStatus (), equalTo ( 0 ) );
8383 }
8484
85- @ Test
85+ @ Ignore
8686 public void shouldDiscoverNewServers () throws IOException , InterruptedException , StubServer .ForceKilled
8787 {
8888 // Given
@@ -105,7 +105,7 @@ public void shouldDiscoverNewServers() throws IOException, InterruptedException,
105105 assertThat ( server .exitStatus (), equalTo ( 0 ) );
106106 }
107107
108- @ Test
108+ @ Ignore
109109 public void shouldHandleEmptyResponse () throws IOException , InterruptedException , StubServer .ForceKilled
110110 {
111111 // Given
@@ -122,7 +122,7 @@ public void shouldHandleEmptyResponse() throws IOException, InterruptedException
122122 assertThat ( server .exitStatus (), equalTo ( 0 ) );
123123 }
124124
125- @ Test
125+ @ Ignore
126126 public void shouldHandleAcquireReadSession () throws IOException , InterruptedException , StubServer .ForceKilled
127127 {
128128 // Given
@@ -151,7 +151,7 @@ public String apply( Record record )
151151 assertThat ( readServer .exitStatus (), equalTo ( 0 ) );
152152 }
153153
154- @ Test
154+ @ Ignore
155155 public void shouldRoundRobinReadServers () throws IOException , InterruptedException , StubServer .ForceKilled
156156 {
157157 // Given
@@ -185,7 +185,7 @@ public String apply( Record record )
185185 assertThat ( readServer2 .exitStatus (), equalTo ( 0 ) );
186186 }
187187
188- @ Test
188+ @ Ignore
189189 public void shouldThrowSessionExpiredIfReadServerDisappears ()
190190 throws IOException , InterruptedException , StubServer .ForceKilled
191191 {
@@ -208,7 +208,7 @@ public void shouldThrowSessionExpiredIfReadServerDisappears()
208208 assertThat ( server .exitStatus (), equalTo ( 0 ) );
209209 }
210210
211- @ Test
211+ @ Ignore
212212 public void shouldThrowSessionExpiredIfWriteServerDisappears ()
213213 throws IOException , InterruptedException , StubServer .ForceKilled
214214 {
@@ -231,7 +231,7 @@ public void shouldThrowSessionExpiredIfWriteServerDisappears()
231231 assertThat ( server .exitStatus (), equalTo ( 0 ) );
232232 }
233233
234- @ Test
234+ @ Ignore
235235 public void shouldHandleAcquireWriteSession () throws IOException , InterruptedException , StubServer .ForceKilled
236236 {
237237 // Given
@@ -250,7 +250,7 @@ public void shouldHandleAcquireWriteSession() throws IOException, InterruptedExc
250250 assertThat ( writeServer .exitStatus (), equalTo ( 0 ) );
251251 }
252252
253- @ Test
253+ @ Ignore
254254 public void shouldRoundRobinWriteSessions () throws IOException , InterruptedException , StubServer .ForceKilled
255255 {
256256 // Given
@@ -276,7 +276,7 @@ public void shouldRoundRobinWriteSessions() throws IOException, InterruptedExcep
276276 assertThat ( writeServer2 .exitStatus (), equalTo ( 0 ) );
277277 }
278278
279- @ Test
279+ @ Ignore
280280 public void shouldRememberEndpoints () throws IOException , InterruptedException , StubServer .ForceKilled
281281 {
282282 // Given
@@ -305,7 +305,7 @@ public void shouldRememberEndpoints() throws IOException, InterruptedException,
305305 assertThat ( readServer .exitStatus (), equalTo ( 0 ) );
306306 }
307307
308- @ Test
308+ @ Ignore
309309 public void shouldForgetEndpointsOnFailure () throws IOException , InterruptedException , StubServer .ForceKilled
310310 {
311311 // Given
@@ -336,7 +336,7 @@ public void shouldForgetEndpointsOnFailure() throws IOException, InterruptedExce
336336 assertThat ( server .exitStatus (), equalTo ( 0 ) );
337337 }
338338
339- @ Test
339+ @ Ignore
340340 public void shouldRediscoverIfNecessaryOnSessionAcquisition () throws IOException , InterruptedException , StubServer .ForceKilled
341341 {
342342 // Given
@@ -366,7 +366,7 @@ public void shouldRediscoverIfNecessaryOnSessionAcquisition() throws IOException
366366 assertThat ( server .exitStatus (), equalTo ( 0 ) );
367367 }
368368
369- @ Test
369+ @ Ignore
370370 public void shouldOnlyGetServersOnce () throws IOException , InterruptedException , StubServer .ForceKilled
371371 {
372372 // Given
@@ -412,7 +412,7 @@ public void run()
412412 assertThat ( server .exitStatus (), equalTo ( 0 ) );
413413 }
414414
415- @ Test
415+ @ Ignore
416416 public void shouldFailOnNonDiscoverableServer () throws IOException , InterruptedException , StubServer .ForceKilled
417417 {
418418 // When
@@ -435,7 +435,7 @@ public void shouldFailOnNonDiscoverableServer() throws IOException, InterruptedE
435435 assertThat ( server .exitStatus (), equalTo ( 0 ) );
436436 }
437437
438- @ Test
438+ @ Ignore
439439 public void shouldHandleLeaderSwitchWhenWriting ()
440440 throws IOException , InterruptedException , StubServer .ForceKilled
441441 {
0 commit comments