8281717: Cover logout method for several LoginModule

Reviewed-by: rhalade
This commit is contained in:
Sibabrata Sahoo 2022-03-31 06:17:00 +00:00
parent e0a86699b3
commit fbb8ca55a8

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -27,28 +27,23 @@
* @summary com.sun.security.auth.module missing classes on some platforms
* @run main/othervm AllPlatforms
*/
import javax.security.auth.login.Configuration;
import javax.security.auth.login.LoginContext;
import java.nio.file.Files;
import java.nio.file.Paths;
import javax.security.auth.login.LoginException;
public class AllPlatforms {
private static final String UNIX_MODULE = "UnixLoginModule";
private static final String NT_MODULE = "NTLoginModule";
public static void main(String[] args) throws Exception {
login("cross-platform",
"UnixLoginModule", "optional",
"NTLoginModule", "optional",
"SolarisLoginModule", "optional");
try {
login("windows", "NTLoginModule", "required");
login("unix", "UnixLoginModule", "required");
login("solaris", "SolarisLoginModule", "required");
} catch (Exception e) {
e.printStackTrace(System.out);
if (e.toString().contains("UnsatisfiedLinkError")) {
throw new Exception("This is ugly");
}
}
UNIX_MODULE, "optional",
NT_MODULE, "optional");
login("windows", NT_MODULE, "required");
login("unix", UNIX_MODULE, "required");
}
static void login(String test, String... conf) throws Exception {
@ -56,9 +51,10 @@ public class AllPlatforms {
StringBuilder sb = new StringBuilder();
sb.append("hello {\n");
for (int i=0; i<conf.length; i+=2) {
sb.append(" com.sun.security.auth.module." + conf[i]
+ " " + conf[i+1] + ";\n");
for (int i = 0; i < conf.length; i += 2) {
sb.append(" com.sun.security.auth.module.")
.append(conf[i]).append(" ")
.append(conf[i + 1]).append(";\n");
}
sb.append("};\n");
Files.write(Paths.get(test), sb.toString().getBytes());
@ -67,8 +63,17 @@ public class AllPlatforms {
Configuration.setConfiguration(null);
System.setProperty("java.security.auth.login.config", test);
LoginContext lc = new LoginContext("hello");
lc.login();
System.out.println(lc.getSubject());
try {
LoginContext lc = new LoginContext("hello");
lc.login();
System.out.println(lc.getSubject());
lc.logout();
} catch (FailedLoginException e) {
// This exception can occur in other platform module than the running one.
if(e.getMessage().startsWith("Failed in attempt to import")) {
System.out.println("Expected Exception found.");
e.printStackTrace(System.out);
}
}
}
}