-
Notifications
You must be signed in to change notification settings - Fork 40.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
177 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
90 changes: 90 additions & 0 deletions
90
.../test/java/org/springframework/boot/autoconfigure/gson/Gson210AutoConfigurationTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
/* | ||
* Copyright 2012-2025 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. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.boot.autoconfigure.gson; | ||
|
||
import com.google.gson.Gson; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import org.springframework.boot.autoconfigure.AutoConfigurations; | ||
import org.springframework.boot.test.context.runner.ApplicationContextRunner; | ||
import org.springframework.boot.testsupport.classpath.ClassPathExclusions; | ||
import org.springframework.boot.testsupport.classpath.ClassPathOverrides; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
/** | ||
* Tests for {@link GsonAutoConfiguration} with Gson 2.10. | ||
* | ||
* @author Andy Wilkinson | ||
*/ | ||
@ClassPathExclusions("gson-*.jar") | ||
@ClassPathOverrides("com.google.code.gson:gson:2.10") | ||
class Gson210AutoConfigurationTests { | ||
|
||
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner() | ||
.withConfiguration(AutoConfigurations.of(GsonAutoConfiguration.class)); | ||
|
||
@Test | ||
void gsonRegistration() { | ||
this.contextRunner.run((context) -> { | ||
Gson gson = context.getBean(Gson.class); | ||
assertThat(gson.toJson(new DataObject())).isEqualTo("{\"data\":1}"); | ||
}); | ||
} | ||
|
||
@Test | ||
@Deprecated(since = "3.4.0", forRemoval = true) | ||
void withoutLenient() { | ||
this.contextRunner.run((context) -> { | ||
Gson gson = context.getBean(Gson.class); | ||
assertThat(gson).hasFieldOrPropertyWithValue("lenient", false); | ||
}); | ||
} | ||
|
||
@Test | ||
@Deprecated(since = "3.4.0", forRemoval = true) | ||
void withLenientTrue() { | ||
this.contextRunner.withPropertyValues("spring.gson.lenient:true").run((context) -> { | ||
Gson gson = context.getBean(Gson.class); | ||
assertThat(gson).hasFieldOrPropertyWithValue("lenient", true); | ||
}); | ||
} | ||
|
||
@Test | ||
@Deprecated(since = "3.4.0", forRemoval = true) | ||
void withLenientFalse() { | ||
this.contextRunner.withPropertyValues("spring.gson.lenient:false").run((context) -> { | ||
Gson gson = context.getBean(Gson.class); | ||
assertThat(gson).hasFieldOrPropertyWithValue("lenient", false); | ||
}); | ||
} | ||
|
||
public class DataObject { | ||
|
||
@SuppressWarnings("unused") | ||
private Long data = 1L; | ||
|
||
@SuppressWarnings("unused") | ||
private final String owner = null; | ||
|
||
public void setData(Long data) { | ||
this.data = data; | ||
} | ||
|
||
} | ||
|
||
} |
43 changes: 43 additions & 0 deletions
43
...figure/src/test/java/org/springframework/boot/autoconfigure/gson/GsonPropertiesTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright 2012-2025 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. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.boot.autoconfigure.gson; | ||
|
||
import java.util.List; | ||
import java.util.stream.Stream; | ||
|
||
import com.google.gson.Strictness; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
/** | ||
* Tests for {@link GsonProperties}. | ||
* | ||
* @author Andy Wilkinson | ||
*/ | ||
class GsonPropertiesTests { | ||
|
||
@Test | ||
void valuesOfOurStrictnessMatchValuesOfGsonsStrictness() { | ||
assertThat(namesOf(GsonProperties.Strictness.values())).isEqualTo(namesOf(Strictness.values())); | ||
} | ||
|
||
private List<String> namesOf(Enum<?>[] input) { | ||
return Stream.of(input).map(Enum::name).toList(); | ||
} | ||
|
||
} |