Skip to content

Commit

Permalink
Allow UriTemplate to be built with an empty template
Browse files Browse the repository at this point in the history
  • Loading branch information
bsgrd authored and snicoll committed Mar 13, 2024
1 parent 723c94e commit 1b25a15
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class UriTemplate implements Serializable {
* @param uriTemplate the URI template string
*/
public UriTemplate(String uriTemplate) {
Assert.hasText(uriTemplate, "'uriTemplate' must not be null");
Assert.notNull(uriTemplate, "'uriTemplate' must not be null");
this.uriTemplate = uriTemplate;
this.uriComponents = UriComponentsBuilder.fromUriString(uriTemplate).build();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
import static org.assertj.core.api.Assertions.assertThatNoException;

/**
* @author Arjen Poutsma
Expand Down Expand Up @@ -218,4 +219,14 @@ void expandWithAtSign() {
assertThat(uri.toString()).isEqualTo("http://localhost/query=foo@bar");
}

@Test
void emptyPathDoesNotThrowException() {
assertThatNoException().isThrownBy(() -> new UriTemplate(""));
}

@Test
void emptyPathThrowsException() {
assertThatIllegalArgumentException().isThrownBy(() -> new UriTemplate(null));
}

}

0 comments on commit 1b25a15

Please sign in to comment.