author | sundar |
Mon, 16 May 2016 14:50:43 +0530 | |
changeset 37951 | ce2744a0f1a7 |
parent 36681 | c27e554bbe5c |
child 39135 | 12b17886ae03 |
permissions | -rw-r--r-- |
30904 | 1 |
/* |
36681
c27e554bbe5c
8152798: Mark WeakCipherSuite.java as intermittently failing
asmotrak
parents:
35315
diff
changeset
|
2 |
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. |
30904 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
*/ |
|
23 |
||
24 |
// SunJSSE does not support dynamic system properties, no way to re-use |
|
25 |
// system properties in samevm/agentvm mode. |
|
26 |
||
27 |
/* |
|
28 |
* @test |
|
29 |
* @bug 8043758 |
|
36681
c27e554bbe5c
8152798: Mark WeakCipherSuite.java as intermittently failing
asmotrak
parents:
35315
diff
changeset
|
30 |
* @key intermittent |
30904 | 31 |
* @summary Datagram Transport Layer Security (DTLS) |
35315 | 32 |
* @modules java.base/sun.security.util |
33 |
* @build DTLSOverDatagram |
|
30904 | 34 |
* @run main/othervm WeakCipherSuite TLS_DH_anon_WITH_AES_128_GCM_SHA256 |
35 |
* @run main/othervm WeakCipherSuite SSL_DH_anon_WITH_DES_CBC_SHA |
|
36 |
* @run main/othervm WeakCipherSuite SSL_RSA_WITH_DES_CBC_SHA |
|
37 |
* @run main/othervm WeakCipherSuite SSL_DHE_RSA_WITH_DES_CBC_SHA |
|
38 |
* @run main/othervm WeakCipherSuite SSL_DHE_DSS_WITH_DES_CBC_SHA |
|
39 |
*/ |
|
40 |
||
41 |
import javax.net.ssl.SSLEngine; |
|
42 |
import java.security.Security; |
|
43 |
||
44 |
/** |
|
45 |
* Test common DTLS weak cipher suites. |
|
46 |
*/ |
|
47 |
public class WeakCipherSuite extends DTLSOverDatagram { |
|
48 |
||
49 |
// use the specific cipher suite |
|
50 |
volatile static String cipherSuite; |
|
51 |
||
52 |
public static void main(String[] args) throws Exception { |
|
53 |
// reset security properties to make sure that the algorithms |
|
54 |
// and keys used in this test are not disabled. |
|
55 |
Security.setProperty("jdk.tls.disabledAlgorithms", ""); |
|
56 |
Security.setProperty("jdk.certpath.disabledAlgorithms", ""); |
|
57 |
||
58 |
cipherSuite = args[0]; |
|
59 |
||
60 |
WeakCipherSuite testCase = new WeakCipherSuite(); |
|
61 |
testCase.runTest(testCase); |
|
62 |
} |
|
63 |
||
64 |
@Override |
|
65 |
SSLEngine createSSLEngine(boolean isClient) throws Exception { |
|
66 |
SSLEngine engine = super.createSSLEngine(isClient); |
|
67 |
engine.setEnabledCipherSuites(new String[]{cipherSuite}); |
|
68 |
||
69 |
return engine; |
|
70 |
} |
|
71 |
} |