1
1
/*
2
- * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
27
27
* @summary com.sun.security.auth.module missing classes on some platforms
28
28
* @run main/othervm AllPlatforms
29
29
*/
30
-
31
30
import javax .security .auth .login .Configuration ;
32
31
import javax .security .auth .login .LoginContext ;
33
32
import java .nio .file .Files ;
34
33
import java .nio .file .Paths ;
34
+ import javax .security .auth .login .LoginException ;
35
35
36
36
public class AllPlatforms {
37
+
38
+ private static final String UNIX_MODULE = "UnixLoginModule" ;
39
+ private static final String NT_MODULE = "NTLoginModule" ;
40
+
37
41
public static void main (String [] args ) throws Exception {
38
42
login ("cross-platform" ,
39
- "UnixLoginModule" , "optional" ,
40
- "NTLoginModule" , "optional" ,
41
- "SolarisLoginModule" , "optional" );
42
- try {
43
- login ("windows" , "NTLoginModule" , "required" );
44
- login ("unix" , "UnixLoginModule" , "required" );
45
- login ("solaris" , "SolarisLoginModule" , "required" );
46
- } catch (Exception e ) {
47
- e .printStackTrace (System .out );
48
- if (e .toString ().contains ("UnsatisfiedLinkError" )) {
49
- throw new Exception ("This is ugly" );
50
- }
51
- }
43
+ UNIX_MODULE , "optional" ,
44
+ NT_MODULE , "optional" );
45
+ login ("windows" , NT_MODULE , "required" );
46
+ login ("unix" , UNIX_MODULE , "required" );
52
47
}
53
48
54
49
static void login (String test , String ... conf ) throws Exception {
55
50
System .out .println ("Testing " + test + "..." );
56
51
57
52
StringBuilder sb = new StringBuilder ();
58
53
sb .append ("hello {\n " );
59
- for (int i =0 ; i <conf .length ; i +=2 ) {
60
- sb .append (" com.sun.security.auth.module." + conf [i ]
61
- + " " + conf [i +1 ] + ";\n " );
54
+ for (int i = 0 ; i < conf .length ; i += 2 ) {
55
+ sb .append (" com.sun.security.auth.module." )
56
+ .append (conf [i ]).append (" " )
57
+ .append (conf [i + 1 ]).append (";\n " );
62
58
}
63
59
sb .append ("};\n " );
64
60
Files .write (Paths .get (test ), sb .toString ().getBytes ());
@@ -67,8 +63,17 @@ static void login(String test, String... conf) throws Exception {
67
63
Configuration .setConfiguration (null );
68
64
System .setProperty ("java.security.auth.login.config" , test );
69
65
70
- LoginContext lc = new LoginContext ("hello" );
71
- lc .login ();
72
- System .out .println (lc .getSubject ());
66
+ try {
67
+ LoginContext lc = new LoginContext ("hello" );
68
+ lc .login ();
69
+ System .out .println (lc .getSubject ());
70
+ lc .logout ();
71
+ } catch (FailedLoginException e ) {
72
+ // This exception can occur in other platform module than the running one.
73
+ if (e .getMessage ().startsWith ("Failed in attempt to import" )) {
74
+ System .out .println ("Expected Exception found." );
75
+ e .printStackTrace (System .out );
76
+ }
77
+ }
73
78
}
74
79
}
0 commit comments