CAMEL-11832: Regen and added itests
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/1757f959 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/1757f959 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/1757f959 Branch: refs/heads/master Commit: 1757f959de23f9689b9e52867f33d7226926a6b8 Parents: 67ca92b Author: Claus Ibsen <davscl...@apache.org> Authored: Tue Oct 3 17:20:44 2017 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Tue Oct 3 17:20:44 2017 +0200 ---------------------------------------------------------------------- components/readme.adoc | 5 ++++- docs/user-manual/en/SUMMARY.md | 1 + .../test/java/org/apache/camel/itest/karaf/CamelAwsTest.java | 2 ++ .../java/org/apache/camel/itest/springboot/CamelAwsTest.java | 5 +++++ 4 files changed, 12 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/1757f959/components/readme.adoc ---------------------------------------------------------------------- diff --git a/components/readme.adoc b/components/readme.adoc index ca643da..0a6bd2b 100644 --- a/components/readme.adoc +++ b/components/readme.adoc @@ -2,7 +2,7 @@ Components ^^^^^^^^^^ // components: START -Number of Components: 282 in 194 JAR artifacts (17 deprecated) +Number of Components: 283 in 194 JAR artifacts (17 deprecated) [width="100%",cols="4,1,5",options="header"] |=== @@ -77,6 +77,9 @@ Number of Components: 282 in 194 JAR artifacts (17 deprecated) | link:camel-aws/src/main/docs/aws-kinesis-firehose-component.adoc[AWS Kinesis Firehose] (camel-aws) + `aws-kinesis-firehose:streamName` | 2.19 | The aws-kinesis-firehose component is used for producing Amazon's Kinesis Firehose streams. +| link:camel-aws/src/main/docs/aws-lambda-component.adoc[AWS Lambda] (camel-aws) + +`aws-lambda:function` | 2.20 | The aws-lambda is used for managing and invoking functions from Amazon Lambda. + | link:camel-aws/src/main/docs/aws-s3-component.adoc[AWS S3 Storage Service] (camel-aws) + `aws-s3:bucketNameOrArn` | 2.8 | The aws-s3 component is used for storing and retrieving objecct from Amazon S3 Storage Service. http://git-wip-us.apache.org/repos/asf/camel/blob/1757f959/docs/user-manual/en/SUMMARY.md ---------------------------------------------------------------------- diff --git a/docs/user-manual/en/SUMMARY.md b/docs/user-manual/en/SUMMARY.md index 290e261..1ca6513 100644 --- a/docs/user-manual/en/SUMMARY.md +++ b/docs/user-manual/en/SUMMARY.md @@ -147,6 +147,7 @@ * [AWS EC2](aws-ec2-component.adoc) * [AWS Kinesis](aws-kinesis-component.adoc) * [AWS Kinesis Firehose](aws-kinesis-firehose-component.adoc) + * [AWS Lambda](aws-lambda-component.adoc) * [AWS S3 Storage Service](aws-s3-component.adoc) * [AWS Simple Email Service](aws-ses-component.adoc) * [AWS Simple Notification System](aws-sns-component.adoc) http://git-wip-us.apache.org/repos/asf/camel/blob/1757f959/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelAwsTest.java ---------------------------------------------------------------------- diff --git a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelAwsTest.java b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelAwsTest.java index 75ccaa6..7466ad1 100644 --- a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelAwsTest.java +++ b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelAwsTest.java @@ -29,9 +29,11 @@ public class CamelAwsTest extends BaseKarafTest { public void test() throws Exception { testComponent(COMPONENT, "aws-cw"); testComponent(COMPONENT, "aws-ddb"); + testComponent(COMPONENT, "aws-ddbstream"); testComponent(COMPONENT, "aws-ec2"); testComponent(COMPONENT, "aws-kinesis"); testComponent(COMPONENT, "aws-kinesis-firehose"); + testComponent(COMPONENT, "aws-lambda"); testComponent(COMPONENT, "aws-s3"); testComponent(COMPONENT, "aws-sdb"); testComponent(COMPONENT, "aws-ses"); http://git-wip-us.apache.org/repos/asf/camel/blob/1757f959/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAwsTest.java ---------------------------------------------------------------------- diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAwsTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAwsTest.java index fdb341e..59a3519 100644 --- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAwsTest.java +++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAwsTest.java @@ -42,6 +42,11 @@ public class CamelAwsTest extends AbstractSpringBootTestSupport { public void componentTests() throws Exception { this.runComponentTest(createTestConfig(), "aws-cw"); this.runComponentTest(createTestConfig(), "aws-ddb"); + this.runComponentTest(createTestConfig(), "aws-ddbstream"); + this.runComponentTest(createTestConfig(), "aws-ec2"); + this.runComponentTest(createTestConfig(), "aws-kinesis"); + this.runComponentTest(createTestConfig(), "aws-kinesis-firehose"); + this.runComponentTest(createTestConfig(), "aws-lambda"); this.runComponentTest(createTestConfig(), "aws-s3"); this.runComponentTest(createTestConfig(), "aws-sdb"); this.runComponentTest(createTestConfig(), "aws-ses");