OriginTrackedPropertiesLoaderTests Class — spring-boot Architecture
Architecture documentation for the OriginTrackedPropertiesLoaderTests class in OriginTrackedPropertiesLoaderTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/env/OriginTrackedPropertiesLoaderTests.java lines 48–413
class OriginTrackedPropertiesLoaderTests {
private ClassPathResource resource;
private List<Document> documents;
@BeforeEach
void setUp() throws Exception {
String path = "test-properties.properties";
this.resource = new ClassPathResource(path, getClass());
this.documents = new OriginTrackedPropertiesLoader(this.resource).load(null);
}
@Test
void compareToJavaProperties() throws Exception {
Properties java = PropertiesLoaderUtils.loadProperties(this.resource);
Properties ours = new Properties();
new OriginTrackedPropertiesLoader(this.resource).load(null, false)
.get(0)
.asMap()
.forEach((k, v) -> ours.put(k, v.getValue()));
assertThat(ours).isEqualTo(java);
}
@Test
void getSimpleProperty() {
OriginTrackedValue value = getFromFirst("test");
assertThat(getValue(value)).isEqualTo("properties");
assertThat(getLocation(value)).isEqualTo("11:6");
}
@Test
void getSimplePropertyWithColonSeparator() {
OriginTrackedValue value = getFromFirst("test-colon-separator");
assertThat(getValue(value)).isEqualTo("my-property");
assertThat(getLocation(value)).isEqualTo("15:23");
}
@Test
void getPropertyWithSeparatorSurroundedBySpaces() {
OriginTrackedValue value = getFromFirst("blah");
assertThat(getValue(value)).isEqualTo("hello world");
assertThat(getLocation(value)).isEqualTo("2:12");
}
@Test
void getUnicodeProperty() {
OriginTrackedValue value = getFromFirst("test-unicode");
assertThat(getValue(value)).isEqualTo("properties&test");
assertThat(getLocation(value)).isEqualTo("12:14");
}
@Test
@WithResource(name = "malformed-unicode.properties", content = "test-malformed-unicode=properties\\u(026test")
void getMalformedUnicodeProperty() {
// gh-12716
ClassPathResource resource = new ClassPathResource("malformed-unicode.properties");
assertThatIllegalStateException().isThrownBy(() -> new OriginTrackedPropertiesLoader(resource).load(null))
.withMessageContaining("Malformed \\uxxxx encoding");
}
@Test
@WithResource(name = "utf-8.properties", content = "smiley=😃")
void shouldRespectEncoding() throws IOException {
ClassPathResource resource = new ClassPathResource("utf-8.properties");
List<Document> documents = new OriginTrackedPropertiesLoader(resource).load(StandardCharsets.UTF_8);
OriginTrackedValue value = documents.get(0).asMap().get("smiley");
assertThat(value).isNotNull();
assertThat(value.getValue()).isEqualTo("😃");
}
@Test
void getEscapedProperty() {
OriginTrackedValue value = getFromFirst("test=property");
assertThat(getValue(value)).isEqualTo("helloworld");
assertThat(getLocation(value)).isEqualTo("14:15");
}
@Test
void getPropertyWithTab() {
OriginTrackedValue value = getFromFirst("test-tab-property");
assertThat(getValue(value)).isEqualTo("foo\tbar");
assertThat(getLocation(value)).isEqualTo("16:19");
}
@Test
void getPropertyWithBang() {
OriginTrackedValue value = getFromFirst("test-bang-property");
assertThat(getValue(value)).isEqualTo("foo!");
assertThat(getLocation(value)).isEqualTo("34:20");
}
@Test
void getPropertyWithValueComment() {
OriginTrackedValue value = getFromFirst("test-property-value-comment");
assertThat(getValue(value)).isEqualTo("foo !bar #foo");
assertThat(getLocation(value)).isEqualTo("36:29");
}
@Test
void getPropertyWithMultilineImmediateBang() {
OriginTrackedValue value = getFromFirst("test-multiline-immediate-bang");
assertThat(getValue(value)).isEqualTo("!foo");
assertThat(getLocation(value)).isEqualTo("39:1");
}
@Test
void getPropertyWithCarriageReturn() {
OriginTrackedValue value = getFromFirst("test-return-property");
assertThat(getValue(value)).isEqualTo("foo\rbar");
assertThat(getLocation(value)).isEqualTo("17:22");
}
@Test
void getPropertyWithNewLine() {
OriginTrackedValue value = getFromFirst("test-newline-property");
assertThat(getValue(value)).isEqualTo("foo\nbar");
assertThat(getLocation(value)).isEqualTo("18:23");
}
@Test
void getPropertyWithFormFeed() {
OriginTrackedValue value = getFromFirst("test-form-feed-property");
assertThat(getValue(value)).isEqualTo("foo\fbar");
assertThat(getLocation(value)).isEqualTo("19:25");
}
@Test
void getPropertyWithWhiteSpace() {
OriginTrackedValue value = getFromFirst("test-whitespace-property");
assertThat(getValue(value)).isEqualTo("foo bar");
assertThat(getLocation(value)).isEqualTo("20:32");
}
@Test
void getCommentedOutPropertyShouldBeNull() {
assertThat(getFromFirst("commented-property")).isNull();
assertThat(getFromFirst("#commented-property")).isNull();
assertThat(getFromFirst("commented-two")).isNull();
assertThat(getFromFirst("!commented-two")).isNull();
}
@Test
void getMultiline() {
OriginTrackedValue value = getFromFirst("test-multiline");
assertThat(getValue(value)).isEqualTo("ab\\c");
assertThat(getLocation(value)).isEqualTo("21:17");
}
@Test
void getImmediateMultiline() {
OriginTrackedValue value = getFromFirst("test-multiline-immediate");
assertThat(getValue(value)).isEqualTo("foo");
assertThat(getLocation(value)).isEqualTo("32:1");
}
@Test
void loadWhenMultiDocumentWithPoundPrefixAndWithoutWhitespaceLoadsMultiDoc() throws IOException {
String content = "a=a\n#---\nb=b";
List<Document> loaded = new OriginTrackedPropertiesLoader(new ByteArrayResource(content.getBytes())).load(null);
assertThat(loaded).hasSize(2);
}
@Test
void loadWhenMultiDocumentWithExclamationPrefixAndWithoutWhitespaceLoadsMultiDoc() throws IOException {
String content = "a=a\n!---\nb=b";
List<Document> loaded = new OriginTrackedPropertiesLoader(new ByteArrayResource(content.getBytes())).load(null);
assertThat(loaded).hasSize(2);
}
@Test
void loadWhenMultiDocumentWithPoundPrefixAndLeadingWhitespaceLoadsSingleDoc() throws IOException {
String content = "a=a\n \t#---\nb=b";
List<Document> loaded = new OriginTrackedPropertiesLoader(new ByteArrayResource(content.getBytes())).load(null);
assertThat(loaded).hasSize(1);
}
@Test
void loadWhenMultiDocumentWithExclamationPrefixAndLeadingWhitespaceLoadsSingleDoc() throws IOException {
String content = "a=a\n \t!---\nb=b";
List<Document> loaded = new OriginTrackedPropertiesLoader(new ByteArrayResource(content.getBytes())).load(null);
assertThat(loaded).hasSize(1);
}
@Test
void loadWhenMultiDocumentWithPoundPrefixAndTrailingWhitespaceLoadsMultiDoc() throws IOException {
String content = "a=a\n#--- \t \nb=b";
List<Document> loaded = new OriginTrackedPropertiesLoader(new ByteArrayResource(content.getBytes())).load(null);
assertThat(loaded).hasSize(2);
}
@Test
void loadWhenMultiDocumentWithExclamationPrefixAndTrailingWhitespaceLoadsMultiDoc() throws IOException {
String content = "a=a\n!--- \t \nb=b";
List<Document> loaded = new OriginTrackedPropertiesLoader(new ByteArrayResource(content.getBytes())).load(null);
assertThat(loaded).hasSize(2);
}
@Test
void loadWhenMultiDocumentWithPoundPrefixAndTrailingCharsLoadsSingleDoc() throws IOException {
String content = "a=a\n#--- \tcomment\nb=b";
List<Document> loaded = new OriginTrackedPropertiesLoader(new ByteArrayResource(content.getBytes())).load(null);
assertThat(loaded).hasSize(1);
}
@Test
void loadWhenMultiDocumentWithExclamationPrefixAndTrailingCharsLoadsSingleDoc() throws IOException {
String content = "a=a\n!--- \tcomment\nb=b";
List<Document> loaded = new OriginTrackedPropertiesLoader(new ByteArrayResource(content.getBytes())).load(null);
assertThat(loaded).hasSize(1);
}
@Test
void loadWhenMultiDocumentSeparatorPrefixDifferentFromCommentPrefixLoadsMultiDoc() throws IOException {
String[] contents = new String[] { "a=a\n# comment\n!---\nb=b", "a=a\n! comment\n#---\nb=b" };
for (String content : contents) {
List<Document> loaded = new OriginTrackedPropertiesLoader(new ByteArrayResource(content.getBytes()))
.load(null);
assertThat(loaded).hasSize(2);
}
}
@Test
void getPropertyWithWhitespaceAfterKey() {
OriginTrackedValue value = getFromFirst("bar");
assertThat(getValue(value)).isEqualTo("foo=baz");
assertThat(getLocation(value)).isEqualTo("3:7");
}
@Test
void getPropertyWithSpaceSeparator() {
OriginTrackedValue value = getFromFirst("hello");
assertThat(getValue(value)).isEqualTo("world");
assertThat(getLocation(value)).isEqualTo("4:9");
}
@Test
void getPropertyWithBackslashEscaped() {
OriginTrackedValue value = getFromFirst("proper\\ty");
assertThat(getValue(value)).isEqualTo("test");
assertThat(getLocation(value)).isEqualTo("5:11");
}
@Test
void getPropertyWithEmptyValue() {
OriginTrackedValue value = getFromFirst("foo");
assertThat(getValue(value)).isEqualTo("");
assertThat(getLocation(value)).isEqualTo("7:0");
}
@Test
void getPropertyWithBackslashEscapedInValue() {
OriginTrackedValue value = getFromFirst("bat");
assertThat(getValue(value)).isEqualTo("a\\");
assertThat(getLocation(value)).isEqualTo("7:7");
}
@Test
void getPropertyWithSeparatorInValue() {
OriginTrackedValue value = getFromFirst("bling");
assertThat(getValue(value)).isEqualTo("a=b");
assertThat(getLocation(value)).isEqualTo("8:9");
}
@Test
void getListProperty() {
OriginTrackedValue apple = getFromFirst("foods[0]");
assertThat(getValue(apple)).isEqualTo("Apple");
assertThat(getLocation(apple)).isEqualTo("24:9");
OriginTrackedValue orange = getFromFirst("foods[1]");
assertThat(getValue(orange)).isEqualTo("Orange");
assertThat(getLocation(orange)).isEqualTo("25:1");
OriginTrackedValue strawberry = getFromFirst("foods[2]");
assertThat(getValue(strawberry)).isEqualTo("Strawberry");
assertThat(getLocation(strawberry)).isEqualTo("26:1");
OriginTrackedValue mango = getFromFirst("foods[3]");
assertThat(getValue(mango)).isEqualTo("Mango");
assertThat(getLocation(mango)).isEqualTo("27:1");
}
@Test
void getPropertyWithISO88591Character() {
OriginTrackedValue value = getFromFirst("test-iso8859-1-chars");
assertThat(getValue(value)).isEqualTo("æ×ÈÅÞßáñÀÿ");
}
@Test
void getPropertyWithTrailingSpace() {
OriginTrackedValue value = getFromFirst("test-with-trailing-space");
assertThat(getValue(value)).isEqualTo("trailing ");
}
@Test
void getPropertyWithEscapedTrailingSpace() {
OriginTrackedValue value = getFromFirst("test-with-escaped-trailing-space");
assertThat(getValue(value)).isEqualTo("trailing ");
}
@Test
@WithResource(name = "existing-non-multi-document.properties", content = """
#---
# Test
#---
spring=boot
#---
# Test
boot=bar
# Test
#---
bar=ok
!---
! Test
!---
ok=well
!---
! Test
well=hello
! Test
!---
hello=world
""")
void existingCommentsAreNotTreatedAsMultiDoc() throws Exception {
this.resource = new ClassPathResource("existing-non-multi-document.properties");
this.documents = new OriginTrackedPropertiesLoader(this.resource).load(null);
assertThat(this.documents).hasSize(1);
}
@Test
void getPropertyAfterPoundCharacter() {
OriginTrackedValue value = getFromFirst("test-line-after-empty-pound");
assertThat(getValue(value)).isEqualTo("abc");
}
private @Nullable OriginTrackedValue getFromFirst(String key) {
return this.documents.get(0).asMap().get(key);
}
private @Nullable Object getValue(@Nullable OriginTrackedValue value) {
return (value != null) ? value.getValue() : null;
}
private @Nullable String getLocation(@Nullable OriginTrackedValue value) {
if (value == null) {
return null;
}
Origin origin = value.getOrigin();
assertThat(origin).isNotNull();
Location location = ((TextResourceOrigin) origin).getLocation();
assertThat(location).isNotNull();
return location.toString();
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free