quarkus-qe / quarkus-test-suite

16 stars 34 forks source link

Add QUARKUS-4612 workaround to nosql/infinispan #2094

Closed mocenas closed 1 month ago

mocenas commented 1 month ago

Summary

https://issues.redhat.com/browse/QUARKUS-4612 causes nosql/infinispan module to fail on FIPS and mandrel. Add workaround for that

Please select the relevant options.

Checklist:

mocenas commented 1 month ago

You probably also need to add quarkus.infinispan-client.sasl-mechanism=DIGEST-SHA-512 into nosql-db/infinispan/src/test/resources/infinispan-it.properties. Please double check that, especially when running on fips and with -Dquarkus.native.builder-image=registry-proxy.engineering.redhat.com/rh-osbs/quarkus-mandrel-for-jdk-21-rhel8:23.1 option

I checked that on FIPS + this image and adding quarkus.infinispan-client.sasl-mechanism=DIGEST-SHA-512 is not necessary - to be more precise, tests pass on FIPS system even without this.

michalvavrik commented 1 month ago

I checked that on FIPS + this image and adding quarkus.infinispan-client.sasl-mechanism=DIGEST-SHA-512 is not necessary - to be more precise, tests pass on FIPS system even without this.

but it's still something that should be done

mocenas commented 1 month ago

I checked that on FIPS + this image and adding quarkus.infinispan-client.sasl-mechanism=DIGEST-SHA-512 is not necessary - to be more precise, tests pass on FIPS system even without this.

but it's still something that should be done

OK, I've checked it works on FIPS machine and added it to PR.