4 changed files with 177 additions and 4 deletions
@ -0,0 +1,90 @@
@@ -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; |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,43 @@
@@ -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(); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue