Skip to content

Commit fbb8ca5

Browse files
author
Sibabrata Sahoo
committedMar 31, 2022
8281717: Cover logout method for several LoginModule
Reviewed-by: rhalade
1 parent e0a8669 commit fbb8ca5

File tree

1 file changed

+26
-21
lines changed

1 file changed

+26
-21
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -27,38 +27,34 @@
2727
* @summary com.sun.security.auth.module missing classes on some platforms
2828
* @run main/othervm AllPlatforms
2929
*/
30-
3130
import javax.security.auth.login.Configuration;
3231
import javax.security.auth.login.LoginContext;
3332
import java.nio.file.Files;
3433
import java.nio.file.Paths;
34+
import javax.security.auth.login.LoginException;
3535

3636
public class AllPlatforms {
37+
38+
private static final String UNIX_MODULE = "UnixLoginModule";
39+
private static final String NT_MODULE = "NTLoginModule";
40+
3741
public static void main(String[] args) throws Exception {
3842
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");
5247
}
5348

5449
static void login(String test, String... conf) throws Exception {
5550
System.out.println("Testing " + test + "...");
5651

5752
StringBuilder sb = new StringBuilder();
5853
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");
6258
}
6359
sb.append("};\n");
6460
Files.write(Paths.get(test), sb.toString().getBytes());
@@ -67,8 +63,17 @@ static void login(String test, String... conf) throws Exception {
6763
Configuration.setConfiguration(null);
6864
System.setProperty("java.security.auth.login.config", test);
6965

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+
}
7378
}
7479
}

0 commit comments

Comments
 (0)
Please sign in to comment.