forked from eclipse-openj9/openj9
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate tests that rely on SecurityManager (Jsr292)
SecurityManager will be removed in a future jdk. Separate tests that rely on it so that they can be easily disabled in the future. Issue: eclipse-openj9#14412 Signed-off-by: Eric Yang <[email protected]>
- Loading branch information
1 parent
afec275
commit 37cb6c0
Showing
5 changed files
with
186 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
test/functional/Jsr292/src/com/ibm/j9/jsr292/MethodTypeTests_SM.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2022, 2022 IBM Corp. and others | ||
* | ||
* This program and the accompanying materials are made available under | ||
* the terms of the Eclipse Public License 2.0 which accompanies this | ||
* distribution and is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* or the Apache License, Version 2.0 which accompanies this distribution and | ||
* is available at https://www.apache.org/licenses/LICENSE-2.0. | ||
* | ||
* This Source Code may also be made available under the following | ||
* Secondary Licenses when the conditions for such availability set | ||
* forth in the Eclipse Public License, v. 2.0 are satisfied: GNU | ||
* General Public License, version 2 with the GNU Classpath | ||
* Exception [1] and GNU General Public License, version 2 with the | ||
* OpenJDK Assembly Exception [2]. | ||
* | ||
* [1] https://www.gnu.org/software/classpath/license.html | ||
* [2] http://openjdk.java.net/legal/assembly-exception.html | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception | ||
*******************************************************************************/ | ||
package com.ibm.j9.jsr292; | ||
|
||
import org.testng.annotations.Test; | ||
import org.testng.AssertJUnit; | ||
import java.io.*; | ||
import java.lang.invoke.MethodType; | ||
|
||
/** | ||
* @author mesbah | ||
* This class contains tests for the MethodType API. | ||
*/ | ||
public class MethodTypeTests_SM { | ||
|
||
/** | ||
* Ensure that MethodTypes serialization works. Runs with the SecurityManager enabled. | ||
*/ | ||
@Test(groups = { "level.extended" }) | ||
public void test_SerializeGenericMethodType() throws IOException, ClassNotFoundException { | ||
Class<?> returnType = String.class; | ||
Class<?> paramType = Class.class; | ||
MethodType mt = MethodType.methodType(returnType, paramType); | ||
ByteArrayOutputStream baos = new ByteArrayOutputStream(); | ||
ObjectOutputStream oos = new ObjectOutputStream(baos); | ||
oos.writeObject(mt); | ||
oos.close(); | ||
ObjectInputStream ois = new ObjectInputStream(new ByteArrayInputStream(baos.toByteArray())); | ||
System.setSecurityManager(new SecurityManager()); | ||
try { | ||
MethodType newMT = (MethodType) ois.readObject(); | ||
|
||
// Validate MethodType constructed from serialized data | ||
AssertJUnit.assertEquals(returnType, newMT.returnType()); | ||
AssertJUnit.assertEquals(paramType, newMT.parameterType(0)); | ||
} finally { | ||
ois.close(); | ||
System.setSecurityManager(null); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters