Author: markt Date: Fri Aug 1 10:51:24 2014 New Revision: 1615069 URL: http://svn.apache.org/r1615069 Log: More alias checks for the parser
Modified: tomcat/trunk/test/org/apache/tomcat/util/net/jsse/openssl/TestOpenSSLCipherConfigurationParser.java Modified: tomcat/trunk/test/org/apache/tomcat/util/net/jsse/openssl/TestOpenSSLCipherConfigurationParser.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/util/net/jsse/openssl/TestOpenSSLCipherConfigurationParser.java?rev=1615069&r1=1615068&r2=1615069&view=diff ============================================================================== --- tomcat/trunk/test/org/apache/tomcat/util/net/jsse/openssl/TestOpenSSLCipherConfigurationParser.java (original) +++ tomcat/trunk/test/org/apache/tomcat/util/net/jsse/openssl/TestOpenSSLCipherConfigurationParser.java Fri Aug 1 10:51:24 2014 @@ -198,6 +198,36 @@ public class TestOpenSSLCipherConfigurat } + @Test + public void testaDSS() throws Exception { + testSpecification("aDSS"); + } + + + @Test + public void testaDH() throws Exception { + testSpecification("aDH"); + } + + + @Test + public void testaECDH() throws Exception { + testSpecification("aECDH"); + } + + + @Test + public void testaECDSA() throws Exception { + testSpecification("aECDSA"); + } + + + @Test + public void testECDSA() throws Exception { + testSpecification("ECDSA"); + } + + private void testSpecification(String specification) throws Exception { // Filter out cipher suites that OpenSSL does not implement String parserSpecification = "" + specification; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org