-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WFLY-18492] messaging-clustering-singleton Quickstart Common Enhance…
…ments CY2023Q3
- Loading branch information
Showing
11 changed files
with
366 additions
and
80 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
.github/workflows/quickstart_messaging-clustering-singleton_ci.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: WildFly messaging-clustering-singleton Quickstart CI | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
paths: | ||
- 'messaging-clustering-singleton/**' | ||
- '.github/workflows/quickstart_ci.yml' | ||
jobs: | ||
call-quickstart_ci: | ||
uses: ./.github/workflows/quickstart_ci.yml | ||
with: | ||
QUICKSTART_PATH: messaging-clustering-singleton | ||
TEST_PROVISIONED_SERVER: true |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
build: | ||
uri: https://github.com/wildfly/quickstart.git | ||
ref: main | ||
contextDir: messaging-clustering-singleton | ||
deploy: | ||
replicas: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# -- Restart the node1 server | ||
/host=master/server-config=quickstart-messagingcluster-node1:restart(blocking=true) | ||
/host=primary/server=quickstart-messagingcluster-node1:restart(blocking=true) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# -- Restart the node2 server | ||
/host=master/server-config=quickstart-messagingcluster-node2:restart(blocking=true) | ||
/host=primary/server=quickstart-messagingcluster-node2:restart(blocking=true) |
89 changes: 89 additions & 0 deletions
89
...aging-clustering-singleton/src/test/java/org/jboss/as/quickstarts/mdb/BasicRuntimeIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* | ||
* Copyright 2024 JBoss by Red Hat. | ||
* | ||
* 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. | ||
*/ | ||
package org.jboss.as.quickstarts.mdb; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.IOException; | ||
import java.net.URI; | ||
import java.net.URISyntaxException; | ||
import java.net.http.HttpClient; | ||
import java.net.http.HttpRequest; | ||
import java.net.http.HttpResponse; | ||
import java.time.Duration; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
|
||
/** | ||
* The very basic runtime integration testing. | ||
* | ||
* @author istudens | ||
*/ | ||
public class BasicRuntimeIT { | ||
|
||
private static final String DEFAULT_SERVER_HOST = "http://localhost:8080/messaging-clustering-singleton"; | ||
|
||
@Test | ||
public void testHTTPQueueEndpointIsAvailable() throws IOException, InterruptedException, URISyntaxException { | ||
String serverHost = System.getenv("SERVER_HOST"); | ||
if (serverHost == null) { | ||
serverHost = System.getProperty("server.host"); | ||
} | ||
if (serverHost == null) { | ||
serverHost = DEFAULT_SERVER_HOST; | ||
} | ||
final HttpRequest request = HttpRequest.newBuilder() | ||
.uri(new URI(serverHost + "/HelloWorldMDBServletClient")) | ||
.GET() | ||
.build(); | ||
final HttpClient client = HttpClient.newBuilder() | ||
.followRedirects(HttpClient.Redirect.ALWAYS) | ||
.connectTimeout(Duration.ofMinutes(1)) | ||
.build(); | ||
final HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString()); | ||
assertEquals(200, response.statusCode()); | ||
for (int i = 0; i < 5; i++) { | ||
String messageLine = "Message (" + i + "): This is message " + (i + 1); | ||
assertTrue(response.body().contains(messageLine), response.body() + " doesn't contain " + messageLine); | ||
} | ||
} | ||
@Test | ||
public void testHTTPTopicEndpointIsAvailable() throws IOException, InterruptedException, URISyntaxException { | ||
String serverHost = System.getenv("SERVER_HOST"); | ||
if (serverHost == null) { | ||
serverHost = System.getProperty("server.host"); | ||
} | ||
if (serverHost == null) { | ||
serverHost = DEFAULT_SERVER_HOST; | ||
} | ||
final HttpRequest request = HttpRequest.newBuilder() | ||
.uri(new URI(serverHost + "/HelloWorldMDBServletClient?topic=true")) | ||
.GET() | ||
.build(); | ||
final HttpClient client = HttpClient.newBuilder() | ||
.followRedirects(HttpClient.Redirect.ALWAYS) | ||
.connectTimeout(Duration.ofMinutes(1)) | ||
.build(); | ||
final HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString()); | ||
assertEquals(200, response.statusCode()); | ||
for (int i = 0; i < 5; i++) { | ||
String messageLine = "Message (" + i + "): This is message " + (i + 1); | ||
assertTrue(response.body().contains(messageLine), response.body() + " doesn't contain " + messageLine); | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.