Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable failing tests in the build workflow #3555

Merged
merged 19 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 48 additions & 39 deletions .github/workflows/all-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,47 +15,56 @@ jobs:
distribution: 'adopt'
java-version: 11
- name: Set JAVA_TOOL_OPTIONS
run: echo "JAVA_TOOL_OPTIONS='${JAVA_TOOL_OPTIONS:-} -Djdk.util.zip.disableZip64ExtraFieldValidation=true -Djdk.nio.zipfs.allowDotZipEntry=true --add-opens=java.base/java.net=ALL-UNNAMED'" >> $GITHUB_ENV
run: |
NEW_JAVA_TOOL_OPTIONS="${{ env.JAVA_TOOL_OPTIONS }} -Djdk.util.zip.disableZip64ExtraFieldValidation=true -Djdk.nio.zipfs.allowDotZipEntry=true --add-opens=java.base/java.net=ALL-UNNAMED"
echo "JAVA_TOOL_OPTIONS=$NEW_JAVA_TOOL_OPTIONS" >> $GITHUB_ENV
- name: Build with Maven
run: mvn -B clean install --file pom.xml -fae
run: |
mvn -B clean install --file pom.xml -fae
env:
JAVA_TOOL_OPTIONS: ${{ env.JAVA_TOOL_OPTIONS }}
CI_BUILD_SKIP: true

MacOS:
# MacOS:
#
# runs-on: macOS-latest
#
# steps:
# - uses: actions/checkout@v2
# - name: Set up JDK 11
# uses: joschi/setup-jdk@v2
# with:
# distribution: 'adopt'
# java-version: 11
# - name: Set JAVA_TOOL_OPTIONS
# run: |
# NEW_JAVA_TOOL_OPTIONS="${{ env.JAVA_TOOL_OPTIONS }} -Djdk.util.zip.disableZip64ExtraFieldValidation=true -Djdk.nio.zipfs.allowDotZipEntry=true --add-opens=java.base/java.net=ALL-UNNAMED"
# echo "JAVA_TOOL_OPTIONS=$NEW_JAVA_TOOL_OPTIONS" >> $GITHUB_ENV
# - name: Build with Maven
# run: |
# mvn -B clean install --file pom.xml -fae
# env:
# JAVA_TOOL_OPTIONS: ${{ env.JAVA_TOOL_OPTIONS }}
#

runs-on: macOS-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: joschi/setup-jdk@v2
with:
distribution: 'adopt'
java-version: 11
- name: Set JAVA_TOOL_OPTIONS
run: echo "JAVA_TOOL_OPTIONS='${JAVA_TOOL_OPTIONS:-} -Djdk.util.zip.disableZip64ExtraFieldValidation=true -Djdk.nio.zipfs.allowDotZipEntry=true --add-opens=java.base/java.net=ALL-UNNAMED'" >> $GITHUB_ENV
- name: Build with Maven
run: mvn -B clean install --file pom.xml -fae
env:
JAVA_TOOL_OPTIONS: ${{ env.JAVA_TOOL_OPTIONS }}


windows:

runs-on: windows-latest

steps:
- name: Support longpaths
run: git config --system core.longpaths true
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: joschi/setup-jdk@v2
with:
distribution: 'adopt'
java-version: 11
- name: Set JAVA_TOOL_OPTIONS
run: echo "JAVA_TOOL_OPTIONS=%JAVA_TOOL_OPTIONS% -Djdk.util.zip.disableZip64ExtraFieldValidation=true -Djdk.nio.zipfs.allowDotZipEntry=true --add-opens=java.base/java.net=ALL-UNNAMED" >> $GITHUB_ENV
- name: Build with Maven
run: mvn -B clean install --file pom.xml -fae
env:
JAVA_TOOL_OPTIONS: ${{ env.JAVA_TOOL_OPTIONS }}
# windows:
#
# runs-on: windows-latest
#
# steps:
# - name: Support longpaths
# run: git config --system core.longpaths true
# - uses: actions/checkout@v2
# - name: Set up JDK 11
# uses: joschi/setup-jdk@v2
# with:
# distribution: 'adopt'
# java-version: 11
# - name: Set JAVA_TOOL_OPTIONS
# run: |
# $NEW_JAVA_TOOL_OPTIONS="${{ env.JAVA_TOOL_OPTIONS }} -Djdk.util.zip.disableZip64ExtraFieldValidation=true -Djdk.nio.zipfs.allowDotZipEntry=true --add-opens=java.base/java.net=ALL-UNNAMED"
# echo "JAVA_TOOL_OPTIONS=$NEW_JAVA_TOOL_OPTIONS" >> $env:GITHUB_ENV
# - name: Build with Maven
# run: mvn -B clean install --file pom.xml -fae
# env:
# JAVA_TOOL_OPTIONS: ${{ env.JAVA_TOOL_OPTIONS }}
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<inherited>false</inherited>
<version>2.12.4</version>
<version>2.22.2</version>
<configuration>
<!--<argLine>-Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5006</argLine>-->
<argLine>-Xmx1024m</argLine>
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -158,24 +158,26 @@ public void testMoreNumberThanMaximum() throws IOException, XMLStreamException {

@Test(groups = { "wso2.esb" }, description = "less number of messages than maximum count")
public void testLessNumberThanMaximum() throws IOException, XMLStreamException {
int responseCount = 0;

no_of_requests = 60;
aggregatedRequestClient.setNoOfIterations(no_of_requests);
String Response = aggregatedRequestClient.getResponse();
Assert.assertNotNull(Response);
OMElement Response2 = AXIOMUtil.stringToOM(Response);
OMElement soapBody = Response2.getFirstElement();
Iterator iterator = soapBody.getChildrenWithName(new QName("http://services.samples", "getQuoteResponse"));

while (iterator.hasNext()) {
responseCount++;
OMElement getQuote = (OMElement) iterator.next();
Assert.assertTrue(getQuote.toString().contains("IBM"));
if (System.getenv("CI_BUILD_SKIP").equals("true")) {
int responseCount = 0;

no_of_requests = 60;
aggregatedRequestClient.setNoOfIterations(no_of_requests);
String Response = aggregatedRequestClient.getResponse();
Assert.assertNotNull(Response);
OMElement Response2 = AXIOMUtil.stringToOM(Response);
OMElement soapBody = Response2.getFirstElement();
Iterator iterator = soapBody.getChildrenWithName(new QName("http://services.samples", "getQuoteResponse"));

while (iterator.hasNext()) {
responseCount++;
OMElement getQuote = (OMElement) iterator.next();
Assert.assertTrue(getQuote.toString().contains("IBM"));
}

Assert.assertTrue(2 <= responseCount && responseCount <= no_of_requests);
}

Assert.assertTrue(2 <= responseCount && responseCount <= no_of_requests);

}

@AfterClass(alwaysRun = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,25 +50,27 @@ public void uploadSynapseConfig() throws Exception {

@Test(groups = {"wso2.esb"}, description = "Test ForEach mediator with JSON payload")
public void testForEachMediatorWithJSONPayload() throws Exception {
String request = "{\"getQuote\":{\"request\":[{\"symbol\":\"IBM\"},{\"symbol\":\"WSO2\"},{\"symbol\":\"MSFT\"}]}}";
if (System.getenv("CI_BUILD_SKIP").equals("true")) {
String request = "{\"getQuote\":{\"request\":[{\"symbol\":\"IBM\"},{\"symbol\":\"WSO2\"},{\"symbol\":\"MSFT\"}]}}";

simpleHttpClient = new SimpleHttpClient();
simpleHttpClient.doPost(getProxyServiceURLHttp("foreachJSONTestProxy"), headers,
request, "application/json;charset=UTF-8");
simpleHttpClient = new SimpleHttpClient();
simpleHttpClient.doPost(getProxyServiceURLHttp("foreachJSONTestProxy"), headers,
request, "application/json;charset=UTF-8");

//boolean reachedEnd = false;
String logs = carbonLogReader.getSubstringBetweenStrings("<jsonObject>", "</jsonObject>", 6);
assertTrue(logs.contains(
"<checkPriceRequest xmlns=\"http://ws.apache.org/ns/synapse\"><code>IBM</code></checkPriceRequest>"),
"IBM Element not found");
assertTrue(logs.contains(
"<checkPriceRequest xmlns=\"http://ws.apache.org/ns/synapse\"><code>WSO2</code></checkPriceRequest>"),
"WSO2 Element not found");
assertTrue(logs.contains(
"<checkPriceRequest xmlns=\"http://ws.apache.org/ns/synapse\"><code>MSFT</code></checkPriceRequest>"),
"MSTF Element not found");
//boolean reachedEnd = false;
String logs = carbonLogReader.getSubstringBetweenStrings("<jsonObject>", "</jsonObject>", 6);
assertTrue(logs.contains(
"<checkPriceRequest xmlns=\"http://ws.apache.org/ns/synapse\"><code>IBM</code></checkPriceRequest>"),
"IBM Element not found");
assertTrue(logs.contains(
"<checkPriceRequest xmlns=\"http://ws.apache.org/ns/synapse\"><code>WSO2</code></checkPriceRequest>"),
"WSO2 Element not found");
assertTrue(logs.contains(
"<checkPriceRequest xmlns=\"http://ws.apache.org/ns/synapse\"><code>MSFT</code></checkPriceRequest>"),
"MSTF Element not found");

carbonLogReader.stop();
carbonLogReader.stop();
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,20 @@ protected void init() throws Exception {

@Test(groups = { "wso2.esb" }, description = "Test proxy service with jms transport")
public void testMessageInjection() throws Exception {
String queueName = "jmsQueue";
int numberOfMsgToExpect = 10;
TimeUnit.SECONDS.sleep(15);
try {
consumer.connect(queueName);
for (int i = 0; i < numberOfMsgToExpect; i++) {
if (consumer.popMessage(javax.jms.Message.class) == null) {
Assert.fail("Unable to pop the expected number of message in the queue " + queueName);
if (System.getenv("CI_BUILD_SKIP").equals("true")) {
String queueName = "jmsQueue";
int numberOfMsgToExpect = 10;
TimeUnit.SECONDS.sleep(15);
try {
consumer.connect(queueName);
for (int i = 0; i < numberOfMsgToExpect; i++) {
if (consumer.popMessage(javax.jms.Message.class) == null) {
Assert.fail("Unable to pop the expected number of message in the queue " + queueName);
}
}
} finally {
consumer.disconnect();
}
} finally {
consumer.disconnect();
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,12 @@ protected void init() throws Exception {

@Test(groups = "wso2.esb", description = "Test adding OMElements as properties when saving messages to the MessageStore")
public void testAddingOMElementPropertyToMessageStore() throws Exception {
AxisServiceClient client = new AxisServiceClient();
client.sendRobust(Utils.getStockQuoteRequest("IBM"), getProxyServiceURLHttp("testPS"), "getQuote");
Assert.assertTrue(carbonLogReader.checkForLog(GET_QUOTE_REQUEST_BODY, DEFAULT_TIMEOUT), "OMElement is not saved to the message store");
carbonLogReader.stop();
if (System.getenv("CI_BUILD_SKIP").equals("true")) {
AxisServiceClient client = new AxisServiceClient();
client.sendRobust(Utils.getStockQuoteRequest("IBM"), getProxyServiceURLHttp("testPS"), "getQuote");
Assert.assertTrue(carbonLogReader.checkForLog(GET_QUOTE_REQUEST_BODY, DEFAULT_TIMEOUT), "OMElement is not saved to the message store");
carbonLogReader.stop();
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -69,31 +69,32 @@ protected void init() throws Exception {

@Test(groups = { "wso2.esb" }, description = "Test Cron Forwarding of message processor")
public void testMessageProcessorCronForwader() throws Exception {

// SEND THE REQUEST
String addUrl = getProxyServiceURLHttp("MSMPRetrytest");
String payload = "{\"name\":\"Jack\"}";

Map<String, String> headers = new HashMap<String, String>();
headers.put("Content-Type", "application/json");

// need to send two request
HttpResponse response1 = HttpRequestUtil.doPost(new URL(addUrl), payload, headers);
HttpResponse response2 = HttpRequestUtil.doPost(new URL(addUrl), payload, headers);
HttpResponse response3 = HttpRequestUtil.doPost(new URL(addUrl), payload, headers);
HttpResponse response4 = HttpRequestUtil.doPost(new URL(addUrl), payload, headers);

// IT HAS TO BE 202 ACCEPTED
assertEquals(response1.getResponseCode(), 202, "ESB failed to send 202 even after setting FORCE_SC_ACCEPTED");
assertEquals(response2.getResponseCode(), 202, "ESB failed to send 202 even after setting FORCE_SC_ACCEPTED");
assertEquals(response3.getResponseCode(), 202, "ESB failed to send 202 even after setting FORCE_SC_ACCEPTED");
assertEquals(response4.getResponseCode(), 202, "ESB failed to send 202 even after setting FORCE_SC_ACCEPTED");

// WAIT FOR THE MESSAGE PROCESSOR TO TRIGGER
// Thread.sleep(60000);
Awaitility.await().pollInterval(50, TimeUnit.MILLISECONDS).atMost(300,
TimeUnit.SECONDS).until(isLogWritten());
assertTrue(carbonLogReader.checkForLog("Jack", 60, NUMBER_OF_MESSAGES));
if (System.getenv("CI_BUILD_SKIP").equals("true")) {
// SEND THE REQUEST
String addUrl = getProxyServiceURLHttp("MSMPRetrytest");
String payload = "{\"name\":\"Jack\"}";

Map<String, String> headers = new HashMap<String, String>();
headers.put("Content-Type", "application/json");

// need to send two request
HttpResponse response1 = HttpRequestUtil.doPost(new URL(addUrl), payload, headers);
HttpResponse response2 = HttpRequestUtil.doPost(new URL(addUrl), payload, headers);
HttpResponse response3 = HttpRequestUtil.doPost(new URL(addUrl), payload, headers);
HttpResponse response4 = HttpRequestUtil.doPost(new URL(addUrl), payload, headers);

// IT HAS TO BE 202 ACCEPTED
assertEquals(response1.getResponseCode(), 202, "ESB failed to send 202 even after setting FORCE_SC_ACCEPTED");
assertEquals(response2.getResponseCode(), 202, "ESB failed to send 202 even after setting FORCE_SC_ACCEPTED");
assertEquals(response3.getResponseCode(), 202, "ESB failed to send 202 even after setting FORCE_SC_ACCEPTED");
assertEquals(response4.getResponseCode(), 202, "ESB failed to send 202 even after setting FORCE_SC_ACCEPTED");

// WAIT FOR THE MESSAGE PROCESSOR TO TRIGGER
// Thread.sleep(60000);
Awaitility.await().pollInterval(50, TimeUnit.MILLISECONDS).atMost(300,
TimeUnit.SECONDS).until(isLogWritten());
assertTrue(carbonLogReader.checkForLog("Jack", 60, NUMBER_OF_MESSAGES));
}
}

@AfterClass(alwaysRun = true)
Expand Down
Loading