All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mockit.internal.startup.Startup Maven / Gradle / Ivy

Go to download

JMockit is a Java toolkit for automated developer testing. It contains mocking/faking APIs and a code coverage tool, supporting both JUnit and TestNG. The mocking APIs allow all kinds of Java code, without testability restrictions, to be tested in isolation from selected dependencies.

There is a newer version: 1.49
Show newest version
/*
 * Copyright (c) 2006 Rogério Liesenfeld
 * This file is subject to the terms of the MIT license (see LICENSE.txt).
 */
package mockit.internal.startup;

import java.io.*;
import java.lang.instrument.*;
import javax.annotation.*;

import mockit.internal.expectations.transformation.*;
import mockit.internal.state.*;
import mockit.internal.util.*;

/**
 * This is the "agent class" that initializes the JMockit "Java agent". It is not intended for use in client code.
 *
 * @see #premain(String, Instrumentation)
 * @see #agentmain(String, Instrumentation)
 */
public final class Startup
{
   public static boolean initializing;
   @Nullable private static Instrumentation instrumentation;
   private static boolean initializedOnDemand;

   private Startup() {}

   /**
    * This method must only be called by the JVM, to provide the instrumentation object.
    * In order for this to occur, the JVM must be started with "-javaagent:jmockit.jar" as a command line parameter
    * (assuming the jar file is in the current directory).
    * 

* It is also possible to load other instrumentation tools at this time, by having set the "jmockit-tools" * and/or "jmockit-mocks" system properties in the JVM command line. * There are two types of instrumentation tools: *

    *
  1. A {@link ClassFileTransformer class file transformer}, which will be instantiated and added to the JVM * instrumentation service. Such a class must have a no-args constructor.
  2. *
  3. An external mock, which should be a {@code MockUp} subclass with a no-args constructor. *
* * @param agentArgs not used * @param inst the instrumentation service provided by the JVM */ public static void premain(String agentArgs, @Nonnull Instrumentation inst) throws IOException { initialize(true, inst); } private static void initialize(boolean applyStartupMocks, @Nonnull Instrumentation inst) throws IOException { if (instrumentation == null) { instrumentation = inst; MockingBridgeFields.createSyntheticFieldsInJREClassToHoldMockingBridges(inst); inst.addTransformer(CachedClassfiles.INSTANCE, true); if (applyStartupMocks) { applyStartupMocks(); } inst.addTransformer(new ExpectationsTransformer(inst)); } } private static void applyStartupMocks() throws IOException { initializing = true; try { new JMockitInitialization().initialize(); } finally { initializing = false; } } /** * This method must only be called by the JVM, to provide the instrumentation object. * This occurs only when the JMockit Java agent gets loaded on demand, through the Attach API. *

* For additional details, see the {@link #premain(String, Instrumentation)} method. * * @param agentArgs not used * @param inst the instrumentation service provided by the JVM */ public static void agentmain(@SuppressWarnings("unused") String agentArgs, @Nonnull Instrumentation inst) throws IOException { if (!inst.isRedefineClassesSupported()) { throw new UnsupportedOperationException( "This JRE must be started in debug mode, or with -javaagent:/jmockit.jar"); } initialize(false, inst); ClassLoader customCL = (ClassLoader) System.getProperties().remove("jmockit-customCL"); if (customCL != null) { reinitializeJMockitUnderCustomClassLoader(customCL); } } private static void reinitializeJMockitUnderCustomClassLoader(@Nonnull ClassLoader customLoader) { Class startupClass; try { startupClass = customLoader.loadClass(Startup.class.getName()); } catch (ClassNotFoundException ignore) { return; } System.out.println("JMockit: Reinitializing under custom class loader " + customLoader); FieldReflection.setField(startupClass, null, "instrumentation", instrumentation); MethodReflection.invoke(startupClass, (Object) null, "reapplyStartupMocks"); } private static void reapplyStartupMocks() { MockingBridgeFields.setMockingBridgeFields(); try { applyStartupMocks(); } catch (IOException e) { throw new RuntimeException(e); } } @Nonnull public static Instrumentation instrumentation() { verifyInitialization(); assert instrumentation != null; return instrumentation; } /** * Only called from the coverage tool, when it is executed with {@code -javaagent:jmockit-coverage.jar} even though * JMockit is in the classpath. */ public static void initialize(@Nonnull Instrumentation inst) throws IOException { boolean fullJMockit = false; try { Class.forName("mockit.internal.expectations.transformation.ExpectationsTransformer"); fullJMockit = true; } catch (ClassNotFoundException ignored) {} instrumentation = inst; if (fullJMockit) { MockingBridgeFields.createSyntheticFieldsInJREClassToHoldMockingBridges(inst); initializing = true; try { new JMockitInitialization().initialize(); } finally { initializing = false; } inst.addTransformer(CachedClassfiles.INSTANCE, true); inst.addTransformer(new ExpectationsTransformer(inst)); } } public static boolean wasInitializedOnDemand() { return initializedOnDemand; } public static void verifyInitialization() { if (getInstrumentation() == null) { new AgentLoader().loadAgent(); initializedOnDemand = true; } } @Nullable private static Instrumentation getInstrumentation() { if (instrumentation == null) { ClassLoader systemCL = ClassLoader.getSystemClassLoader(); Class initialStartupClass = ClassLoad.loadClass(systemCL, Startup.class.getName()); if (initialStartupClass != null) { instrumentation = FieldReflection.getField(initialStartupClass, "instrumentation", null); if (instrumentation != null) { reapplyStartupMocks(); } } } return instrumentation; } public static boolean initializeIfPossible() { if (getInstrumentation() == null) { ClassLoader currentCL = Startup.class.getClassLoader(); boolean usingCustomCL = currentCL != ClassLoader.getSystemClassLoader(); if (usingCustomCL) { //noinspection UseOfPropertiesAsHashtable System.getProperties().put("jmockit-customCL", currentCL); } try { new AgentLoader().loadAgent(); if (!usingCustomCL) { applyStartupMocks(); } return true; } catch (IllegalStateException e) { StackTrace.filterStackTrace(e); e.printStackTrace(); } catch (RuntimeException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return false; } return true; } public static void retransformClass(@Nonnull Class aClass) { try { instrumentation().retransformClasses(aClass); } catch (UnmodifiableClassException ignore) {} } public static void redefineMethods(@Nonnull Class classToRedefine, @Nonnull byte[] modifiedClassfile) { redefineMethods(new ClassDefinition(classToRedefine, modifiedClassfile)); } public static void redefineMethods(@Nonnull ClassDefinition... classDefs) { try { instrumentation().redefineClasses(classDefs); } catch (ClassNotFoundException e) { // should never happen throw new RuntimeException(e); } catch (UnmodifiableClassException e) { throw new RuntimeException(e); } catch (InternalError ignore) { // If a class to be redefined hasn't been loaded yet, the JVM may get a NoClassDefFoundError during // redefinition. Unfortunately, it then throws a plain InternalError instead. for (ClassDefinition classDef : classDefs) { detectMissingDependenciesIfAny(classDef.getDefinitionClass()); } // If the above didn't throw upon detecting a NoClassDefFoundError, then ignore the original error and // continue, in order to prevent secondary failures. } } private static void detectMissingDependenciesIfAny(@Nonnull Class mockedClass) { try { Class.forName(mockedClass.getName(), false, mockedClass.getClassLoader()); } catch (NoClassDefFoundError e) { throw new RuntimeException("Unable to mock " + mockedClass + " due to a missing dependency", e); } catch (ClassNotFoundException ignore) { // Shouldn't happen since the mocked class would already have been found in the classpath. } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy