blob: b39a96f7d55bc1c5e7de1a59fb9f1cf0b1e41cd1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
*
* http://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.apache.camel.component.aws2.sns;
import org.apache.camel.Exchange;
import org.apache.camel.ExchangePattern;
import org.apache.camel.Processor;
import org.apache.camel.ResolveEndpointFailedException;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.spring.boot.CamelAutoConfiguration;
import org.apache.camel.test.infra.aws2.clients.AWSSDKClientUtils;
import org.apache.camel.test.spring.junit5.CamelSpringBootTest;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.test.annotation.DirtiesContext;
import software.amazon.awssdk.services.sns.SnsClient;
import static org.junit.jupiter.api.Assertions.assertNotNull;
// Based on SnsTopicProducerIT
@DirtiesContext
@CamelSpringBootTest
@SpringBootTest(
classes = {
CamelAutoConfiguration.class,
SnsAdvancedConfigurationTest.class,
SnsAdvancedConfigurationTest.TestConfiguration.class
}
)
public class SnsAdvancedConfigurationTest extends BaseSns {
@Test
public void sendInOnly() {
Exchange exchange = producerTemplate.send("direct:start", ExchangePattern.InOnly, new Processor() {
public void process(Exchange exchange) {
exchange.getIn().setHeader(Sns2Constants.SUBJECT, "This is my subject");
exchange.getIn().setBody("This is my message text.");
}
});
assertNotNull(exchange.getIn().getHeader(Sns2Constants.MESSAGE_ID));
}
@Test
public void testFailure() {
String uri = String.format("aws2-sns://%s?subject=The+subject+message&configuration=#class:%s&autoCreateTopic=true",
sharedNameGenerator.getName(), EmptyTestSnsConfiguration.class.getName());
Assertions.assertThrows(ResolveEndpointFailedException.class, () -> producerTemplate.requestBody(uri, "test", String.class));
}
// *************************************
// Config
// *************************************
@Configuration
public class TestConfiguration extends BaseSns.TestConfiguration {
@Bean
public RouteBuilder routeBuilder() {
return new RouteBuilder() {
@Override
public void configure() {
from("direct:start")
.toF("aws2-sns://%s?amazonSNSClient=#secondClient&subject=The+subject+message&autoCreateTopic=true", sharedNameGenerator.getName());
}
};
}
@Bean(value = "secondClient")
public SnsClient secondClient() {
return AWSSDKClientUtils.newSNSClient();
}
}
}