Browse Source

Disable failing tests until r2dbc-h2 is upgraded

Issue gh-11479
pull/11494/head
Steve Riesenberg 4 years ago
parent
commit
614065bb3b
No known key found for this signature in database
GPG Key ID: 5F311AB48A55D521
  1. 6
      oauth2/oauth2-client/src/test/java/org/springframework/security/oauth2/client/R2dbcReactiveOAuth2AuthorizedClientServiceTests.java

6
oauth2/oauth2-client/src/test/java/org/springframework/security/oauth2/client/R2dbcReactiveOAuth2AuthorizedClientServiceTests.java

@ -25,6 +25,7 @@ import io.r2dbc.h2.H2ConnectionFactory;
import io.r2dbc.spi.ConnectionFactory; import io.r2dbc.spi.ConnectionFactory;
import io.r2dbc.spi.Result; import io.r2dbc.spi.Result;
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import reactor.core.publisher.Flux; import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono; import reactor.core.publisher.Mono;
@ -120,6 +121,7 @@ public class R2dbcReactiveOAuth2AuthorizedClientServiceTests {
} }
@Test @Test
@Disabled("Temporarily disabled until r2dbc-h2 is upgraded to 1.0.0.RELEASE")
public void loadAuthorizedClientWhenExistsThenReturnAuthorizedClient() { public void loadAuthorizedClientWhenExistsThenReturnAuthorizedClient() {
Authentication principal = createPrincipal(); Authentication principal = createPrincipal();
OAuth2AuthorizedClient expected = createAuthorizedClient(principal, this.clientRegistration); OAuth2AuthorizedClient expected = createAuthorizedClient(principal, this.clientRegistration);
@ -150,6 +152,7 @@ public class R2dbcReactiveOAuth2AuthorizedClientServiceTests {
} }
@Test @Test
@Disabled("Temporarily disabled until r2dbc-h2 is upgraded to 1.0.0.RELEASE")
public void loadAuthorizedClientWhenExistsButNotFoundInClientRegistrationRepositoryThenThrowDataRetrievalFailureException() { public void loadAuthorizedClientWhenExistsButNotFoundInClientRegistrationRepositoryThenThrowDataRetrievalFailureException() {
given(this.clientRegistrationRepository.findByRegistrationId(any())).willReturn(Mono.empty()); given(this.clientRegistrationRepository.findByRegistrationId(any())).willReturn(Mono.empty());
Authentication principal = createPrincipal(); Authentication principal = createPrincipal();
@ -186,6 +189,7 @@ public class R2dbcReactiveOAuth2AuthorizedClientServiceTests {
} }
@Test @Test
@Disabled("Temporarily disabled until r2dbc-h2 is upgraded to 1.0.0.RELEASE")
public void saveAuthorizedClientWhenSaveThenLoadReturnsSaved() { public void saveAuthorizedClientWhenSaveThenLoadReturnsSaved() {
Authentication principal = createPrincipal(); Authentication principal = createPrincipal();
final OAuth2AuthorizedClient expected = createAuthorizedClient(principal, this.clientRegistration); final OAuth2AuthorizedClient expected = createAuthorizedClient(principal, this.clientRegistration);
@ -244,6 +248,7 @@ public class R2dbcReactiveOAuth2AuthorizedClientServiceTests {
} }
@Test @Test
@Disabled("Temporarily disabled until r2dbc-h2 is upgraded to 1.0.0.RELEASE")
public void saveAuthorizedClientWhenSaveClientWithExistingPrimaryKeyThenUpdate() { public void saveAuthorizedClientWhenSaveClientWithExistingPrimaryKeyThenUpdate() {
// Given a saved authorized client // Given a saved authorized client
Authentication principal = createPrincipal(); Authentication principal = createPrincipal();
@ -297,6 +302,7 @@ public class R2dbcReactiveOAuth2AuthorizedClientServiceTests {
} }
@Test @Test
@Disabled("Temporarily disabled until r2dbc-h2 is upgraded to 1.0.0.RELEASE")
public void removeAuthorizedClientWhenExistsThenRemoved() { public void removeAuthorizedClientWhenExistsThenRemoved() {
Authentication principal = createPrincipal(); Authentication principal = createPrincipal();
OAuth2AuthorizedClient authorizedClient = createAuthorizedClient(principal, this.clientRegistration); OAuth2AuthorizedClient authorizedClient = createAuthorizedClient(principal, this.clientRegistration);

Loading…
Cancel
Save