org.arquillian.droidium.container.deployment.AndroidDeploymentUninstaller Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* 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 org.arquillian.droidium.container.deployment;
import org.arquillian.droidium.container.impl.AndroidApplicationManager;
import org.arquillian.droidium.container.spi.AndroidDeployment;
import org.arquillian.droidium.container.spi.event.AfterAllAndroidDeploymentsUndeployed;
import org.arquillian.droidium.container.spi.event.AfterAndroidDeploymentUndeployed;
import org.arquillian.droidium.container.spi.event.BeforeAllAndroidDeploymentsUndeployed;
import org.arquillian.droidium.container.spi.event.BeforeAndroidDeploymentUndeployed;
import org.jboss.arquillian.core.api.Event;
import org.jboss.arquillian.core.api.Instance;
import org.jboss.arquillian.core.api.annotation.Inject;
import org.jboss.arquillian.core.api.annotation.Observes;
import org.jboss.arquillian.test.spi.event.suite.AfterClass;
/**
* Uninstalls all packages previously deployed to Android device.
*
* Observes:
*
* - {@link AfterClass}
*
* Fires:
*
* - {@link BeforeAllAndroidDeploymentsUndeployed}
* - {@link BeforeAndroidDeploymentUndeployed}
* - {@link AfterAndroidDeploymentUndeployed}
* - {@link AfterAllAndroidDeploymentsUndeployed}
*
*
* @author Stefan Miklosovic
*
*/
public class AndroidDeploymentUninstaller {
@Inject
private Instance androidApplicationManager;
@Inject
private Instance androidDeploymentRegister;
@Inject
private Event beforeUndeploy;
@Inject
private Event afterUndeploy;
@Inject
private Event beforeAllUndeployed;
@Inject
private Event afterAllUndeployed;
/**
* Precedence is set to negative value to be sure that this observer will be treated as the last one in AfterClass context.
* We have to uninstall packages after all Drones are destroyed (so after all Selendroid servers are uninstalled since
* undeployment of Selendroid server is triggered after Drone destruction). If we uninstalled it in the proper undeployment
* lifecycle, it would automatically stop Selendroid servers so subsequent destroying of Drone instances would fail since
* they can not communicate with Selendroid servers anymore.
*
* This behavior is preserved even native plugin is not on class path.
*
* @param event
*/
public void onAndroidDeploymentUninstall(@Observes(precedence = -100) AfterClass event) {
// this is in try-catch block since when you put this artifact on class path and even Android container is not started,
// observers are registered so this class observes AfterClass but androidDeploymentRegister is null object because
// it was not created
try {
beforeAllUndeployed.fire(new BeforeAllAndroidDeploymentsUndeployed());
for (AndroidDeployment androidDeployment : androidDeploymentRegister.get().getAll()) {
beforeUndeploy.fire(new BeforeAndroidDeploymentUndeployed(androidDeployment));
androidApplicationManager.get().uninstall(androidDeployment);
afterUndeploy.fire(new AfterAndroidDeploymentUndeployed(androidDeployment));
}
afterAllUndeployed.fire(new AfterAllAndroidDeploymentsUndeployed());
} catch (NullPointerException ex) {
// intentionally empty
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy