Browse Source

Correct imports for AutoConfigureJson

See gh-47322
pull/47478/head
Andy Wilkinson 2 months ago
parent
commit
2a2d3a88d2
  1. 1
      module/spring-boot-gson/src/main/resources/META-INF/spring/org.springframework.boot.test.autoconfigure.json.AutoConfigureJson.imports
  2. 1
      module/spring-boot-gson/src/main/resources/META-INF/spring/org.springframework.boot.test.autoconfigure.json.AutoConfigureJsonTesters.imports
  3. 47
      module/spring-boot-gson/src/test/java/org/springframework/boot/gson/autoconfigure/jsontest/GsonAutoConfigureJsonIntegrationTests.java
  4. 1
      module/spring-boot-jackson/src/main/resources/META-INF/spring/org.springframework.boot.test.autoconfigure.json.AutoConfigureJson.imports
  5. 1
      module/spring-boot-jackson/src/main/resources/META-INF/spring/org.springframework.boot.test.autoconfigure.json.AutoConfigureJsonTesters.imports
  6. 47
      module/spring-boot-jackson/src/test/java/org/springframework/boot/jackson/autoconfigure/jsontest/JacksonAutoConfigureJsonIntegrationTests.java
  7. 1
      module/spring-boot-jsonb/src/main/resources/META-INF/spring/org.springframework.boot.test.autoconfigure.json.AutoConfigureJson.imports
  8. 3
      module/spring-boot-jsonb/src/main/resources/META-INF/spring/org.springframework.boot.test.autoconfigure.json.AutoConfigureJsonTesters.imports
  9. 47
      module/spring-boot-jsonb/src/test/java/org/springframework/boot/jsonb/autoconfigure/jsontest/JsonbAutoConfigureJsonIntegrationTests.java

1
module/spring-boot-gson/src/main/resources/META-INF/spring/org.springframework.boot.test.autoconfigure.json.AutoConfigureJson.imports

@ -0,0 +1 @@ @@ -0,0 +1 @@
org.springframework.boot.gson.autoconfigure.GsonAutoConfiguration

1
module/spring-boot-gson/src/main/resources/META-INF/spring/org.springframework.boot.test.autoconfigure.json.AutoConfigureJsonTesters.imports

@ -1,2 +1 @@ @@ -1,2 +1 @@
org.springframework.boot.gson.autoconfigure.GsonAutoConfiguration
org.springframework.boot.gson.autoconfigure.GsonTesterAutoConfiguration

47
module/spring-boot-gson/src/test/java/org/springframework/boot/gson/autoconfigure/jsontest/GsonAutoConfigureJsonIntegrationTests.java

@ -0,0 +1,47 @@ @@ -0,0 +1,47 @@
/*
* Copyright 2012-present 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.gson.autoconfigure.jsontest;
import com.google.gson.Gson;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.json.AutoConfigureJson;
import org.springframework.context.ApplicationContext;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import static org.assertj.core.api.Assertions.assertThatNoException;
/**
* Integration tests for {@link AutoConfigureJson @AutoConfigureJson} with Gson.
*
* @author Andy Wilkinson
*/
@AutoConfigureJson
@ExtendWith(SpringExtension.class)
class GsonAutoConfigureJsonIntegrationTests {
@Autowired
private ApplicationContext context;
@Test
void gsonIsAvailable() {
assertThatNoException().isThrownBy(() -> this.context.getBean(Gson.class));
}
}

1
module/spring-boot-jackson/src/main/resources/META-INF/spring/org.springframework.boot.test.autoconfigure.json.AutoConfigureJson.imports

@ -0,0 +1 @@ @@ -0,0 +1 @@
org.springframework.boot.jackson.autoconfigure.JacksonAutoConfiguration

1
module/spring-boot-jackson/src/main/resources/META-INF/spring/org.springframework.boot.test.autoconfigure.json.AutoConfigureJsonTesters.imports

@ -1,2 +1 @@ @@ -1,2 +1 @@
org.springframework.boot.jackson.autoconfigure.JacksonAutoConfiguration
org.springframework.boot.jackson.autoconfigure.JacksonTesterAutoConfiguration

47
module/spring-boot-jackson/src/test/java/org/springframework/boot/jackson/autoconfigure/jsontest/JacksonAutoConfigureJsonIntegrationTests.java

@ -0,0 +1,47 @@ @@ -0,0 +1,47 @@
/*
* Copyright 2012-present 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.jackson.autoconfigure.jsontest;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import tools.jackson.databind.json.JsonMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.json.AutoConfigureJson;
import org.springframework.context.ApplicationContext;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import static org.assertj.core.api.Assertions.assertThatNoException;
/**
* Integration tests for {@link AutoConfigureJson @AutoConfigureJson} with Jackson.
*
* @author Andy Wilkinson
*/
@AutoConfigureJson
@ExtendWith(SpringExtension.class)
class JacksonAutoConfigureJsonIntegrationTests {
@Autowired
private ApplicationContext context;
@Test
void jsonMapperIsAvailable() {
assertThatNoException().isThrownBy(() -> this.context.getBean(JsonMapper.class));
}
}

1
module/spring-boot-jsonb/src/main/resources/META-INF/spring/org.springframework.boot.test.autoconfigure.json.AutoConfigureJson.imports

@ -0,0 +1 @@ @@ -0,0 +1 @@
org.springframework.boot.jsonb.autoconfigure.JsonbAutoConfiguration

3
module/spring-boot-jsonb/src/main/resources/META-INF/spring/org.springframework.boot.test.autoconfigure.json.AutoConfigureJsonTesters.imports

@ -1,2 +1 @@ @@ -1,2 +1 @@
org.springframework.boot.jsonb.autoconfigure.JsonbAutoConfiguration
org.springframework.boot.jsonb.autoconfigure.JsonbTesterAutoConfiguration
org.springframework.boot.jsonb.autoconfigure.JsonbTesterAutoConfiguration

47
module/spring-boot-jsonb/src/test/java/org/springframework/boot/jsonb/autoconfigure/jsontest/JsonbAutoConfigureJsonIntegrationTests.java

@ -0,0 +1,47 @@ @@ -0,0 +1,47 @@
/*
* Copyright 2012-present 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.jsonb.autoconfigure.jsontest;
import jakarta.json.bind.Jsonb;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.json.AutoConfigureJson;
import org.springframework.context.ApplicationContext;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import static org.assertj.core.api.Assertions.assertThatNoException;
/**
* Integration tests for {@link AutoConfigureJson @AutoConfigureJson} with JSON-B.
*
* @author Andy Wilkinson
*/
@AutoConfigureJson
@ExtendWith(SpringExtension.class)
class JsonbAutoConfigureJsonIntegrationTests {
@Autowired
private ApplicationContext context;
@Test
void jsonbIsAvailable() {
assertThatNoException().isThrownBy(() -> this.context.getBean(Jsonb.class));
}
}
Loading…
Cancel
Save