TjpWeaveTestCase.java

/* *******************************************************************
 * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
 * All rights reserved.
 * This program and the accompanying materials are made available
 * under the terms of the Eclipse Public License v 2.0
 * which accompanies this distribution and is available at
 * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
 *
 * Contributors:
 *     PARC     initial implementation
 * ******************************************************************/

package org.aspectj.weaver.bcel;

import java.io.IOException;
import java.util.Arrays;

import org.aspectj.weaver.Advice;
import org.aspectj.weaver.AdviceKind;
import org.aspectj.weaver.ResolvedType;
import org.aspectj.weaver.ShadowMunger;
import org.aspectj.weaver.TestUtils;
import org.aspectj.weaver.UnresolvedType;

public class TjpWeaveTestCase extends WeaveTestCase {
	{
		regenerate = false;
	}

	public TjpWeaveTestCase(String name) {
		super(name);
	}

	public void setUp() throws Exception {
		super.setUp();
		behave15 = true;
	}

	public void tearDown() throws Exception {
		super.tearDown();
		behave15 = false;
	}

	public void testStaticTjp() throws IOException {
		BcelAdvice munger = new BcelAdvice(AdviceKind.stringToKind("before"), makePointcutAll(),
				TestUtils.methodFromString("static void Aspect.ajc_before(org.aspectj.lang.JoinPoint$StaticPart)"),
				Advice.ThisJoinPointStaticPart, -1, -1, null, null);

		weaveTest("HelloWorld", "StaticTjpBeforeHelloWorld", munger);
	}

	public void testEnclosingStaticTjp() throws IOException {
		BcelAdvice munger = new BcelAdvice(AdviceKind.stringToKind("before"), makePointcutAll(),
				TestUtils.methodFromString("static void Aspect.ajc_before(org.aspectj.lang.JoinPoint$StaticPart)"),
				Advice.ThisEnclosingJoinPointStaticPart, -1, -1, null, null);

		weaveTest("HelloWorld", "StaticEnclosingTjpBeforeHelloWorld", munger);
	}

	public void testTjp() throws IOException {
		BcelAdvice munger = new BcelAdvice(AdviceKind.stringToKind("before"), makePointcutAll(),
				TestUtils.methodFromString("static void Aspect.ajc_before(org.aspectj.lang.JoinPoint)"), Advice.ThisJoinPoint, -1,
				-1, null, null);

		weaveTest("HelloWorld", "TjpBeforeHelloWorld", munger);
	}

	public void testAroundTjp() throws IOException {
		BcelAdvice munger = new BcelAdvice(
				AdviceKind.stringToKind("around"),
				makePointcutAll(),
				TestUtils
						.methodFromString("static java.lang.Object Aspect.ajc_around(org.aspectj.runtime.internal.AroundClosure, org.aspectj.lang.JoinPoint)"),
				Advice.ThisJoinPoint | Advice.ExtraArgument, -1, -1, null, null);

		weaveTest("HelloWorld", "TjpAroundHelloWorld", munger);
	}

	public void testAround2Tjp() throws IOException {
		ResolvedType rtx = world.resolve(UnresolvedType.forName("Aspect"), true);
		assertTrue("Couldnt find type Aspect", !rtx.isMissing());
		BcelAdvice munger1 = new BcelAdvice(
				AdviceKind.stringToKind("around"),
				makePointcutAll(),
				TestUtils
						.methodFromString("static java.lang.Object Aspect.ajc_around(org.aspectj.runtime.internal.AroundClosure, org.aspectj.lang.JoinPoint)"),
				Advice.ThisJoinPoint | Advice.ExtraArgument, -1, -1, null, rtx);

		BcelAdvice munger2 = new BcelAdvice(
				AdviceKind.stringToKind("around"),
				makePointcutAll(),
				TestUtils
						.methodFromString("static java.lang.Object Aspect.ajc_around(org.aspectj.runtime.internal.AroundClosure, org.aspectj.lang.JoinPoint)"),
				Advice.ThisJoinPoint | Advice.ExtraArgument, -1, -1, null, rtx);

		weaveTest("HelloWorld", "TjpAround2HelloWorld", Arrays.asList(new ShadowMunger[] { munger1, munger2 }));
	}

}