1 /*
2  * Copyright (c) 2015, 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 import java.io.*;
25 import java.util.*;
26 import java.security.*;
27 import javax.security.auth.callback.*;
28 
29 /**
30  * @test
31  * @bug 8130648
32  * @summary make sure IllegalStateException is thrown for uninitialized
33  * SunPKCS11 provider instance
34  */
35 public class LoginISE {
36 
main(String[] args)37     public static void main(String[] args) throws Exception {
38 
39         Provider p = Security.getProvider("SunPKCS11");
40         if (p == null) {
41             System.out.println("No un-initialized PKCS11 provider available; skip");
42             return;
43         }
44         if (!(p instanceof AuthProvider)) {
45             throw new RuntimeException("Error: expect AuthProvider!");
46         }
47         AuthProvider ap = (AuthProvider) p;
48         if (ap.isConfigured()) {
49             throw new RuntimeException("Fail: isConfigured() should return false");
50         }
51         try {
52             ap.login(null, null);
53             throw new RuntimeException("Fail: expected ISE not thrown!");
54         } catch (IllegalStateException ise) {
55             System.out.println("Expected ISE thrown for login call");
56         }
57         try {
58             ap.logout();
59             throw new RuntimeException("Fail: expected ISE not thrown!");
60         } catch (IllegalStateException ise) {
61             System.out.println("Expected ISE thrown for logout call");
62         }
63         try {
64             ap.setCallbackHandler(new PasswordCallbackHandler());
65             throw new RuntimeException("Fail: expected ISE not thrown!");
66         } catch (IllegalStateException ise) {
67             System.out.println("Expected ISE thrown for logout call");
68         }
69 
70         System.out.println("Test Passed");
71     }
72 
73     public static class PasswordCallbackHandler implements CallbackHandler {
handle(Callback[] callbacks)74         public void handle(Callback[] callbacks)
75                 throws IOException, UnsupportedCallbackException {
76         }
77     }
78 }
79