com.jayway.maven.plugins.android.standalonemojos.AbstractInstrumentationMojo Maven / Gradle / Ivy
/*
* Copyright (C) 2009 Jayway AB
* Copyright (C) 2007-2008 JVending Masa
*
* 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 com.jayway.maven.plugins.android.standalonemojos;
import com.jayway.maven.plugins.android.AbstractIntegrationtestMojo;
import com.jayway.maven.plugins.android.CommandExecutor;
import com.jayway.maven.plugins.android.ExecutionException;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.commons.lang.StringUtils;
import java.util.ArrayList;
import java.util.List;
/**
* @author [email protected]
*/
public abstract class AbstractInstrumentationMojo extends AbstractIntegrationtestMojo {
/**
* Package name of the apk we wish to instrument. If not specified, it is inferred from
* AndroidManifest.xml
.
* @optional
* @parameter expression="${android.instrumentationPackage}
*/
private String instrumentationPackage;
/**
* Class name of test runner. If not specified, it is inferred from AndroidManifest.xml
.
* @optional
* @parameter expression="${android.instrumentationRunner}"
*/
private String instrumentationRunner;
protected void instrument() throws MojoExecutionException, MojoFailureException {
if(instrumentationPackage == null) {
instrumentationPackage = extractPackageNameFromAndroidManifest(androidManifestFile);
}
if(instrumentationRunner == null) {
instrumentationRunner = extractInstrumentationRunnerFromAndroidManifest(androidManifestFile);
}
CommandExecutor executor = CommandExecutor.Factory.createDefaultCommmandExecutor();
executor.setLogger(this.getLog());
List commands = new ArrayList();
// Check if a specific device should be used
if (StringUtils.isNotBlank(device)) {
if ("usb".equals(device)) {
commands.add("-d");
} else if ("emulator".equals(device)) {
commands.add("-e");
} else {
commands.add("-s");
commands.add(device);
}
}
commands.add("shell");
commands.add("am");
commands.add("instrument");
commands.add( "-w");
commands.add( instrumentationPackage + "/" + instrumentationRunner);
getLog().info(getAndroidSdk().getPathForTool("adb") + " " + commands.toString());
try {
executor.executeCommand(getAndroidSdk().getPathForTool("adb"), commands, project.getBasedir(), true);
final String standardOut = executor.getStandardOut ();
final String standardError = executor.getStandardError();
getLog().debug(standardOut);
getLog().debug(standardError);
// Fail when tests on device fail. adb does not exit with errorcode!=0 or even print to stderr, so we have to parse stdout.
if (standardOut == null || !standardOut.matches(".*?OK \\([0-9]+ tests?\\)\\s*")){
throw new MojoFailureException("Tests failed on device.");
}
} catch (ExecutionException e) {
getLog().error(executor.getStandardOut());
getLog().error(executor.getStandardError());
throw new MojoFailureException("Tests failed on device.");
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy