[jboss-jira] [JBoss JIRA] (WFCORE-5004) TlsTestCase#testReloadTrustManager fails on IBM Java 8

Ondrej Kotek (Jira) issues at jboss.org
Thu Jun 11 06:33:15 EDT 2020


Ondrej Kotek created WFCORE-5004:
------------------------------------

             Summary: TlsTestCase#testReloadTrustManager fails on IBM Java 8
                 Key: WFCORE-5004
                 URL: https://issues.redhat.com/browse/WFCORE-5004
             Project: WildFly Core
          Issue Type: Bug
          Components: Security
    Affects Versions: 13.0.0.Beta1
            Reporter: Ondrej Kotek
            Assignee: Darran Lofthouse


TlsTestCase#testReloadTrustManager fails on IBM Java 8 at [TlsTestCase.java#L439|https://github.com/wildfly/wildfly-core/blob/master/elytron/src/test/java/org/wildfly/extension/elytron/TlsTestCase.java#L439] reporting the same DN. When I try to compare using canonical names, there is a difference. Using RFC1779 or RFC2253 names is ok.

{noformat}
Assert.assertEquals(originalFoundDN.getIssuerX500Principal().getName(X500Principal.CANONICAL), ISSUER_DN.getName(X500Principal.CANONICAL));

[ERROR]   TlsTestCase.testReloadTrustManager:439 expected:<....2.840.113549.1.9.1=[#1613656c7974726f6e4077696c64666c792e6f7267],c=uk,st=elytron,cn=...> but was:<....2.840.113549.1.9.1=[elytron at wildfly.org],c=uk,st=elytron,cn=...>
{noformat}

Is it just a test issue, or can there be an impact on functionality? In case it's just a test issue, can we assert equality of names? I.e.

{noformat}
Assert.assertEquals(originalFoundDN.getIssuerX500Principal().getName(), ISSUER_DN.getName());
{noformat}

The same for [TlsTestCase.java#L465|https://github.com/wildfly/wildfly-core/blob/master/elytron/src/test/java/org/wildfly/extension/elytron/TlsTestCase.java#L465] then.



--
This message was sent by Atlassian Jira
(v7.13.8#713008)


More information about the jboss-jira mailing list