blob: 595b39d892f21abfc65cc7ea8b7ae7af49dc710f [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* 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 vogar.android;
import com.google.common.collect.ImmutableList;
import java.io.File;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.runners.MockitoJUnitRunner;
import vogar.Classpath;
import vogar.Mode;
import vogar.ModeId;
import vogar.Target;
import vogar.Variant;
import vogar.commands.Command;
import vogar.commands.VmCommandBuilder;
import static org.junit.Assert.assertEquals;
/**
* Test the behaviour of the {@link DeviceRuntime} class when run with {@link AdbTarget}.
*/
@RunWith(MockitoJUnitRunner.class)
public class DeviceRuntimeAdbTargetTest extends AbstractModeTest {
@Override
protected Target createTarget() {
DeviceFilesystem deviceFilesystem =
new DeviceFilesystem(console, ImmutableList.<String>of());
DeviceFileCache deviceFileCache =
new DeviceFileCache(console, new File("runner"), deviceFilesystem);
return new AdbTarget(console, deviceFilesystem, deviceFileCache);
}
@Test
@VogarArgs({"action"})
public void testAdbTarget()
throws IOException {
Mode deviceRuntime = new DeviceRuntime(run, ModeId.DEVICE, Variant.X32,
deviceUserNameSupplier);
VmCommandBuilder builder = newVmCommandBuilder(deviceRuntime)
.classpath(classpath)
.mainClass("mainclass")
.args("-x", "a b");
Command command = builder.build(run.target);
List<String> args = command.getArgs();
assertEquals(Arrays.asList(
"adb", "shell", ""
+ "cd /work"
+ " &&"
+ " ANDROID_DATA=runner"
+ " dalvikvm32"
+ " -classpath"
+ " classes"
+ " -Duser.home=runner/dir/user.home"
+ " -Duser.name=fred"
+ " -Duser.language=en"
+ " -Duser.region=US"
+ " -Xcheck:jni"
+ " -Xjnigreflimit:2000"
+ " mainclass"
+ " -x a\\ b"), args);
}
@Test
@VogarArgs({"--benchmark", "action"})
public void testAdbTarget_Benchmark()
throws IOException {
Mode deviceRuntime = new DeviceRuntime(run, ModeId.DEVICE, Variant.X32,
deviceUserNameSupplier);
Classpath classpath = new Classpath();
classpath.addAll(new File("classes"));
VmCommandBuilder builder = newVmCommandBuilder(deviceRuntime)
.classpath(classpath)
.mainClass("mainclass")
.args("-x", "a b");
Command command = builder.build(run.target);
List<String> args = command.getArgs();
assertEquals(Arrays.asList(
"adb", "shell", ""
+ "cd /work"
+ " &&"
+ " ANDROID_DATA=runner"
+ " dalvikvm32"
+ " -classpath"
+ " classes"
+ " -Duser.home=runner/dir/user.home"
+ " -Duser.name=fred"
+ " -Duser.language=en"
+ " -Duser.region=US"
+ " -Xjnigreflimit:2000"
+ " mainclass"
+ " -x a\\ b"), args);
}
}