blob: 2698c8f0b498b699a53327f0c2c517e6dee4e9be [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 com.android.build.gradle.integration.performance
import com.android.build.gradle.integration.common.fixture.GradleTestProject
import com.android.build.gradle.integration.common.fixture.TestProject
import com.android.build.gradle.integration.common.fixture.app.AndroidTestApp
import com.android.build.gradle.integration.common.fixture.app.HelloWorldApp
import com.android.build.gradle.integration.common.fixture.app.MultiModuleTestProject
import com.android.build.gradle.integration.common.fixture.app.TestSourceFile
import com.android.build.gradle.integration.common.fixture.app.VariantBuildScriptGenerator
import org.junit.AfterClass
import org.junit.ClassRule
import org.junit.Test
/**
* Performance test on gradle experimantal plugin with multiple subprojects and multiple variants.
*/
class MultiProjectsAndroidComponentTest {
public static AndroidTestApp app = new HelloWorldApp()
static {
app.addFile(new TestSourceFile("", "build.gradle",
new VariantBuildScriptGenerator(
buildTypes: VariantBuildScriptGenerator.MEDIUM_NUMBER,
productFlavors: VariantBuildScriptGenerator.MEDIUM_NUMBER,
"""
apply plugin: "com.android.model.application"
model {
android.config {
compileSdkVersion $GradleTestProject.DEFAULT_COMPILE_SDK_VERSION
buildToolsVersion "$GradleTestProject.DEFAULT_BUILD_TOOL_VERSION"
}
android.buildTypes {
\${buildTypes}
}
android.productFlavors {
\${productFlavors}
}
}
""".stripIndent()).createBuildScript())
)
}
public static TestProject baseProject = new MultiModuleTestProject("app", app, 10)
@ClassRule
public static GradleTestProject project = GradleTestProject.builder()
.fromTestApp(baseProject)
.forExpermimentalPlugin(true)
.create()
@AfterClass
static void cleanUp() {
app = null;
baseProject = null;
project = null;
}
@Test
void performanceTest() {
project.execute("help")
}
}