Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8281717: Cover logout method for several LoginModule #1606

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.FailedLoginException;

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);
}
}
}
}