This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 98c8ee947b21d981806ed08aa18ef4fe3781ad5d Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Mar 28 11:34:59 2022 +0200 CAMEL-17854 - Camel-AWS-SNS: support byte arrays when mapping camel headers to sns attribute --- .../SnsTopicProducerByteArrayHeaderIT.java | 80 ++++++++++++++++++++++ 1 file changed, 80 insertions(+) diff --git a/components/camel-aws/camel-aws2-sns/src/test/java/org/apache/camel/component/aws2/sns/integration/SnsTopicProducerByteArrayHeaderIT.java b/components/camel-aws/camel-aws2-sns/src/test/java/org/apache/camel/component/aws2/sns/integration/SnsTopicProducerByteArrayHeaderIT.java new file mode 100644 index 0000000..0c257e6 --- /dev/null +++ b/components/camel-aws/camel-aws2-sns/src/test/java/org/apache/camel/component/aws2/sns/integration/SnsTopicProducerByteArrayHeaderIT.java @@ -0,0 +1,80 @@ +/* + * 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.integration; + +import org.apache.camel.Exchange; +import org.apache.camel.ExchangePattern; +import org.apache.camel.Processor; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.aws2.sns.Sns2Constants; +import org.apache.camel.test.infra.common.SharedNameGenerator; +import org.apache.camel.test.infra.common.TestEntityNameGenerator; +import org.junit.Assert; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.RegisterExtension; +import org.testcontainers.shaded.org.bouncycastle.util.Strings; + +import static org.junit.jupiter.api.Assertions.assertNotNull; + +public class SnsTopicProducerByteArrayHeaderIT extends Aws2SNSBase { + + @RegisterExtension + public static SharedNameGenerator sharedNameGenerator = new TestEntityNameGenerator(); + + @Test + public void sendInOnly() { + Exchange exchange = template.send("direct:start", ExchangePattern.InOnly, new Processor() { + public void process(Exchange exchange) { + byte[] headerValue = "HeaderTest".getBytes(); + exchange.getIn().setHeader("value1", headerValue); + exchange.getIn().setHeader(Sns2Constants.SUBJECT, "This is my subject"); + exchange.getIn().setBody("This is my message text."); + } + }); + + assertNotNull(exchange.getIn().getHeader(Sns2Constants.MESSAGE_ID)); + Assert.assertEquals("HeaderTest", + Strings.fromByteArray((byte[]) exchange.getMessage().getHeaders().get("value1"))); + } + + @Test + public void sendInOut() { + Exchange exchange = template.send("direct:start", ExchangePattern.InOut, new Processor() { + public void process(Exchange exchange) { + byte[] headerValue = "HeaderTest".getBytes(); + exchange.getIn().setHeader("value1", headerValue); + exchange.getIn().setHeader(Sns2Constants.SUBJECT, "This is my subject"); + exchange.getIn().setBody("This is my message text."); + } + }); + + assertNotNull(exchange.getMessage().getHeader(Sns2Constants.MESSAGE_ID)); + Assert.assertEquals("HeaderTest", + Strings.fromByteArray((byte[]) exchange.getMessage().getHeaders().get("value1"))); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("direct:start") + .toF("aws2-sns://%s?subject=The+subject+message&autoCreateTopic=true", sharedNameGenerator.getName()); + } + }; + } +}