blob: 49c31a9d3c406b4ef5da1ecbb16f5055d9d6442e [file] [log] [blame]
/*
* Copyright (C) 2013 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 com.android.build.gradle.internal.variant;
import com.android.annotations.NonNull;
import com.android.build.FilterData;
import com.android.build.OutputFile;
import com.android.build.gradle.AndroidConfig;
import com.android.build.gradle.internal.TaskManager;
import com.android.build.gradle.internal.core.GradleVariantConfiguration;
import com.android.build.gradle.internal.tasks.DeviceProviderInstrumentTestTask;
import com.google.common.collect.Lists;
import java.util.Collections;
import java.util.List;
/**
* Data about a variant that produce a test APK
*/
public class TestVariantData extends ApkVariantData {
public DeviceProviderInstrumentTestTask connectedTestTask;
public final List<DeviceProviderInstrumentTestTask> providerTestTaskList = Lists.newArrayList();
@NonNull
private final TestedVariantData testedVariantData;
public TestVariantData(
@NonNull AndroidConfig androidConfig,
@NonNull TaskManager taskManager,
@NonNull GradleVariantConfiguration config,
@NonNull TestedVariantData testedVariantData) {
super(androidConfig, taskManager, config);
this.testedVariantData = testedVariantData;
// create default output
createOutput(OutputFile.OutputType.MAIN,
Collections.<FilterData>emptyList());
}
@NonNull
public TestedVariantData getTestedVariantData() {
return testedVariantData;
}
@Override
@NonNull
public String getDescription() {
String prefix;
switch (getType()) {
case ANDROID_TEST:
prefix = "android (on device) tests";
break;
case UNIT_TEST:
prefix = "unit tests";
break;
default:
throw new IllegalStateException("Unknown test variant type.");
}
if (getVariantConfiguration().hasFlavors()) {
return String.format("%s for the %s%s build", prefix,
getCapitalizedFlavorName(), getCapitalizedBuildTypeName());
} else {
return String.format("%s for the %s build", prefix,
getCapitalizedBuildTypeName());
}
}
@Override
public boolean getZipAlignEnabled() {
return false;
}
}