@ -1,5 +1,5 @@
@@ -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 .
@ -17,9 +17,11 @@
@@ -17,9 +17,11 @@
package org.springframework.beans.factory.config ;
import java.net.URL ;
import java.util.ArrayList ;
import java.util.LinkedHashMap ;
import java.util.List ;
import java.util.Map ;
import java.util.Set ;
import org.junit.jupiter.api.Test ;
import org.yaml.snakeyaml.constructor.ConstructorException ;
@ -28,7 +30,6 @@ import org.yaml.snakeyaml.scanner.ScannerException;
@@ -28,7 +30,6 @@ import org.yaml.snakeyaml.scanner.ScannerException;
import org.springframework.core.io.ByteArrayResource ;
import static java.util.stream.Collectors.toList ;
import static org.assertj.core.api.Assertions.assertThat ;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType ;
import static org.assertj.core.api.Assertions.entry ;
@ -39,10 +40,12 @@ import static org.assertj.core.api.Assertions.entry;
@@ -39,10 +40,12 @@ import static org.assertj.core.api.Assertions.entry;
* @author Dave Syer
* @author Juergen Hoeller
* @author Sam Brannen
* @author Brian Clozel
* /
class YamlProcessorTests {
private final YamlProcessor processor = new YamlProcessor ( ) { } ;
private final YamlProcessor processor = new YamlProcessor ( ) {
} ;
@Test
@ -127,8 +130,8 @@ class YamlProcessorTests {
@@ -127,8 +130,8 @@ class YamlProcessorTests {
Map < String , Object > bar = ( Map < String , Object > ) map . get ( "bar" ) ;
assertThat ( bar . get ( "spam" ) ) . isEqualTo ( "bucket" ) ;
List < Object > keysFromProperties = properties . keySet ( ) . stream ( ) . collect ( toLis t( ) ) ;
List < String > keysFromFlattenedMap = flattenedMap . keySet ( ) . stream ( ) . collect ( toLis t( ) ) ;
List < Object > keysFromProperties = new ArrayList < > ( properties . keySe t( ) ) ;
List < String > keysFromFlattenedMap = new ArrayList < > ( flattenedMap . keySe t( ) ) ;
assertThat ( keysFromProperties ) . containsExactlyInAnyOrderElementsOf ( keysFromFlattenedMap ) ;
// Keys in the Properties object are sorted.
assertThat ( keysFromProperties ) . containsExactly ( "bar.spam" , "cat" , "foo" ) ;
@ -138,16 +141,25 @@ class YamlProcessorTests {
@@ -138,16 +141,25 @@ class YamlProcessorTests {
}
@Test
void customTypeSupportedByDefault ( ) throws Exception {
URL url = new URL ( "https://localhost:9000/" ) ;
setYaml ( "value: !!java.net.URL [\"" + url + "\"]" ) ;
void standardTypesSupportedByDefault ( ) throws Exception {
setYaml ( "value: !!set\n ? first\n ? second" ) ;
this . processor . process ( ( properties , map ) - > {
assertThat ( properties ) . containsExactly ( entry ( "value" , url ) ) ;
assertThat ( map ) . containsExactly ( entry ( "value" , url ) ) ;
assertThat ( properties ) . containsExactly ( entry ( "value[0]" , "first" ) , entry ( "value[1]" , "second" ) ) ;
assertThat ( map . get ( "value" ) ) . isInstanceOf ( Set . class ) ;
Set < String > set = ( Set < String > ) map . get ( "value" ) ;
assertThat ( set ) . containsExactly ( "first" , "second" ) ;
} ) ;
}
@Test
void customTypeNotSupportedByDefault ( ) throws Exception {
URL url = new URL ( "https://localhost:9000/" ) ;
setYaml ( "value: !!java.net.URL [\"" + url + "\"]" ) ;
assertThatExceptionOfType ( ConstructorException . class )
. isThrownBy ( ( ) - > this . processor . process ( ( properties , map ) - > { } ) )
. withMessageContaining ( "Unsupported type encountered in YAML document: java.net.URL" ) ;
}
@Test
void customTypesSupportedDueToExplicitConfiguration ( ) throws Exception {
this . processor . setSupportedTypes ( URL . class , String . class ) ;