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

Ensure IAST smoke tests wait for the product to be started #8312

Merged
merged 1 commit into from
Jan 30, 2025
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import java.util.concurrent.TimeoutException
abstract class AbstractIastServerSmokeTest extends AbstractServerSmokeTest {

private static final String TAG_NAME = '_dd.iast.json'
private static final String IAST_STARTED_MSG = 'IAST started'

@Shared
private final JsonSlurper jsonSlurper = new JsonSlurper()
Expand All @@ -32,6 +33,14 @@ abstract class AbstractIastServerSmokeTest extends AbstractServerSmokeTest {
return {} // force traces decoding
}

def setupSpec() {
try {
processTestLogLines { it.contains(IAST_STARTED_MSG) }
} catch (TimeoutException toe) {
throw new AssertionError("'$IAST_STARTED_MSG' not found in logs", toe)
}
}

protected static String withSystemProperty(final String config, final Object value) {
return "-Ddd.${config}=${value}"
}
Expand Down
Loading