Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions test/jdk/javax/script/JDK_8196959/BadFactoryTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2018, 2023, 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 All @@ -21,10 +21,34 @@
* questions.
*/

import org.junit.jupiter.api.Test;

import javax.script.ScriptEngineFactory;
import javax.script.ScriptEngineManager;
import java.util.Optional;

import static org.junit.jupiter.api.Assertions.assertTrue;

/*
* @test
* @bug 8196959 8320712
* @summary Verify that ScriptEngineManager can load BadFactory without throwing NPE
* @build BadFactory BadFactoryTest
* @run junit/othervm BadFactoryTest
* @run junit/othervm -Djava.security.manager=allow BadFactoryTest
*/
public class BadFactoryTest {
public static void main(String[] args) {

@Test
public void scriptEngineManagerShouldLoadBadFactory() {
// Check that ScriptEngineManager initializes even in the
// presence of a ScriptEngineFactory returning nulls
ScriptEngineManager m = new ScriptEngineManager();

// Sanity check that ScriptEngineManager actually found the BadFactory
Optional<ScriptEngineFactory> badFactory = m.getEngineFactories().stream()
.filter(fac -> fac.getClass() == BadFactory.class)
.findAny();
assertTrue(badFactory.isPresent(), "BadFactory not found");
}
}
60 changes: 0 additions & 60 deletions test/jdk/javax/script/JDK_8196959/BadFactoryTest.sh

This file was deleted.