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

Fix QuarkusCliTlsCommandIT truststore config property value on Windows #2042

Merged
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 @@ -79,7 +79,7 @@ public void generateCertificate() {
.assertFileExistsStr(cmd -> cmd.getOutputLineRemainder("Key Store File:"))
.assertFileExistsStr(cmd -> cmd.getOutputLineRemainder("Trust Store File:"))
// save truststore path in application properties so that we can use it in TlsCommandTest
.addToAppProps(cmd -> TRUST_STORE_PATH + "=" + cmd.getOutputLineRemainder("Trust Store File:"))
.addToAppProps(cmd -> TRUST_STORE_PATH + "=" + addEscapes(cmd.getOutputLineRemainder("Trust Store File:")))
.assertCommandOutputContains(
"Signed Certificate generated successfully and exported into `%s-keystore.p12`".formatted(CERT_NAME))
// following properties are set by this tls command, and we want to use them TlsCommandTest as well
Expand Down