From cf23cbad5398c09ece34108125389d9a10fe2cc6 Mon Sep 17 00:00:00 2001 From: Christoph Deppisch Date: Wed, 20 Sep 2023 21:05:46 +0200 Subject: [PATCH] fix(#993): Add QuarkusTest runtime support - Enable Citrus support for QuarkusTest framework - Add Citrus Quarkus test resource that takes care of Citrus resource injection and Citrus test lifecycle management as part of a Quarkus test - Add CitrusSupport annotation to enable Citrus for a Quarkus test --- catalog/citrus-bom/pom.xml | 5 + pom.xml | 26 +++ .../citrus-quarkus-deployment/pom.xml | 47 ++++ .../quarkus/deployment/CitrusProcessor.java | 56 +++++ .../src/main/resources/META-INF/LICENSE.txt | 201 ++++++++++++++++++ .../src/main/resources/META-INF/NOTICE.txt | 32 +++ .../citrus-quarkus/citrus-quarkus-it/pom.xml | 113 ++++++++++ .../quarkus/app/DemoApplication.java | 34 +++ .../src/main/resources/META-INF/LICENSE.txt | 201 ++++++++++++++++++ .../src/main/resources/META-INF/NOTICE.txt | 32 +++ .../src/main/resources/application.properties | 1 + .../quarkus/app/DemoApplicationTest.java | 95 +++++++++ .../TextEqualsMessageValidator.java | 85 ++++++++ .../citrus-quarkus-runtime/pom.xml | 68 ++++++ .../quarkus/CitrusSupport.java | 40 ++++ .../quarkus/CitrusTestResource.java | 98 +++++++++ .../src/main/resources/META-INF/LICENSE.txt | 201 ++++++++++++++++++ .../src/main/resources/META-INF/NOTICE.txt | 32 +++ .../src/main/resources/quarkus-extension.yaml | 8 + runtime/citrus-quarkus/pom.xml | 64 ++++++ runtime/pom.xml | 5 +- 21 files changed, 1442 insertions(+), 2 deletions(-) create mode 100644 runtime/citrus-quarkus/citrus-quarkus-deployment/pom.xml create mode 100644 runtime/citrus-quarkus/citrus-quarkus-deployment/src/main/java/org/citrusframework/quarkus/deployment/CitrusProcessor.java create mode 100644 runtime/citrus-quarkus/citrus-quarkus-deployment/src/main/resources/META-INF/LICENSE.txt create mode 100644 runtime/citrus-quarkus/citrus-quarkus-deployment/src/main/resources/META-INF/NOTICE.txt create mode 100644 runtime/citrus-quarkus/citrus-quarkus-it/pom.xml create mode 100644 runtime/citrus-quarkus/citrus-quarkus-it/src/main/java/org/citrusframework/quarkus/app/DemoApplication.java create mode 100644 runtime/citrus-quarkus/citrus-quarkus-it/src/main/resources/META-INF/LICENSE.txt create mode 100644 runtime/citrus-quarkus/citrus-quarkus-it/src/main/resources/META-INF/NOTICE.txt create mode 100644 runtime/citrus-quarkus/citrus-quarkus-it/src/main/resources/application.properties create mode 100644 runtime/citrus-quarkus/citrus-quarkus-it/src/test/java/org/citrusframework/quarkus/app/DemoApplicationTest.java create mode 100644 runtime/citrus-quarkus/citrus-quarkus-it/src/test/java/org/citrusframework/quarkus/app/validation/TextEqualsMessageValidator.java create mode 100644 runtime/citrus-quarkus/citrus-quarkus-runtime/pom.xml create mode 100644 runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/java/org/citrusframework/quarkus/CitrusSupport.java create mode 100644 runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/java/org/citrusframework/quarkus/CitrusTestResource.java create mode 100644 runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/resources/META-INF/LICENSE.txt create mode 100644 runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/resources/META-INF/NOTICE.txt create mode 100644 runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/resources/quarkus-extension.yaml create mode 100644 runtime/citrus-quarkus/pom.xml diff --git a/catalog/citrus-bom/pom.xml b/catalog/citrus-bom/pom.xml index 27256a3214..08f8fab7ff 100644 --- a/catalog/citrus-bom/pom.xml +++ b/catalog/citrus-bom/pom.xml @@ -166,6 +166,11 @@ citrus-junit5 ${project.version} + + org.citrusframework + citrus-quarkus + ${project.version} + org.citrusframework citrus-main diff --git a/pom.xml b/pom.xml index 836772f392..3d95b6cb11 100644 --- a/pom.xml +++ b/pom.xml @@ -215,6 +215,7 @@ 2.5.0 r938 5.10.0 + 1.10.0 4.13.2 2.6.2 1.4.34 @@ -516,6 +517,31 @@ junit-jupiter-engine ${junit.jupiter.version} + + org.junit.jupiter + junit-jupiter + ${junit.jupiter.version} + + + org.junit.jupiter + junit-jupiter-params + ${junit.jupiter.version} + + + org.junit.platform + junit-platform-engine + ${junit.platform.version} + + + org.junit.platform + junit-platform-commons + ${junit.platform.version} + + + org.junit.platform + junit-platform-launcher + ${junit.platform.version} + org.junit.vintage junit-vintage-engine diff --git a/runtime/citrus-quarkus/citrus-quarkus-deployment/pom.xml b/runtime/citrus-quarkus/citrus-quarkus-deployment/pom.xml new file mode 100644 index 0000000000..be222a63c9 --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-deployment/pom.xml @@ -0,0 +1,47 @@ + + 4.0.0 + + + org.citrusframework + citrus-quarkus-extension + 4.0.0-SNAPSHOT + ../pom.xml + + + citrus-quarkus-deployment + Citrus :: Runtime :: Quarkus Deployment + Citrus Quarkus Deployment + + + + io.quarkus + quarkus-arc-deployment + + + + org.citrusframework + citrus-quarkus + ${project.version} + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven.compiler.version} + + + + io.quarkus + quarkus-extension-processor + ${quarkus.platform.version} + + + + + + + diff --git a/runtime/citrus-quarkus/citrus-quarkus-deployment/src/main/java/org/citrusframework/quarkus/deployment/CitrusProcessor.java b/runtime/citrus-quarkus/citrus-quarkus-deployment/src/main/java/org/citrusframework/quarkus/deployment/CitrusProcessor.java new file mode 100644 index 0000000000..49f8016aea --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-deployment/src/main/java/org/citrusframework/quarkus/deployment/CitrusProcessor.java @@ -0,0 +1,56 @@ +/* + * Copyright 2023 the original author or authors. + * + * 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.citrusframework.quarkus.deployment; + +import io.quarkus.deployment.annotations.BuildStep; +import io.quarkus.deployment.builditem.FeatureBuildItem; +import io.quarkus.deployment.builditem.IndexDependencyBuildItem; + +/** + * Processor adding build steps to fully index Citrus API and base modules. + * @author Christoph Deppisch + */ +public class CitrusProcessor { + + private static final String FEATURE = "citrus"; + + @BuildStep + FeatureBuildItem feature() { + return new FeatureBuildItem(FEATURE); + } + + /** + * Citrus API has a lot of annotations + *

+ * rather than hard coding them all we index them and discover them + */ + @BuildStep + IndexDependencyBuildItem indexCitrusApi() { + return new IndexDependencyBuildItem("org.citrusframework", "citrus-api"); + } + + /** + * Citrus base module gets indexed in order to discover all beans. + */ + @BuildStep + IndexDependencyBuildItem indexCitrusBase() { + return new IndexDependencyBuildItem("org.citrusframework", "citrus-base"); + } +} diff --git a/runtime/citrus-quarkus/citrus-quarkus-deployment/src/main/resources/META-INF/LICENSE.txt b/runtime/citrus-quarkus/citrus-quarkus-deployment/src/main/resources/META-INF/LICENSE.txt new file mode 100644 index 0000000000..0dfbfdbe76 --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-deployment/src/main/resources/META-INF/LICENSE.txt @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2006-2023 the original author or authors. + + Licensed 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. diff --git a/runtime/citrus-quarkus/citrus-quarkus-deployment/src/main/resources/META-INF/NOTICE.txt b/runtime/citrus-quarkus/citrus-quarkus-deployment/src/main/resources/META-INF/NOTICE.txt new file mode 100644 index 0000000000..ad3886b5ab --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-deployment/src/main/resources/META-INF/NOTICE.txt @@ -0,0 +1,32 @@ + ======================================================================== + == NOTICE file corresponding to section 4 d of the Apache License, == + == Version 2.0, in this case for the Citrus distribution. == + ======================================================================== + + This product includes software developed by the Citrus + project (https://citrusframework.org). + + The end-user documentation included with a redistribution, if any, + must include the following acknowledgement: + + "This product includes software developed by the Citrus + Project (https://citrusframework.org)." + + Alternatively, this acknowledgement may appear in the software itself, + if and wherever such third-party acknowledgements normally appear. + + The names "Citrus" and "Citrus Framework" must not be used to endorse or + promote products derived from this software without prior written permission. + For written permission, please contact user@citrusframework.org. + + Copyright (C) 2006-2023 the original author or authors. + + Citrus is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. + + You should have received a copy of the Apache License Version 2.0 + along with Citrus. If not, see . + + dev@citrusframework.org + https://citrusframework.org diff --git a/runtime/citrus-quarkus/citrus-quarkus-it/pom.xml b/runtime/citrus-quarkus/citrus-quarkus-it/pom.xml new file mode 100644 index 0000000000..c66d9ab4f5 --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-it/pom.xml @@ -0,0 +1,113 @@ + + 4.0.0 + + + org.citrusframework + citrus-quarkus-extension + 4.0.0-SNAPSHOT + ../pom.xml + + + citrus-quarkus-it + Citrus :: Runtime :: Quarkus Integration Tests + Citrus Quarkus Integration Test + + + + + io.quarkus.platform + quarkus-bom + ${quarkus.platform.version} + pom + import + + + + + + + + io.quarkus + quarkus-arc + + + + + io.quarkus + quarkus-junit5 + test + + + org.junit.jupiter + junit-jupiter + test + + + org.citrusframework + citrus-quarkus + ${project.version} + test + + + + + + + io.quarkus.platform + quarkus-maven-plugin + ${quarkus.platform.version} + true + + + + build + generate-code + generate-code-tests + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven.compiler.version} + + + -parameters + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven.surefire.plugin.version} + + + org.jboss.logmanager.LogManager + ${maven.home} + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${maven.nexus-staging.plugin.version} + + true + + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven.deploy.plugin.version} + + true + + + + + + diff --git a/runtime/citrus-quarkus/citrus-quarkus-it/src/main/java/org/citrusframework/quarkus/app/DemoApplication.java b/runtime/citrus-quarkus/citrus-quarkus-it/src/main/java/org/citrusframework/quarkus/app/DemoApplication.java new file mode 100644 index 0000000000..fc1ad583ee --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-it/src/main/java/org/citrusframework/quarkus/app/DemoApplication.java @@ -0,0 +1,34 @@ +/* + * 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.citrusframework.quarkus.app; + +import io.quarkus.runtime.StartupEvent; +import jakarta.enterprise.context.ApplicationScoped; +import jakarta.enterprise.event.Observes; +import org.jboss.logging.Logger; + +@ApplicationScoped +public class DemoApplication { + + private static final Logger logger = Logger.getLogger(DemoApplication.class); + + void onStart(@Observes StartupEvent ev) { + logger.info("Demo application started!"); + } + +} diff --git a/runtime/citrus-quarkus/citrus-quarkus-it/src/main/resources/META-INF/LICENSE.txt b/runtime/citrus-quarkus/citrus-quarkus-it/src/main/resources/META-INF/LICENSE.txt new file mode 100644 index 0000000000..0dfbfdbe76 --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-it/src/main/resources/META-INF/LICENSE.txt @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2006-2023 the original author or authors. + + Licensed 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. diff --git a/runtime/citrus-quarkus/citrus-quarkus-it/src/main/resources/META-INF/NOTICE.txt b/runtime/citrus-quarkus/citrus-quarkus-it/src/main/resources/META-INF/NOTICE.txt new file mode 100644 index 0000000000..ad3886b5ab --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-it/src/main/resources/META-INF/NOTICE.txt @@ -0,0 +1,32 @@ + ======================================================================== + == NOTICE file corresponding to section 4 d of the Apache License, == + == Version 2.0, in this case for the Citrus distribution. == + ======================================================================== + + This product includes software developed by the Citrus + project (https://citrusframework.org). + + The end-user documentation included with a redistribution, if any, + must include the following acknowledgement: + + "This product includes software developed by the Citrus + Project (https://citrusframework.org)." + + Alternatively, this acknowledgement may appear in the software itself, + if and wherever such third-party acknowledgements normally appear. + + The names "Citrus" and "Citrus Framework" must not be used to endorse or + promote products derived from this software without prior written permission. + For written permission, please contact user@citrusframework.org. + + Copyright (C) 2006-2023 the original author or authors. + + Citrus is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. + + You should have received a copy of the Apache License Version 2.0 + along with Citrus. If not, see . + + dev@citrusframework.org + https://citrusframework.org diff --git a/runtime/citrus-quarkus/citrus-quarkus-it/src/main/resources/application.properties b/runtime/citrus-quarkus/citrus-quarkus-it/src/main/resources/application.properties new file mode 100644 index 0000000000..b084356b7d --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-it/src/main/resources/application.properties @@ -0,0 +1 @@ +quarkus.log.level=DEBUG diff --git a/runtime/citrus-quarkus/citrus-quarkus-it/src/test/java/org/citrusframework/quarkus/app/DemoApplicationTest.java b/runtime/citrus-quarkus/citrus-quarkus-it/src/test/java/org/citrusframework/quarkus/app/DemoApplicationTest.java new file mode 100644 index 0000000000..dee936e7d9 --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-it/src/test/java/org/citrusframework/quarkus/app/DemoApplicationTest.java @@ -0,0 +1,95 @@ +/* + * Copyright 2023 the original author or authors. + * + * 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.citrusframework.quarkus.app; + +import io.quarkus.test.junit.QuarkusTest; +import org.citrusframework.Citrus; +import org.citrusframework.TestCaseRunner; +import org.citrusframework.annotations.CitrusEndpoint; +import org.citrusframework.annotations.CitrusFramework; +import org.citrusframework.annotations.CitrusResource; +import org.citrusframework.context.TestContext; +import org.citrusframework.endpoint.direct.DirectEndpoint; +import org.citrusframework.endpoint.direct.annotation.DirectEndpointConfig; +import org.citrusframework.message.DefaultMessageQueue; +import org.citrusframework.message.MessageQueue; +import org.citrusframework.quarkus.CitrusSupport; +import org.citrusframework.quarkus.app.validation.TextEqualsMessageValidator; +import org.citrusframework.spi.BindToRegistry; +import org.citrusframework.validation.MessageValidator; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; + +import static org.citrusframework.actions.CreateVariablesAction.Builder.createVariables; +import static org.citrusframework.actions.ReceiveMessageAction.Builder.receive; +import static org.citrusframework.actions.SendMessageAction.Builder.send; + +@QuarkusTest +@CitrusSupport +public class DemoApplicationTest { + + @CitrusFramework + private Citrus citrus; + + @BindToRegistry + private final MessageQueue messages = new DefaultMessageQueue("messages"); + + @CitrusEndpoint + @DirectEndpointConfig( + queue = "messages" + ) + private DirectEndpoint messageEndpoint; + + @CitrusResource + private TestCaseRunner t; + + @BindToRegistry + private final TextEqualsMessageValidator textEqualsMessageValidator = new TextEqualsMessageValidator(); + + @CitrusResource + private TestContext context; + + @Test + void shouldInjectCitrusResources() { + Assertions.assertNotNull(citrus); + Assertions.assertNotNull(context); + Assertions.assertNotNull(t); + Assertions.assertNotNull(messageEndpoint); + Assertions.assertEquals(context.getReferenceResolver().resolve("textEqualsMessageValidator", MessageValidator.class), textEqualsMessageValidator); + + t.given( + createVariables().variable("text", "Citrus rocks!") + ); + + t.when( + send() + .endpoint(messageEndpoint) + .message() + .body("${text}") + ); + + t.when( + receive() + .endpoint(messageEndpoint) + .message() + .body("${text}") + ); + } +} diff --git a/runtime/citrus-quarkus/citrus-quarkus-it/src/test/java/org/citrusframework/quarkus/app/validation/TextEqualsMessageValidator.java b/runtime/citrus-quarkus/citrus-quarkus-it/src/test/java/org/citrusframework/quarkus/app/validation/TextEqualsMessageValidator.java new file mode 100644 index 0000000000..a8c1e1b226 --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-it/src/test/java/org/citrusframework/quarkus/app/validation/TextEqualsMessageValidator.java @@ -0,0 +1,85 @@ +/* + * Copyright 2022 the original author or authors. + * + * 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.citrusframework.quarkus.app.validation; + +import org.citrusframework.context.TestContext; +import org.citrusframework.message.Message; +import org.citrusframework.util.TestUtils; +import org.citrusframework.validation.DefaultMessageValidator; +import org.citrusframework.validation.context.ValidationContext; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.testng.Assert; + +/** + * Basic message validator performs String equals on received message payloads. We add this validator in order to have a + * matching message validation strategy for integration tests in this module. + * @author Christoph Deppisch + */ +public class TextEqualsMessageValidator extends DefaultMessageValidator { + + private static final Logger logger = LoggerFactory.getLogger(TextEqualsMessageValidator.class); + + private boolean normalizeLineEndings = false; + private boolean trim = false; + + @Override + public void validateMessage(Message receivedMessage, Message controlMessage, TestContext context, ValidationContext validationContext) { + if (controlMessage == null || controlMessage.getPayload() == null || controlMessage.getPayload(String.class).isEmpty()) { + logger.debug("Skip message payload validation as no control message was defined"); + return; + } + + logger.debug("Start text equals validation ..."); + + String controlPayload = controlMessage.getPayload(String.class); + String receivedPayload = receivedMessage.getPayload(String.class); + + if (trim) { + controlPayload = controlPayload.trim(); + receivedPayload = receivedPayload.trim(); + } + + if (normalizeLineEndings) { + controlPayload = TestUtils.normalizeLineEndings(controlPayload); + receivedPayload = TestUtils.normalizeLineEndings(receivedPayload); + } + + Assert.assertEquals(receivedPayload, controlPayload, "Validation failed - " + + "expected message contents not equal!"); + + logger.info("Text validation successful: All values OK"); + } + + @Override + public boolean supportsMessageType(String messageType, Message message) { + return true; + } + + public TextEqualsMessageValidator normalizeLineEndings() { + this.normalizeLineEndings = true; + return this; + } + + public TextEqualsMessageValidator enableTrim() { + this.trim = true; + return this; + } +} diff --git a/runtime/citrus-quarkus/citrus-quarkus-runtime/pom.xml b/runtime/citrus-quarkus/citrus-quarkus-runtime/pom.xml new file mode 100644 index 0000000000..7796222395 --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-runtime/pom.xml @@ -0,0 +1,68 @@ + + 4.0.0 + + + org.citrusframework + citrus-quarkus-extension + 4.0.0-SNAPSHOT + ../pom.xml + + + citrus-quarkus + Citrus :: Runtime :: Quarkus Runtime + Citrus Quarkus Runtime + + + + org.citrusframework + citrus-base + ${project.version} + + + + io.quarkus + quarkus-arc + + + io.quarkus + quarkus-test-common + + + + + + + io.quarkus + quarkus-extension-maven-plugin + ${quarkus.platform.version} + + + compile + + extension-descriptor + + + true + ${project.groupId}:${project.artifactId}-deployment:${project.version} + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven.compiler.version} + + + + io.quarkus + quarkus-extension-processor + ${quarkus.platform.version} + + + + + + + diff --git a/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/java/org/citrusframework/quarkus/CitrusSupport.java b/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/java/org/citrusframework/quarkus/CitrusSupport.java new file mode 100644 index 0000000000..3e33c54c95 --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/java/org/citrusframework/quarkus/CitrusSupport.java @@ -0,0 +1,40 @@ +/* + * Copyright 2023 the original author or authors. + * + * 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.citrusframework.quarkus; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +import io.quarkus.test.common.QuarkusTestResource; + +/** + * Special Citrus annotation that enables Citrus support on QuarkusTest framework. + * + * @author Christoph Deppisch + */ +@QuarkusTestResource(CitrusTestResource.class) +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.TYPE) +public @interface CitrusSupport { + + +} diff --git a/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/java/org/citrusframework/quarkus/CitrusTestResource.java b/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/java/org/citrusframework/quarkus/CitrusTestResource.java new file mode 100644 index 0000000000..934781d3ad --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/java/org/citrusframework/quarkus/CitrusTestResource.java @@ -0,0 +1,98 @@ +/* + * Copyright 2023 the original author or authors. + * + * 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.citrusframework.quarkus; + +import java.util.Collections; +import java.util.Map; + +import io.quarkus.test.common.QuarkusTestResourceLifecycleManager; +import org.citrusframework.Citrus; +import org.citrusframework.CitrusInstanceManager; +import org.citrusframework.DefaultTestCaseRunner; +import org.citrusframework.GherkinTestActionRunner; +import org.citrusframework.TestActionRunner; +import org.citrusframework.TestCaseRunner; +import org.citrusframework.annotations.CitrusAnnotations; +import org.citrusframework.annotations.CitrusFramework; +import org.citrusframework.annotations.CitrusResource; +import org.citrusframework.context.TestContext; + +/** + * Quarkus test resource that takes care of injecting Citrus resources + * such as TestContext, TestCaseRunner, CitrusEndpoints and many more. + * + * @author Christoph Deppisch + */ +public class CitrusTestResource implements QuarkusTestResourceLifecycleManager { + + private Citrus citrus; + + private TestCaseRunner runner; + + private TestContext context; + + @Override + public Map start() { + if (citrus == null) { + citrus = CitrusInstanceManager.newInstance(); + citrus.beforeSuite("citrus-quarkus"); + } + + return Collections.emptyMap(); + } + + @Override + public void stop() { + if (runner != null) { + runner.stop(); + } + + citrus.afterSuite("citrus-quarkus"); + + runner = null; + context = null; + } + + @Override + public void inject(Object testInstance) { + if (runner != null) { + runner.stop(); + } + + context = citrus.getCitrusContext().createTestContext(); + runner = new DefaultTestCaseRunner(context); + runner.testClass(testInstance.getClass()); + runner.packageName(testInstance.getClass().getPackageName()); + runner.name(testInstance.getClass().getSimpleName()); + runner.start(); + + CitrusAnnotations.parseConfiguration(testInstance, citrus.getCitrusContext()); + CitrusAnnotations.injectEndpoints(testInstance, context); + } + + @Override + public void inject(TestInjector testInjector) { + testInjector.injectIntoFields(citrus, new TestInjector.AnnotatedAndMatchesType(CitrusFramework.class, Citrus.class)); + testInjector.injectIntoFields(runner, new TestInjector.AnnotatedAndMatchesType(CitrusResource.class, TestActionRunner.class)); + testInjector.injectIntoFields(runner, new TestInjector.AnnotatedAndMatchesType(CitrusResource.class, GherkinTestActionRunner.class)); + testInjector.injectIntoFields(runner, new TestInjector.AnnotatedAndMatchesType(CitrusResource.class, TestCaseRunner.class)); + testInjector.injectIntoFields(context, new TestInjector.AnnotatedAndMatchesType(CitrusResource.class, TestContext.class)); + } +} diff --git a/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/resources/META-INF/LICENSE.txt b/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/resources/META-INF/LICENSE.txt new file mode 100644 index 0000000000..0dfbfdbe76 --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/resources/META-INF/LICENSE.txt @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2006-2023 the original author or authors. + + Licensed 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. diff --git a/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/resources/META-INF/NOTICE.txt b/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/resources/META-INF/NOTICE.txt new file mode 100644 index 0000000000..ad3886b5ab --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/resources/META-INF/NOTICE.txt @@ -0,0 +1,32 @@ + ======================================================================== + == NOTICE file corresponding to section 4 d of the Apache License, == + == Version 2.0, in this case for the Citrus distribution. == + ======================================================================== + + This product includes software developed by the Citrus + project (https://citrusframework.org). + + The end-user documentation included with a redistribution, if any, + must include the following acknowledgement: + + "This product includes software developed by the Citrus + Project (https://citrusframework.org)." + + Alternatively, this acknowledgement may appear in the software itself, + if and wherever such third-party acknowledgements normally appear. + + The names "Citrus" and "Citrus Framework" must not be used to endorse or + promote products derived from this software without prior written permission. + For written permission, please contact user@citrusframework.org. + + Copyright (C) 2006-2023 the original author or authors. + + Citrus is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. + + You should have received a copy of the Apache License Version 2.0 + along with Citrus. If not, see . + + dev@citrusframework.org + https://citrusframework.org diff --git a/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/resources/quarkus-extension.yaml b/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/resources/quarkus-extension.yaml new file mode 100644 index 0000000000..e8dc945940 --- /dev/null +++ b/runtime/citrus-quarkus/citrus-quarkus-runtime/src/main/resources/quarkus-extension.yaml @@ -0,0 +1,8 @@ +name: Citrus +description: Add Citrus support to Quarkus tests +metadata: + keywords: + - citrus + - test + - testing + status: "experimental" diff --git a/runtime/citrus-quarkus/pom.xml b/runtime/citrus-quarkus/pom.xml new file mode 100644 index 0000000000..961031466b --- /dev/null +++ b/runtime/citrus-quarkus/pom.xml @@ -0,0 +1,64 @@ + + 4.0.0 + + + org.citrusframework + citrus-runtime + 4.0.0-SNAPSHOT + ../pom.xml + + + citrus-quarkus-extension + Citrus :: Runtime :: Quarkus Extension + Citrus Quarkus Extension + pom + + + 3.3.2 + + + + + + io.quarkus + quarkus-arc + ${quarkus.platform.version} + + + io.quarkus + quarkus-arc-deployment + ${quarkus.platform.version} + + + + io.quarkus + quarkus-test-common + ${quarkus.platform.version} + + + + + + + + + io.quarkus + quarkus-maven-plugin + ${quarkus.platform.version} + + + io.quarkus + quarkus-extension-maven-plugin + ${quarkus.platform.version} + + + + + + + citrus-quarkus-deployment + citrus-quarkus-runtime + citrus-quarkus-it + + diff --git a/runtime/pom.xml b/runtime/pom.xml index 4f368d860a..c42c7629a9 100644 --- a/runtime/pom.xml +++ b/runtime/pom.xml @@ -18,11 +18,12 @@ citrus-junit citrus-junit5 citrus-testng - citrus-cucumber + citrus-quarkus + citrus-main citrus-xml citrus-yaml citrus-groovy - citrus-main + citrus-cucumber