WALA/com.ibm.wala.core.tests/src/com/ibm/wala/core/tests/cha/GetTargetsTest.java

99 lines
3.2 KiB
Java

/*******************************************************************************
* Copyright (c) 2002 - 2006 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.ibm.wala.core.tests.cha;
import java.util.Collection;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import com.ibm.wala.classLoader.ClassLoaderFactory;
import com.ibm.wala.classLoader.ClassLoaderFactoryImpl;
import com.ibm.wala.classLoader.IMethod;
import com.ibm.wala.core.tests.util.TestConstants;
import com.ibm.wala.core.tests.util.WalaTestCase;
import com.ibm.wala.ipa.callgraph.AnalysisScope;
import com.ibm.wala.ipa.cha.ClassHierarchy;
import com.ibm.wala.ipa.cha.ClassHierarchyException;
import com.ibm.wala.types.ClassLoaderReference;
import com.ibm.wala.types.MethodReference;
import com.ibm.wala.types.TypeReference;
import com.ibm.wala.util.config.AnalysisScopeReader;
import com.ibm.wala.util.io.FileProvider;
/**
* Test ClassHierarchy.getPossibleTargets
*/
public class GetTargetsTest extends WalaTestCase {
private static final ClassLoader MY_CLASSLOADER = GetTargetsTest.class.getClassLoader();
private static AnalysisScope scope;
private static ClassHierarchy cha;
public static void main(String[] args) {
justThisTest(GetTargetsTest.class);
}
@BeforeClass
public static void beforeClass() throws Exception {
scope = AnalysisScopeReader.readJavaScope(TestConstants.WALA_TESTDATA, (new FileProvider()).getFile("J2SEClassHierarchyExclusions.txt"), MY_CLASSLOADER);
ClassLoaderFactory factory = new ClassLoaderFactoryImpl(scope.getExclusions() );
try {
cha = ClassHierarchy.make(scope, factory);
} catch (ClassHierarchyException e) {
throw new Exception();
}
}
/*
* (non-Javadoc)
*
* @see junit.framework.TestCase#tearDown()
*/
@AfterClass
public static void afterClass() throws Exception {
scope = null;
cha = null;
}
/**
* Test for bug 1714480, reported OOM on {@link ClassHierarchy} getPossibleTargets()
*/
@Test public void testCell() {
TypeReference t = TypeReference.findOrCreate(ClassLoaderReference.Application, "Lcell/Cell");
MethodReference m = MethodReference.findOrCreate(t, "<init>", "(Ljava/lang/Object;)V");
Collection<IMethod> c = cha.getPossibleTargets(m);
for (IMethod method : c) {
System.err.println(method);
}
Assert.assertEquals(1, c.size());
}
/**
* test that calls to <init> methods are treated specially
*/
@Test public void testObjInit() {
MethodReference m = MethodReference.findOrCreate(TypeReference.JavaLangObject, MethodReference.initSelector);
Collection<IMethod> c = cha.getPossibleTargets(m);
for (IMethod method : c) {
System.err.println(method);
}
Assert.assertEquals(1, c.size());
}
}