Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8281717: Cover logout method for several LoginModule
Reviewed-by: rhalade
  • Loading branch information
Sibabrata Sahoo committed Mar 31, 2022
1 parent e0a8669 commit fbb8ca5
Showing 1 changed file with 26 additions and 21 deletions.
47 changes: 26 additions & 21 deletions test/jdk/com/sun/security/auth/module/AllPlatforms.java
@@ -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
Expand Down Expand Up @@ -27,38 +27,34 @@
* @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 {
System.out.println("Testing " + test + "...");

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());
Expand All @@ -67,8 +63,17 @@ static void login(String test, String... conf) throws Exception {
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);
}
}
}
}

1 comment on commit fbb8ca5

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.