Skip to content

Commit

Permalink
exclude telemetry tests on openliberty
Browse files Browse the repository at this point in the history
  • Loading branch information
smola committed Nov 15, 2024
1 parent 30cce1e commit a1553a1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ class SpringBootOpenLibertySmokeTest extends AbstractServerSmokeTest {
].toSet()
}

@Override
boolean testTelemetry() {
false
}

def "Test concurrent requests to Spring Boot running Open Liberty"() {
setup:
def url = "http://localhost:${httpPort}/connect"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ class SpringBootOpenLibertySmokeVulnerabilityTest extends AbstractServerSmokeTes
return {} // force traces decoding
}

@Override
boolean testTelemetry() {
false
}

private static boolean contains(String s) {
System.out.println("Checking span:" + s)
return s.contains("MD5")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ class SpringBootOpenLibertySmokeTest extends AbstractServerSmokeTest {
].toSet()
}

@Override
boolean testTelemetry() {
false
}

def "Test concurrent requests to Spring Boot running Open Liberty"() {
setup:
def url = "http://localhost:${httpPort}/connect"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ class SpringBootOpenLibertySmokeVulnerabilityTest extends AbstractServerSmokeTes
return {} // force traces decoding
}

@Override
boolean testTelemetry() {
false
}

private static boolean contains(String s) {
System.out.println("Checking span:" + s)
return s.contains("MD5")
Expand Down

0 comments on commit a1553a1

Please sign in to comment.