Polish contribution

See gh-27303
This commit is contained in:
Sam Brannen 2021-08-22 14:22:51 +02:00
parent 462e19d417
commit 99970a5ddc
1 changed files with 20 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2020 the original author or authors.
* Copyright 2002-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -22,7 +22,7 @@ import org.junit.jupiter.api.Test;
import org.springframework.web.testfixture.servlet.MockHttpServletRequest;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatCode;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
/**
* Unit tests for {@link UrlPathHelper}.
@ -167,8 +167,24 @@ public class UrlPathHelperTests {
}
@Test // gh-27303
public void shouldRemoveSemicolonContentWithReadOnlyInstance() {
assertThatCode(UrlPathHelper.defaultInstance::shouldRemoveSemicolonContent).doesNotThrowAnyException();
public void defaultInstanceReadOnlyBehavior() {
UrlPathHelper helper = UrlPathHelper.defaultInstance;
assertThatExceptionOfType(IllegalArgumentException.class)
.isThrownBy(() -> helper.setAlwaysUseFullPath(true))
.withMessage("This instance cannot be modified");
assertThatExceptionOfType(IllegalArgumentException.class)
.isThrownBy(() -> helper.setUrlDecode(true))
.withMessage("This instance cannot be modified");
assertThatExceptionOfType(IllegalArgumentException.class)
.isThrownBy(() -> helper.setRemoveSemicolonContent(true))
.withMessage("This instance cannot be modified");
assertThatExceptionOfType(IllegalArgumentException.class)
.isThrownBy(() -> helper.setDefaultEncoding("UTF-8"))
.withMessage("This instance cannot be modified");
assertThat(helper.isUrlDecode()).isTrue();
assertThat(helper.shouldRemoveSemicolonContent()).isTrue();
}