This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 346fc8df3b5d9d3883a1ccc7ec0342b55395a629 Author: Peter Palaga <ppal...@redhat.com> AuthorDate: Mon Oct 26 15:51:25 2020 +0100 Remove stale integration test from aws2-ses --- extensions/aws2-ses/integration-test/pom.xml | 81 ---------------------- .../component/aws2/ses/it/Aws2SesResource.java | 51 -------------- .../quarkus/component/aws2/ses/it/Aws2SesTest.java | 34 --------- 3 files changed, 166 deletions(-) diff --git a/extensions/aws2-ses/integration-test/pom.xml b/extensions/aws2-ses/integration-test/pom.xml deleted file mode 100644 index 7c4eebb..0000000 --- a/extensions/aws2-ses/integration-test/pom.xml +++ /dev/null @@ -1,81 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - - 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. - ---> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-build-parent-it</artifactId> - <version>1.1.0-SNAPSHOT</version> - <relativePath>../../../poms/build-parent-it/pom.xml</relativePath> - </parent> - - <artifactId>camel-quarkus-aws2-ses-integration-test</artifactId> - <name>Camel Quarkus :: AWS 2 Simple Email Service (SES) :: Integration Test</name> - <description>Integration tests for Camel Quarkus AWS 2 Simple Email Service (SES) extension</description> - - <properties> - <!-- mvnd, a.k.a. Maven Daemon: https://github.com/mvndaemon/mvnd --> - <!-- The following rule tells mvnd to build the listed deployment modules before this module. --> - <!-- This is important because mvnd builds modules in parallel by default. The deployment modules are not --> - <!-- explicit dependencies of this module in the Maven sense, although they are required by the Quarkus Maven plugin. --> - <!-- Please update the rule whenever you change the dependencies of this module by running --> - <!-- mvn process-resources -Pformat from the root directory --> - <mvnd.builder.rule>camel-quarkus-aws2-ses-deployment</mvnd.builder.rule> - </properties> - - <dependencies> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-aws2-ses</artifactId> - </dependency> - <dependency> - <groupId>io.quarkus</groupId> - <artifactId>quarkus-resteasy</artifactId> - </dependency> - - <!-- test dependencies --> - <dependency> - <groupId>io.quarkus</groupId> - <artifactId>quarkus-junit5</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>io.rest-assured</groupId> - <artifactId>rest-assured</artifactId> - <scope>test</scope> - </dependency> - </dependencies> - - <build> - <plugins> - <plugin> - <groupId>io.quarkus</groupId> - <artifactId>quarkus-maven-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>build</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> diff --git a/extensions/aws2-ses/integration-test/src/main/java/org/apache/camel/quarkus/component/aws2/ses/it/Aws2SesResource.java b/extensions/aws2-ses/integration-test/src/main/java/org/apache/camel/quarkus/component/aws2/ses/it/Aws2SesResource.java deleted file mode 100644 index 3acf7aa..0000000 --- a/extensions/aws2-ses/integration-test/src/main/java/org/apache/camel/quarkus/component/aws2/ses/it/Aws2SesResource.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * 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.quarkus.component.aws2.ses.it; - -import javax.enterprise.context.ApplicationScoped; -import javax.inject.Inject; -import javax.ws.rs.GET; -import javax.ws.rs.Path; -import javax.ws.rs.Produces; -import javax.ws.rs.core.MediaType; -import javax.ws.rs.core.Response; - -import org.apache.camel.CamelContext; -import org.jboss.logging.Logger; - -@Path("/aws2-ses") -@ApplicationScoped -public class Aws2SesResource { - - private static final Logger LOG = Logger.getLogger(Aws2SesResource.class); - - private static final String COMPONENT_AWS2_SES = "aws2-ses"; - @Inject - CamelContext context; - - @Path("/load/component/aws2-ses") - @GET - @Produces(MediaType.TEXT_PLAIN) - public Response loadComponentAws2Ses() throws Exception { - /* This is an autogenerated test */ - if (context.getComponent(COMPONENT_AWS2_SES) != null) { - return Response.ok().build(); - } - LOG.warnf("Could not load [%s] from the Camel context", COMPONENT_AWS2_SES); - return Response.status(500, COMPONENT_AWS2_SES + " could not be loaded from the Camel context").build(); - } -} diff --git a/extensions/aws2-ses/integration-test/src/test/java/org/apache/camel/quarkus/component/aws2/ses/it/Aws2SesTest.java b/extensions/aws2-ses/integration-test/src/test/java/org/apache/camel/quarkus/component/aws2/ses/it/Aws2SesTest.java deleted file mode 100644 index f9ec118..0000000 --- a/extensions/aws2-ses/integration-test/src/test/java/org/apache/camel/quarkus/component/aws2/ses/it/Aws2SesTest.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * 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.quarkus.component.aws2.ses.it; - -import io.quarkus.test.junit.QuarkusTest; -import io.restassured.RestAssured; -import org.junit.jupiter.api.Test; - -@QuarkusTest -class Aws2SesTest { - - @Test - public void loadComponentAws2Ses() { - /* A simple autogenerated test */ - RestAssured.get("/aws2-ses/load/component/aws2-ses") - .then() - .statusCode(200); - } - -}