|
| 1 | +/* |
| 2 | + * Copyright 2017-2024 original authors |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package io.micronaut.testresources.server; |
| 17 | + |
| 18 | +import io.micronaut.core.annotation.Internal; |
| 19 | +import io.micronaut.runtime.server.EmbeddedServer; |
| 20 | +import io.micronaut.testresources.core.TestResourcesResolver; |
| 21 | +import jakarta.inject.Singleton; |
| 22 | + |
| 23 | +import java.util.Collection; |
| 24 | +import java.util.List; |
| 25 | +import java.util.Map; |
| 26 | +import java.util.Optional; |
| 27 | + |
| 28 | +/** |
| 29 | + * A {@link TestResourcesResolver} that resolves properties regarding the Test Resource Service itself, |
| 30 | + * such as <code>micronaut.test.resources.server.uri</code>. |
| 31 | + * |
| 32 | + * @author Álvaro Sánchez-Mariscal |
| 33 | + * @since 2.4.0 |
| 34 | + */ |
| 35 | +@Internal |
| 36 | +@Singleton |
| 37 | +public class InternalTestResourcesServiceResolver implements InjectableTestResourcesResolver { |
| 38 | + |
| 39 | + public static final String SERVER_URI = "micronaut.test.resources.server.uri"; |
| 40 | + |
| 41 | + private final EmbeddedServer server; |
| 42 | + |
| 43 | + public InternalTestResourcesServiceResolver(EmbeddedServer server) { |
| 44 | + this.server = server; |
| 45 | + } |
| 46 | + |
| 47 | + @Override |
| 48 | + public List<String> getResolvableProperties(Map<String, Collection<String>> propertyEntries, Map<String, Object> testResourcesConfig) { |
| 49 | + return List.of(SERVER_URI); |
| 50 | + } |
| 51 | + |
| 52 | + @Override |
| 53 | + public Optional<String> resolve(String propertyName, Map<String, Object> properties, Map<String, Object> testResourcesConfig) { |
| 54 | + if (SERVER_URI.equals(propertyName)) { |
| 55 | + return Optional.of(server.getURI().toString()); |
| 56 | + } |
| 57 | + return Optional.empty(); |
| 58 | + } |
| 59 | +} |
0 commit comments