Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/security/cert/CertPathValidatorException/ReasonTest.java
41154 views
1
/*
2
* Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
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
/*
25
* @test
26
* @bug 6465942
27
* @summary unit test for CertPathValidatorException.Reason
28
*/
29
30
import java.security.cert.CertPathValidatorException;
31
import java.security.cert.CertPathValidatorException.BasicReason;
32
33
public class ReasonTest {
34
private static volatile boolean failed = false;
35
public static void main(String[] args) throws Exception {
36
37
// check that getReason returns UNSPECIFIED if reason not specified
38
CertPathValidatorException cpve = new CertPathValidatorException("abc");
39
if (cpve.getReason() != BasicReason.UNSPECIFIED) {
40
failed = true;
41
System.err.println("FAILED: unexpected reason: " + cpve.getReason());
42
}
43
44
// check that getReason returns specified reason
45
cpve = new CertPathValidatorException
46
("abc", null, null, -1, BasicReason.REVOKED);
47
if (cpve.getReason() != BasicReason.REVOKED) {
48
failed = true;
49
System.err.println("FAILED: unexpected reason: " + cpve.getReason());
50
}
51
52
// check that ctor throws NPE when reason is null
53
try {
54
cpve = new CertPathValidatorException("abc", null, null, -1, null);
55
failed = true;
56
System.err.println("ctor did not throw NPE for null reason");
57
} catch (Exception e) {
58
if (!(e instanceof NullPointerException)) {
59
failed = true;
60
System.err.println("FAILED: unexpected exception: " + e);
61
}
62
}
63
if (failed) {
64
throw new Exception("Some tests FAILED");
65
}
66
}
67
}
68
69