|
| 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.localstack.sns; |
| 17 | + |
| 18 | +import io.micronaut.testresources.localstack.LocalStackService; |
| 19 | +import org.testcontainers.containers.localstack.LocalStackContainer; |
| 20 | + |
| 21 | +import java.util.Collections; |
| 22 | +import java.util.List; |
| 23 | +import java.util.Optional; |
| 24 | + |
| 25 | +/** |
| 26 | + * Adds support for Localstack SNS. |
| 27 | + */ |
| 28 | +public class LocalStackSNSService implements LocalStackService { |
| 29 | + |
| 30 | + private static final String AWS_SNS_ENDPOINT_OVERRIDE = "aws.services.sns.endpoint-override"; |
| 31 | + |
| 32 | + @Override |
| 33 | + public LocalStackContainer.Service getServiceKind() { |
| 34 | + return LocalStackContainer.Service.SNS; |
| 35 | + } |
| 36 | + |
| 37 | + @Override |
| 38 | + public List<String> getResolvableProperties() { |
| 39 | + return Collections.singletonList(AWS_SNS_ENDPOINT_OVERRIDE); |
| 40 | + } |
| 41 | + |
| 42 | + @Override |
| 43 | + public Optional<String> resolveProperty(String propertyName, LocalStackContainer container) { |
| 44 | + if (AWS_SNS_ENDPOINT_OVERRIDE.equals(propertyName)) { |
| 45 | + return Optional.of(container.getEndpointOverride(LocalStackContainer.Service.SNS).toString()); |
| 46 | + } |
| 47 | + return Optional.empty(); |
| 48 | + } |
| 49 | +} |
0 commit comments