use of org.robolectric.shadows.ShadowActivityThread._ActivityThread_ in project robolectric by robolectric.
the class AndroidTestEnvironment method createInstrumentation.
private Instrumentation createInstrumentation() {
final ActivityThread activityThread = (ActivityThread) RuntimeEnvironment.getActivityThread();
final _ActivityThread_ activityThreadReflector = reflector(_ActivityThread_.class, activityThread);
Instrumentation androidInstrumentation = new RoboMonitoringInstrumentation();
activityThreadReflector.setInstrumentation(androidInstrumentation);
Application dummyInitialApplication = new Application();
final ComponentName dummyInitialComponent = new ComponentName("", androidInstrumentation.getClass().getSimpleName());
// TODO Move the API check into a helper method inside ShadowInstrumentation
if (RuntimeEnvironment.getApiLevel() <= VERSION_CODES.JELLY_BEAN_MR1) {
reflector(_Instrumentation_.class, androidInstrumentation).init(activityThread, dummyInitialApplication, dummyInitialApplication, dummyInitialComponent, null);
} else {
reflector(_Instrumentation_.class, androidInstrumentation).init(activityThread, dummyInitialApplication, dummyInitialApplication, dummyInitialComponent, null, null);
}
androidInstrumentation.onCreate(new Bundle());
return androidInstrumentation;
}
use of org.robolectric.shadows.ShadowActivityThread._ActivityThread_ in project robolectric by robolectric.
the class ShadowApplication method setProcessName.
/**
* Configures the value to be returned by {@link Application#getProcessName()}.
*/
public static void setProcessName(String processName) {
// No need for a @Resetter because the whole ActivityThread is reset before each test.
_ActivityThread_ activityThread = Reflector.reflector(_ActivityThread_.class, ShadowActivityThread.currentActivityThread());
Reflector.reflector(_AppBindData_.class, activityThread.getBoundApplication()).setProcessName(processName);
}
use of org.robolectric.shadows.ShadowActivityThread._ActivityThread_ in project robolectric by robolectric.
the class AndroidTestEnvironment method createApplicationSupplier.
// TODO Move synchronization logic into its own class for better readability
private Supplier<Application> createApplicationSupplier(AndroidManifest appManifest, Config config, android.content.res.Configuration androidConfiguration, DisplayMetrics displayMetrics) {
final ActivityThread activityThread = (ActivityThread) RuntimeEnvironment.getActivityThread();
final _ActivityThread_ _activityThread_ = reflector(_ActivityThread_.class, activityThread);
final ShadowActivityThread shadowActivityThread = Shadow.extract(activityThread);
return Suppliers.memoize(() -> PerfStatsCollector.getInstance().measure("installAndCreateApplication", () -> installAndCreateApplication(appManifest, config, androidConfiguration, displayMetrics, shadowActivityThread, _activityThread_, activityThread.getInstrumentation())));
}
use of org.robolectric.shadows.ShadowActivityThread._ActivityThread_ in project robolectric by robolectric.
the class AndroidTestEnvironment method installAndCreateApplication.
private Application installAndCreateApplication(AndroidManifest appManifest, Config config, android.content.res.Configuration androidConfiguration, DisplayMetrics displayMetrics, ShadowActivityThread shadowActivityThread, _ActivityThread_ activityThreadReflector, Instrumentation androidInstrumentation) {
ActivityThread activityThread = (ActivityThread) RuntimeEnvironment.getActivityThread();
Context systemContextImpl = reflector(_ContextImpl_.class).createSystemContext(activityThread);
RuntimeEnvironment.systemContext = systemContextImpl;
Application dummyInitialApplication = new Application();
activityThreadReflector.setInitialApplication(dummyInitialApplication);
ShadowApplication shadowInitialApplication = Shadow.extract(dummyInitialApplication);
shadowInitialApplication.callAttach(systemContextImpl);
Package parsedPackage = loadAppPackage(config, appManifest);
ApplicationInfo applicationInfo = parsedPackage.applicationInfo;
ComponentName actualComponentName = new ComponentName(applicationInfo.packageName, androidInstrumentation.getClass().getSimpleName());
ReflectionHelpers.setField(androidInstrumentation, "mComponent", actualComponentName);
// unclear why, but prior to P the processName wasn't set
if (apiLevel < P && applicationInfo.processName == null) {
applicationInfo.processName = parsedPackage.packageName;
}
setUpPackageStorage(applicationInfo, parsedPackage);
// Bit of a hack... Context.createPackageContext() is called before the application is created.
// It calls through
// to ActivityThread for the package which in turn calls the PackageManagerService directly.
// This works for now
// but it might be nicer to have ShadowPackageManager implementation move into the service as
// there is also lots of
// code in there that can be reusable, e.g: the XxxxIntentResolver code.
ShadowActivityThread.setApplicationInfo(applicationInfo);
shadowActivityThread.setCompatConfiguration(androidConfiguration);
Bootstrap.setUpDisplay();
activityThread.applyConfigurationToResources(androidConfiguration);
Application application = createApplication(appManifest, config, applicationInfo);
RuntimeEnvironment.setConfiguredApplicationClass(application.getClass());
RuntimeEnvironment.application = application;
if (application != null) {
final Class<?> appBindDataClass;
try {
appBindDataClass = Class.forName("android.app.ActivityThread$AppBindData");
} catch (ClassNotFoundException e) {
throw new RuntimeException(e);
}
final Object appBindData = ReflectionHelpers.newInstance(appBindDataClass);
final _AppBindData_ _appBindData_ = reflector(_AppBindData_.class, appBindData);
_appBindData_.setProcessName(parsedPackage.packageName);
_appBindData_.setAppInfo(applicationInfo);
activityThreadReflector.setBoundApplication(appBindData);
final LoadedApk loadedApk = activityThread.getPackageInfo(applicationInfo, null, Context.CONTEXT_INCLUDE_CODE);
final _LoadedApk_ _loadedApk_ = reflector(_LoadedApk_.class, loadedApk);
Context contextImpl;
if (apiLevel >= VERSION_CODES.LOLLIPOP) {
contextImpl = reflector(_ContextImpl_.class).createAppContext(activityThread, loadedApk);
} else {
try {
contextImpl = systemContextImpl.createPackageContext(applicationInfo.packageName, Context.CONTEXT_INCLUDE_CODE);
} catch (PackageManager.NameNotFoundException e) {
throw new RuntimeException(e);
}
}
ShadowPackageManager shadowPackageManager = Shadow.extract(contextImpl.getPackageManager());
shadowPackageManager.addPackageInternal(parsedPackage);
activityThreadReflector.setInitialApplication(application);
ShadowApplication shadowApplication = Shadow.extract(application);
shadowApplication.callAttach(contextImpl);
reflector(_ContextImpl_.class, contextImpl).setOuterContext(application);
if (apiLevel >= VERSION_CODES.O) {
reflector(_ContextImpl_.class, contextImpl).setClassLoader(this.getClass().getClassLoader());
}
Resources appResources = application.getResources();
_loadedApk_.setResources(appResources);
_loadedApk_.setApplication(application);
if (RuntimeEnvironment.getApiLevel() >= VERSION_CODES.O) {
// Preload fonts resources
FontsContract.setApplicationContextForResources(application);
}
registerBroadcastReceivers(application, appManifest);
appResources.updateConfiguration(androidConfiguration, displayMetrics);
// propagate any updates to configuration via RuntimeEnvironment.setQualifiers
Bootstrap.updateConfiguration(appResources);
if (ShadowAssetManager.useLegacy()) {
populateAssetPaths(appResources.getAssets(), appManifest);
}
PerfStatsCollector.getInstance().measure("application onCreate()", () -> application.onCreate());
}
return application;
}
Aggregations