This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/master by this push: new a5ba872 Add Google Drive extension a5ba872 is described below commit a5ba872938e1350bafa5be083881466aa9990755 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Wed Mar 18 16:42:58 2020 +0000 Add Google Drive extension Fixes #806 --- .../pages/list-of-camel-quarkus-extensions.adoc | 5 +- extensions/google-drive/deployment/pom.xml | 79 ++++++++++++++++++ .../drive/deployment/GoogleDriveProcessor.java | 66 +++++++++++++++ extensions/google-drive/pom.xml | 39 +++++++++ extensions/google-drive/runtime/pom.xml | 87 ++++++++++++++++++++ .../main/resources/META-INF/quarkus-extension.yaml | 31 +++++++ extensions/pom.xml | 1 + extensions/readme.adoc | 5 +- integration-tests/google/pom.xml | 6 +- .../component/google/it/GoogleDriveResource.java | 95 ++++++++++++++++++++++ .../src/main/resources/application.properties | 7 ++ .../component/google/it/GoogleComponentsTest.java | 39 +++++++++ poms/bom-deployment/pom.xml | 5 ++ poms/bom/pom.xml | 10 +++ 14 files changed, 472 insertions(+), 3 deletions(-) diff --git a/docs/modules/ROOT/pages/list-of-camel-quarkus-extensions.adoc b/docs/modules/ROOT/pages/list-of-camel-quarkus-extensions.adoc index f2ae067..010e861 100644 --- a/docs/modules/ROOT/pages/list-of-camel-quarkus-extensions.adoc +++ b/docs/modules/ROOT/pages/list-of-camel-quarkus-extensions.adoc @@ -18,7 +18,7 @@ In case you are missing some Camel feature in the list: == Camel Components // components: START -Number of Camel components: 78 in 67 JAR artifacts (0 deprecated) +Number of Camel components: 79 in 68 JAR artifacts (0 deprecated) [width="100%",cols="4,1,5",options="header"] |=== @@ -123,6 +123,9 @@ Number of Camel components: 78 in 67 JAR artifacts (0 deprecated) | link:https://camel.apache.org/components/latest/ftps-component.html[FTPS] (camel-quarkus-ftp) + `ftps:host:port/directoryName` | 1.0.0-M1 | The \ftps (FTP secure SSL/TLS) component is used for uploading or downloading files from FTP servers. +| link:https://camel.apache.org/components/latest/google-drive-component.html[Google Drive] (camel-quarkus-google-drive) + +`google-drive:apiName/methodName` | 1.0.0-M6 | The google-drive component provides access to Google Drive file storage service. + | link:https://camel.apache.org/components/latest/google-mail-component.html[Google Mail] (camel-quarkus-google-mail) + `google-mail:apiName/methodName` | 1.0.0-M6 | The google-mail component provides access to Google Mail. diff --git a/extensions/google-drive/deployment/pom.xml b/extensions/google-drive/deployment/pom.xml new file mode 100644 index 0000000..7fca0f9 --- /dev/null +++ b/extensions/google-drive/deployment/pom.xml @@ -0,0 +1,79 @@ +<?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-google-drive-parent</artifactId> + <version>1.1.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <artifactId>camel-quarkus-google-drive-deployment</artifactId> + <name>Camel Quarkus :: Google Drive :: Deployment</name> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-bom-deployment</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + + <dependencies> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-core-deployment</artifactId> + </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-support-google-http-client-deployment</artifactId> + </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-google-drive</artifactId> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <annotationProcessorPaths> + <path> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-extension-processor</artifactId> + <version>${quarkus.version}</version> + </path> + </annotationProcessorPaths> + </configuration> + </plugin> + </plugins> + </build> + +</project> diff --git a/extensions/google-drive/deployment/src/main/java/org/apache/camel/quarkus/component/google/drive/deployment/GoogleDriveProcessor.java b/extensions/google-drive/deployment/src/main/java/org/apache/camel/quarkus/component/google/drive/deployment/GoogleDriveProcessor.java new file mode 100644 index 0000000..3ed0f0f --- /dev/null +++ b/extensions/google-drive/deployment/src/main/java/org/apache/camel/quarkus/component/google/drive/deployment/GoogleDriveProcessor.java @@ -0,0 +1,66 @@ +/* + * 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.google.drive.deployment; + +import java.util.Collection; + +import io.quarkus.deployment.annotations.BuildProducer; +import io.quarkus.deployment.annotations.BuildStep; +import io.quarkus.deployment.builditem.AdditionalApplicationArchiveMarkerBuildItem; +import io.quarkus.deployment.builditem.CombinedIndexBuildItem; +import io.quarkus.deployment.builditem.FeatureBuildItem; +import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem; +import org.apache.camel.quarkus.core.deployment.UnbannedReflectiveBuildItem; +import org.jboss.jandex.AnnotationInstance; +import org.jboss.jandex.AnnotationTarget; +import org.jboss.jandex.DotName; +import org.jboss.jandex.IndexView; + +class GoogleDriveProcessor { + + private static final String FEATURE = "camel-google-drive"; + + @BuildStep + FeatureBuildItem feature() { + return new FeatureBuildItem(FEATURE); + } + + @BuildStep + void applicationArchiveMarkers(BuildProducer<AdditionalApplicationArchiveMarkerBuildItem> applicationArchiveMarker) { + applicationArchiveMarker.produce(new AdditionalApplicationArchiveMarkerBuildItem("com/google/api/services/drive")); + } + + @BuildStep + void registerForReflection(BuildProducer<ReflectiveClassBuildItem> reflectiveClass, + BuildProducer<UnbannedReflectiveBuildItem> unbannedClass, CombinedIndexBuildItem combinedIndex) { + IndexView index = combinedIndex.getIndex(); + + // Google drive component configuration class reflection + Collection<AnnotationInstance> uriParams = index + .getAnnotations(DotName.createSimple("org.apache.camel.spi.UriParams")); + + String[] googleDriveConfigClasses = uriParams.stream() + .map(annotation -> annotation.target()) + .filter(annotationTarget -> annotationTarget.kind().equals(AnnotationTarget.Kind.CLASS)) + .map(annotationTarget -> annotationTarget.asClass().name().toString()) + .filter(className -> className.startsWith("org.apache.camel.component.google.drive")) + .toArray(String[]::new); + + reflectiveClass.produce(new ReflectiveClassBuildItem(true, true, googleDriveConfigClasses)); + unbannedClass.produce(new UnbannedReflectiveBuildItem(googleDriveConfigClasses)); + } +} diff --git a/extensions/google-drive/pom.xml b/extensions/google-drive/pom.xml new file mode 100644 index 0000000..683700b --- /dev/null +++ b/extensions/google-drive/pom.xml @@ -0,0 +1,39 @@ +<?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</artifactId> + <version>1.1.0-SNAPSHOT</version> + <relativePath>../../poms/build-parent/pom.xml</relativePath> + </parent> + + <artifactId>camel-quarkus-google-drive-parent</artifactId> + <name>Camel Quarkus :: Google Drive</name> + <packaging>pom</packaging> + + <modules> + <module>deployment</module> + <module>runtime</module> + </modules> +</project> diff --git a/extensions/google-drive/runtime/pom.xml b/extensions/google-drive/runtime/pom.xml new file mode 100644 index 0000000..6cae966 --- /dev/null +++ b/extensions/google-drive/runtime/pom.xml @@ -0,0 +1,87 @@ +<?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-google-drive-parent</artifactId> + <version>1.1.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <artifactId>camel-quarkus-google-drive</artifactId> + <name>Camel Quarkus :: Google Drive :: Runtime</name> + <description>The google-drive component provides access to Google Drive file storage service.</description> + + <properties> + <firstVersion>1.0.0-M6</firstVersion> + </properties> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-bom</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + + <dependencies> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-core</artifactId> + </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-support-google-http-client</artifactId> + </dependency> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-google-drive</artifactId> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-bootstrap-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <annotationProcessorPaths> + <path> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-extension-processor</artifactId> + <version>${quarkus.version}</version> + </path> + </annotationProcessorPaths> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/extensions/google-drive/runtime/src/main/resources/META-INF/quarkus-extension.yaml b/extensions/google-drive/runtime/src/main/resources/META-INF/quarkus-extension.yaml new file mode 100644 index 0000000..c400d43 --- /dev/null +++ b/extensions/google-drive/runtime/src/main/resources/META-INF/quarkus-extension.yaml @@ -0,0 +1,31 @@ +# +# 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. +# + +--- +name: "Google Drive" +description: "The google-drive component provides access to Google Drive file storage service." +metadata: + keywords: + - "api" + - "camel" + - "cloud" + - "file" + - "google" + guide: "https://quarkus.io/guides/camel" + categories: + - "integration" + status: "stable" diff --git a/extensions/pom.xml b/extensions/pom.xml index d63a617..a1c6078 100644 --- a/extensions/pom.xml +++ b/extensions/pom.xml @@ -67,6 +67,7 @@ <module>file</module> <module>file-watch</module> <module>ftp</module> + <module>google-drive</module> <module>google-mail</module> <module>graphql</module> <module>gson</module> diff --git a/extensions/readme.adoc b/extensions/readme.adoc index a01ca12..bca5960 100644 --- a/extensions/readme.adoc +++ b/extensions/readme.adoc @@ -5,7 +5,7 @@ Apache Camel Quarkus supports the following Camel artifacts as Quarkus Extension == Camel Components // components: START -Number of Camel components: 78 in 67 JAR artifacts (0 deprecated) +Number of Camel components: 79 in 68 JAR artifacts (0 deprecated) [width="100%",cols="4,1,5",options="header"] |=== @@ -110,6 +110,9 @@ Number of Camel components: 78 in 67 JAR artifacts (0 deprecated) | link:https://camel.apache.org/components/latest/ftps-component.html[FTPS] (camel-quarkus-ftp) + `ftps:host:port/directoryName` | 1.0.0-M1 | The \ftps (FTP secure SSL/TLS) component is used for uploading or downloading files from FTP servers. +| link:https://camel.apache.org/components/latest/google-drive-component.html[Google Drive] (camel-quarkus-google-drive) + +`google-drive:apiName/methodName` | 1.0.0-M6 | The google-drive component provides access to Google Drive file storage service. + | link:https://camel.apache.org/components/latest/google-mail-component.html[Google Mail] (camel-quarkus-google-mail) + `google-mail:apiName/methodName` | 1.0.0-M6 | The google-mail component provides access to Google Mail. diff --git a/integration-tests/google/pom.xml b/integration-tests/google/pom.xml index e2af1ca..9c79ec9 100644 --- a/integration-tests/google/pom.xml +++ b/integration-tests/google/pom.xml @@ -38,12 +38,16 @@ <!-- explicit dependencies of this module in the Maven sense, although they are required by the Quarkus Maven plugin. --> <!-- Please update rule whenever you change the dependencies of this module by running --> <!-- mvn process-resources -Pformat from the root directory --> - <mvnd.builder.rule>camel-quarkus-google-mail-deployment,camel-quarkus-support-policy-deployment</mvnd.builder.rule> + <mvnd.builder.rule>camel-quarkus-google-drive-deployment,camel-quarkus-google-mail-deployment,camel-quarkus-support-policy-deployment</mvnd.builder.rule> </properties> <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-google-drive</artifactId> + </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-google-mail</artifactId> </dependency> <dependency> diff --git a/integration-tests/google/src/main/java/org/apache/camel/quarkus/component/google/it/GoogleDriveResource.java b/integration-tests/google/src/main/java/org/apache/camel/quarkus/component/google/it/GoogleDriveResource.java new file mode 100644 index 0000000..57f9ed9 --- /dev/null +++ b/integration-tests/google/src/main/java/org/apache/camel/quarkus/component/google/it/GoogleDriveResource.java @@ -0,0 +1,95 @@ +/* + * 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.google.it; + +import java.net.URI; +import java.nio.charset.StandardCharsets; +import java.util.HashMap; +import java.util.Map; + +import javax.inject.Inject; +import javax.ws.rs.Consumes; +import javax.ws.rs.DELETE; +import javax.ws.rs.GET; +import javax.ws.rs.POST; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.QueryParam; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; + +import com.google.api.client.googleapis.json.GoogleJsonResponseException; +import com.google.api.client.http.ByteArrayContent; +import com.google.api.client.http.HttpContent; +import com.google.api.services.drive.model.File; +import org.apache.camel.CamelExecutionException; +import org.apache.camel.ProducerTemplate; + +@Path("/google-drive") +public class GoogleDriveResource { + + @Inject + ProducerTemplate producerTemplate; + + @Path("/create") + @POST + @Consumes(MediaType.TEXT_PLAIN) + @Produces(MediaType.TEXT_PLAIN) + public Response createFile(String title) throws Exception { + File fileMetadata = new File(); + fileMetadata.setTitle(title); + HttpContent mediaContent = new ByteArrayContent("text/plain", + "Hello Camel Quarkus Google Drive".getBytes(StandardCharsets.UTF_8)); + + final Map<String, Object> headers = new HashMap<>(); + headers.put("CamelGoogleDrive.content", fileMetadata); + headers.put("CamelGoogleDrive.mediaContent", mediaContent); + File response = producerTemplate.requestBodyAndHeaders("google-drive://drive-files/insert", null, headers, File.class); + return Response + .created(new URI("https://camel.apache.org/")) + .entity(response.getId()) + .build(); + } + + @Path("/read") + @GET + @Produces(MediaType.TEXT_PLAIN) + public Response readFile(@QueryParam("fileId") String fileId) { + try { + File response = producerTemplate.requestBody("google-drive://drive-files/get?inBody=fileId", fileId, File.class); + if (response != null) { + return Response.ok(response.getTitle()).build(); + } else { + return Response.status(Response.Status.NOT_FOUND).build(); + } + } catch (CamelExecutionException e) { + Exception exchangeException = e.getExchange().getException(); + if (exchangeException != null && exchangeException.getCause() instanceof GoogleJsonResponseException) { + GoogleJsonResponseException originalException = (GoogleJsonResponseException) exchangeException.getCause(); + return Response.status(originalException.getStatusCode()).build(); + } + throw e; + } + } + + @Path("/delete") + @DELETE + public Response deleteFile(@QueryParam("fileId") String fileId) { + producerTemplate.requestBody("google-drive://drive-files/delete?inBody=fileId", fileId); + return Response.status(Response.Status.NO_CONTENT).build(); + } +} diff --git a/integration-tests/google/src/main/resources/application.properties b/integration-tests/google/src/main/resources/application.properties index 1a9b4af..9a53a4d 100644 --- a/integration-tests/google/src/main/resources/application.properties +++ b/integration-tests/google/src/main/resources/application.properties @@ -20,3 +20,10 @@ camel.component.google-mail.configuration.application-name={{env:GOOGLE_API_APPL camel.component.google-mail.configuration.client-id={{env:GOOGLE_API_CLIENT_ID}} camel.component.google-mail.configuration.client-secret={{env:GOOGLE_API_CLIENT_SECRET}} camel.component.google-mail.configuration.refresh-token={{env:GOOGLE_API_REFRESH_TOKEN}} + +# Camel Google Drive +camel.component.google-drive.configuration.application-name={{env:GOOGLE_API_APPLICATION_NAME}} +camel.component.google-drive.configuration.client-id={{env:GOOGLE_API_CLIENT_ID}} +camel.component.google-drive.configuration.client-secret={{env:GOOGLE_API_CLIENT_SECRET}} +camel.component.google-drive.configuration.refresh-token={{env:GOOGLE_API_REFRESH_TOKEN}} + diff --git a/integration-tests/google/src/test/java/org/apache/camel/quarkus/component/google/it/GoogleComponentsTest.java b/integration-tests/google/src/test/java/org/apache/camel/quarkus/component/google/it/GoogleComponentsTest.java index 4e58da3..54875e7 100644 --- a/integration-tests/google/src/test/java/org/apache/camel/quarkus/component/google/it/GoogleComponentsTest.java +++ b/integration-tests/google/src/test/java/org/apache/camel/quarkus/component/google/it/GoogleComponentsTest.java @@ -16,6 +16,8 @@ */ package org.apache.camel.quarkus.component.google.it; +import java.util.UUID; + import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; import io.restassured.http.ContentType; @@ -32,6 +34,43 @@ import static org.hamcrest.Matchers.is; class GoogleComponentsTest { @Test + public void testGoogleDriveComponent() { + String title = UUID.randomUUID().toString(); + + // Create + String fileId = RestAssured.given() + .contentType(ContentType.TEXT) + .body(title) + .post("/google-drive/create") + .then() + .statusCode(201) + .extract() + .body() + .asString(); + + // Read + RestAssured.given() + .queryParam("fileId", fileId) + .get("/google-drive/read") + .then() + .statusCode(200) + .body(is(title)); + + // Delete + RestAssured.given() + .queryParam("fileId", fileId) + .delete("/google-drive/delete") + .then() + .statusCode(204); + + RestAssured.given() + .queryParam("fileId", fileId) + .get("/google-drive/read") + .then() + .statusCode(404); + } + + @Test public void testGoogleMailComponent() { String message = "Hello Camel Quarkus Google Mail"; diff --git a/poms/bom-deployment/pom.xml b/poms/bom-deployment/pom.xml index adf1cc2..bd79ed4 100644 --- a/poms/bom-deployment/pom.xml +++ b/poms/bom-deployment/pom.xml @@ -256,6 +256,11 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-google-drive-deployment</artifactId> + <version>${camel-quarkus.version}</version> + </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-google-mail-deployment</artifactId> <version>${camel-quarkus.version}</version> </dependency> diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml index a13bdfc..c8abe47 100644 --- a/poms/bom/pom.xml +++ b/poms/bom/pom.xml @@ -299,6 +299,11 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> + <artifactId>camel-google-drive</artifactId> + <version>${camel.version}</version> + </dependency> + <dependency> + <groupId>org.apache.camel</groupId> <artifactId>camel-google-mail</artifactId> <version>${camel.version}</version> </dependency> @@ -922,6 +927,11 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-google-drive</artifactId> + <version>${camel-quarkus.version}</version> + </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-google-mail</artifactId> <version>${camel-quarkus.version}</version> </dependency>