/* * Copyright (C) 2014 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package libcore.java.util; import dalvik.system.CloseGuard; import junit.framework.TestCase; /** * Test for {@link ResourceLeakageDetector} */ public class ResourceLeakageDetectorTest extends TestCase { /** * This test will not work on RI as it does not support the <code>CloseGuard</code> or similar * mechanism. */ public void testDetectsUnclosedCloseGuard() throws Exception { ResourceLeakageDetector detector = ResourceLeakageDetector.newDetector(); try { CloseGuard closeGuard = createCloseGuard(); closeGuard.open("open"); } finally { try { System.logI("Checking for leaks"); detector.checkForLeaks(); fail(); } catch (AssertionError expected) { } } } public void testIgnoresClosedCloseGuard() throws Exception { ResourceLeakageDetector detector = ResourceLeakageDetector.newDetector(); try { CloseGuard closeGuard = createCloseGuard(); closeGuard.open("open"); closeGuard.close(); } finally { detector.checkForLeaks(); } } /** * Private method to ensure that the CloseGuard object is garbage collected. */ private CloseGuard createCloseGuard() { final CloseGuard closeGuard = CloseGuard.get(); new Object() { @Override protected void finalize() throws Throwable { try { closeGuard.warnIfOpen(); } finally { super.finalize(); } } }; return closeGuard; } }