blob: b1ae85ede3fef84797701303a03c145b84334415 [file] [log] [blame]
/*
* Copyright (C) 2020 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.model
import com.android.build.gradle.integration.common.fixture.model.ReferenceModelComparator
import com.android.build.gradle.integration.common.fixture.model.ModelComparator
import com.android.build.gradle.integration.common.fixture.testprojects.PluginType
import com.android.build.gradle.integration.common.fixture.testprojects.createGradleProject
import com.android.build.gradle.integration.common.fixture.testprojects.prebuilts.setUpHelloWorld
import com.android.builder.model.v2.ide.SyncIssue
import org.junit.Rule
import org.junit.Test
class HelloWorldAppModelTest: ModelComparator() {
@get:Rule
val project = createGradleProject {
rootProject {
plugins.add(PluginType.ANDROID_APP)
android {
setUpHelloWorld()
}
}
}
@Test
fun `test AndroidProject model`() {
val result = project.modelV2()
.ignoreSyncIssues(SyncIssue.SEVERITY_WARNING)
.fetchAndroidProjects()
with(result).compare(
model = result.container.singleModel,
goldenFile = "AndroidProject"
)
}
@Test
fun `test VariantDependencies model`() {
val result = project.modelV2()
.ignoreSyncIssues(SyncIssue.SEVERITY_WARNING)
.fetchVariantDependencies("debug")
with(result).compare(
model = result.container.singleModel,
goldenFile = "VariantDependencies"
)
}
}
class ApplicationIdInAppModelTest: ReferenceModelComparator(
referenceConfig = {
rootProject {
plugins.add(PluginType.ANDROID_APP)
android {
setUpHelloWorld()
}
}
},
deltaConfig = {
rootProject {
android {
applicationId = "customized.application.id"
}
}
},
syncOptions = {
ignoreSyncIssues(SyncIssue.SEVERITY_WARNING)
}
) {
@Test
fun `test AndroidProject model`() {
compareAndroidProjectWith(goldenFileSuffix = "AndroidProject")
}
}
class DisabledAidlInAppModelTest: ReferenceModelComparator(
referenceConfig = {
rootProject {
plugins.add(PluginType.ANDROID_APP)
android {
setUpHelloWorld()
}
}
},
deltaConfig = {
rootProject {
android {
buildFeatures {
aidl = false
}
}
}
},
syncOptions = {
ignoreSyncIssues(SyncIssue.SEVERITY_WARNING)
}
) {
@Test
fun `test AndroidProject model`() {
compareAndroidProjectWith(goldenFileSuffix = "AndroidProject")
}
}
class DisabledRenderScriptInAppModelTest: ReferenceModelComparator(
referenceConfig = {
rootProject {
plugins.add(PluginType.ANDROID_APP)
android {
setUpHelloWorld()
}
}
},
deltaConfig = {
rootProject {
android {
buildFeatures {
renderScript = false
}
}
}
},
syncOptions = {
ignoreSyncIssues(SyncIssue.SEVERITY_WARNING)
}
) {
@Test
fun `test AndroidProject model`() {
compareAndroidProjectWith(goldenFileSuffix = "AndroidProject")
}
}
class DisabledResValuesInAppModelTest: ReferenceModelComparator(
referenceConfig = {
rootProject {
plugins.add(PluginType.ANDROID_APP)
android {
setUpHelloWorld()
}
}
},
deltaConfig = {
rootProject {
android {
buildFeatures {
resValues = false
}
}
}
},
syncOptions = {
ignoreSyncIssues(SyncIssue.SEVERITY_WARNING)
}
) {
@Test
fun `test AndroidProject model`() {
compareAndroidProjectWith(goldenFileSuffix = "AndroidProject")
}
}
class DisabledShadersInAppModelTest: ReferenceModelComparator(
referenceConfig = {
rootProject {
plugins.add(PluginType.ANDROID_APP)
android {
setUpHelloWorld()
}
}
},
deltaConfig = {
rootProject {
android {
buildFeatures {
shaders = false
}
}
}
},
syncOptions = {
ignoreSyncIssues(SyncIssue.SEVERITY_WARNING)
}
) {
@Test
fun `test AndroidProject model`() {
compareAndroidProjectWith(goldenFileSuffix = "AndroidProject")
}
}
class DisabledBuildConfigInAppModelTest: ReferenceModelComparator(
referenceConfig = {
rootProject {
plugins.add(PluginType.ANDROID_APP)
android {
setUpHelloWorld()
}
}
},
deltaConfig = {
rootProject {
android {
buildFeatures {
buildConfig = false
}
}
}
},
syncOptions = {
ignoreSyncIssues(SyncIssue.SEVERITY_WARNING)
}
) {
@Test
fun `test AndroidProject model`() {
compareAndroidProjectWith(goldenFileSuffix = "AndroidProject")
}
}
class EnabledMlModelBindingInAppModelTest: ReferenceModelComparator(
referenceConfig = {
rootProject {
plugins.add(PluginType.ANDROID_APP)
android {
setUpHelloWorld()
}
}
},
deltaConfig = {
rootProject {
android {
buildFeatures {
mlModelBinding = true
}
}
}
},
syncOptions = {
ignoreSyncIssues(SyncIssue.SEVERITY_WARNING)
}
) {
@Test
fun `test AndroidProject model`() {
compareAndroidProjectWith(goldenFileSuffix = "AndroidProject")
}
}
class DefaultBuildTypeAppModelTest: ReferenceModelComparator(
referenceConfig = {
rootProject {
plugins.add(PluginType.ANDROID_APP)
android {
setUpHelloWorld()
}
}
},
deltaConfig = {
rootProject {
android {
buildTypes {
named("debug") {
isDefault = true
}
}
}
}
},
syncOptions = {
ignoreSyncIssues(SyncIssue.SEVERITY_WARNING)
}
) {
@Test
fun `test AndroidProject model`() {
compareAndroidProjectWith(goldenFileSuffix = "AndroidProject")
}
}
class DefaultFlavorAppModelTest: ReferenceModelComparator(
referenceConfig = {
rootProject {
plugins.add(PluginType.ANDROID_APP)
android {
setUpHelloWorld()
productFlavors {
named("flavorA") {
dimension = "foo"
}
named("flavorB") {
dimension = "foo"
}
}
}
}
},
deltaConfig = {
rootProject {
android {
productFlavors {
named("flavorA") {
isDefault = true
}
}
}
}
},
syncOptions = {
ignoreSyncIssues(SyncIssue.SEVERITY_WARNING)
}
) {
@Test
fun `test AndroidProject model`() {
compareAndroidProjectWith(goldenFileSuffix = "AndroidProject")
}
}