RussellSpitzer commented on code in PR #18:
URL: https://github.com/apache/polaris-tools/pull/18#discussion_r2152659784


##########
apprunner/README.md:
##########
@@ -0,0 +1,365 @@
+<!--
+  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.
+-->
+
+# Polaris Apprunner Gradle and Maven Plugins
+
+Gradle and Maven plugins to run a Polaris process and "properly" terminate it 
for integration testing.
+
+## Java integration tests
+
+Tests that run via a Gradle `Test` type task, "decorated" with the Polaris 
Apprunner plugin, have access to
+four system properties. Integration tests using the Maven plugin have access 
to the same system properties.
+The names of the system properties can be changed, if needed. See the [Gradle 
Kotlin DSL](#kotlin-dsl--all-in-one)
+and [Maven](#maven) sections below for a summary of the available options.
+
+* `quarkus.http.test-port` the port on which the Quarkus server listens for 
application HTTP requests
+* `quarkus.management.test-port` the URL on which the Quarkus server listens 
for management HTTP requests, this
+  URL is the one emitted by Quarkus during startup and will contain `0.0.0.0` 
as the host.
+* `quarkus.http.test-url` the port on which the Quarkus server listens for 
application HTTP requests
+* `quarkus.management.test-url` the URL on which the Quarkus server listens 
for management HTTP requests, this
+  URL is the one emitted by Quarkus during startup and will contain `0.0.0.0` 
as the host.
+
+The preferred way to get the URI/URL for application HTTP requests is to get 
the `quarkus.http.test-port` system
+property and construct the URI against `127.0.0.1` (or `::1` if you prefer).
+
+```java
+public class ITWorksWithPolaris {
+    static final URI POLARIS_SERVER_URI =
+            URI.create(
+                    String.format(
+                            "http://127.0.0.1:%s/";,
+                            requireNonNull(
+                                    
System.getProperty("quarkus.http.test-port"),
+                                    "Required system property 
quarkus.http.test-port is not set")));
+
+    @Test
+    public void pingPolaris() {
+        // Use the POLARIS_SERVER_URI in your tests ...
+    }
+}
+```
+
+## Gradle
+
+The Polaris Apprunner Gradle ensures that the Polaris Quarkus Server is up and 
running if and when the configured
+test tasks run. It also ensures, as long as you do not forcibly kill Gradle 
processes, that the Polaris Quarkus Server
+is shutdown after the configured test task has finished. Each configured test 
task gets its "own" Polaris Quarkus
+Server started up.
+
+It is possible to configure multiple tasks/test-suites within a Gradle project 
to run with a Polaris Quarkus Server.
+Since tasks of the same Gradle project do not run concurrently (as of today), 
there are should be no conflicts, except
+potentially the working directory.
+
+### Using the plugin in projects in the polaris-tools repository
+
+1. include the apprunner build in your project by adding the following snippet 
at the beginning of your
+   `settings.gradle.kts` file:
+    ```kotlin
+    includeBuild("../apprunner") { name = "polaris-apprunner" }
+    ```
+
+### Kotlin DSL / step by step
+
+`build.gradle.kts`
+
+1. add the plugin

Review Comment:
   ```suggestion
   1. Add the plugin
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to