Polish XorServerCsrfTokenRequestAttributeHandlerTests

This commit is contained in:
Steve Riesenberg 2022-10-12 12:31:27 -05:00
parent 804f20045e
commit 8bd25f90e4
No known key found for this signature in database
GPG Key ID: 5F311AB48A55D521

View File

@ -68,20 +68,29 @@ public class XorServerCsrfTokenRequestAttributeHandlerTests {
@Test @Test
public void setSecureRandomWhenNullThenThrowsIllegalArgumentException() { public void setSecureRandomWhenNullThenThrowsIllegalArgumentException() {
assertThatIllegalArgumentException().isThrownBy(() -> this.handler.setSecureRandom(null)) // @formatter:off
assertThatIllegalArgumentException()
.isThrownBy(() -> this.handler.setSecureRandom(null))
.withMessage("secureRandom cannot be null"); .withMessage("secureRandom cannot be null");
// @formatter:on
} }
@Test @Test
public void handleWhenExchangeIsNullThenThrowsIllegalArgumentException() { public void handleWhenExchangeIsNullThenThrowsIllegalArgumentException() {
assertThatIllegalArgumentException().isThrownBy(() -> this.handler.handle(null, Mono.just(this.token))) // @formatter:off
assertThatIllegalArgumentException()
.isThrownBy(() -> this.handler.handle(null, Mono.just(this.token)))
.withMessage("exchange cannot be null"); .withMessage("exchange cannot be null");
// @formatter:on
} }
@Test @Test
public void handleWhenCsrfTokenIsNullThenThrowsIllegalArgumentException() { public void handleWhenCsrfTokenIsNullThenThrowsIllegalArgumentException() {
assertThatIllegalArgumentException().isThrownBy(() -> this.handler.handle(this.exchange, null)) // @formatter:off
assertThatIllegalArgumentException()
.isThrownBy(() -> this.handler.handle(this.exchange, null))
.withMessage("csrfToken cannot be null"); .withMessage("csrfToken cannot be null");
// @formatter:on
} }
@Test @Test
@ -123,14 +132,20 @@ public class XorServerCsrfTokenRequestAttributeHandlerTests {
@Test @Test
public void resolveCsrfTokenValueWhenExchangeIsNullThenThrowsIllegalArgumentException() { public void resolveCsrfTokenValueWhenExchangeIsNullThenThrowsIllegalArgumentException() {
assertThatIllegalArgumentException().isThrownBy(() -> this.handler.resolveCsrfTokenValue(null, this.token)) // @formatter:off
assertThatIllegalArgumentException()
.isThrownBy(() -> this.handler.resolveCsrfTokenValue(null, this.token))
.withMessage("exchange cannot be null"); .withMessage("exchange cannot be null");
// @formatter:on
} }
@Test @Test
public void resolveCsrfTokenValueWhenCsrfTokenIsNullThenThrowsIllegalArgumentException() { public void resolveCsrfTokenValueWhenCsrfTokenIsNullThenThrowsIllegalArgumentException() {
assertThatIllegalArgumentException().isThrownBy(() -> this.handler.resolveCsrfTokenValue(this.exchange, null)) // @formatter:off
assertThatIllegalArgumentException()
.isThrownBy(() -> this.handler.resolveCsrfTokenValue(this.exchange, null))
.withMessage("csrfToken cannot be null"); .withMessage("csrfToken cannot be null");
// @formatter:on
} }
@Test @Test