Path: blob/master/test/jdk/java/io/ObjectStreamClass/ObjectStreamClassCaching.java
66644 views
/*1* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223import java.lang.ref.Reference;24import java.lang.ref.WeakReference;25import java.io.ObjectStreamClass;26import java.io.Serializable;27import java.util.ArrayList;28import org.testng.annotations.Test;29import static org.testng.Assert.assertFalse;30import static org.testng.Assert.assertTrue;3132/* @test33* @bug 827707234* @library /test/lib/35* @summary ObjectStreamClass caches keep ClassLoaders alive36* @run testng/othervm -Xmx10m -XX:SoftRefLRUPolicyMSPerMB=1 ObjectStreamClassCaching37*/38public class ObjectStreamClassCaching {3940@Test41public void testCachingEffectiveness() throws Exception {42var ref = lookupObjectStreamClass(TestClass.class);43System.gc();44Thread.sleep(100L);45// to trigger any ReferenceQueue processing...46lookupObjectStreamClass(AnotherTestClass.class);47assertFalse(ref.refersTo(null),48"Cache lost entry although memory was not under pressure");49}5051@Test52public void testCacheReleaseUnderMemoryPressure() throws Exception {53var ref = lookupObjectStreamClass(TestClass.class);54pressMemoryHard(ref);55System.gc();56Thread.sleep(100L);57assertTrue(ref.refersTo(null),58"Cache still has entry although memory was pressed hard");59}6061// separate method so that the looked-up ObjectStreamClass is not kept on stack62private static WeakReference<?> lookupObjectStreamClass(Class<?> cl) {63return new WeakReference<>(ObjectStreamClass.lookup(cl));64}6566private static void pressMemoryHard(Reference<?> ref) {67try {68var list = new ArrayList<>();69while (!ref.refersTo(null)) {70list.add(new byte[1024 * 1024 * 64]); // 64 MiB chunks71}72} catch (OutOfMemoryError e) {73// release74}75}76}7778class TestClass implements Serializable {79}8081class AnotherTestClass implements Serializable {82}838485