summaryrefslogtreecommitdiff
path: root/build-system/integration-test/application/src/test/java/com/android/build/gradle/integration/application/AarPublishTest.kt
blob: 80e6ad83a0379a9160d0be308a4218013bd31b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
 * Copyright (C) 2021 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.application

import com.android.SdkConstants
import com.android.build.gradle.integration.common.fixture.GradleTestProject
import com.android.build.gradle.integration.common.fixture.app.MinimalSubProject
import com.android.build.gradle.integration.common.fixture.app.MultiModuleTestProject
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.options.BooleanOption
import com.android.utils.FileUtils
import com.google.wireless.android.sdk.stats.GradleBuildProject
import org.junit.Rule
import org.junit.Test
import org.junit.rules.TemporaryFolder
import java.io.File
import java.net.URLClassLoader
import java.util.zip.ZipFile

/*
* Tests to verify that AARs produced from library modules in build/output/aar are in a state
* which can be published
* e.g. to a public repository like Maven, AAR contains expected file structure.
*/
class AarPublishTest {

    @get:Rule
    val project = createGradleProject {
        subProject(":library") {
            plugins.add(PluginType.ANDROID_LIB)
            android {
                defaultCompileSdk()
                namespace = "com.example.library"
                buildTypes {
                    named("debug") {
                        testCoverageEnabled = true
                    }
                }
                addFile("src/main/res/values/strings.xml",
                        "<resources>\n" +
                                "<string name=\"one\">Some string</string>\n" +
                                "</resources>")
            }
        }
    }

    @get:Rule
    val temporaryDirectory = TemporaryFolder()

    /* Test to verify that AARs do not include Jacoco dependencies when published. */
    @Test
    fun canPublishLibraryAarWithCoverageEnabled() {
        val librarySubproject = project.getSubproject(":library")
        project.execute("library:assembleDebug")

        val libraryPublishedAar =
            FileUtils.join(librarySubproject.outputDir, "aar", "library-debug.aar")
        val tempTestData = temporaryDirectory.newFolder("testData")
        val extractedJar = File(tempTestData, "classes.jar")
        // Extracts the zipped BuildConfig.class in library-debug.aar/classes.jar to
        // the extractedBuildConfigClass temporary file, so it can be later loaded
        // into a classloader.
        ZipFile(libraryPublishedAar).use { libraryAar ->
            libraryAar.getInputStream(libraryAar.getEntry("classes.jar")).use { stream ->
                extractedJar.writeBytes(stream.readBytes())
            }
        }
        URLClassLoader.newInstance(arrayOf(extractedJar.toURI().toURL())).use {
            val buildConfig =
                it.loadClass("com.example.library.BuildConfig")
            try {
                // Invoking the constructor will throw a ClassNotFoundException for
                // Jacoco agent classes if the classes contain a call to Jacoco.
                // If there is no issues with invoking the constructor,
                // then there are no Jacoco dependencies in the AAR classes.
                buildConfig.getConstructor().newInstance()
            } catch (e: NoClassDefFoundError) {
                throw AssertionError(
                    "This AAR is not publishable as it contains a dependency on Jacoco.", e
                )
            }
        }
    }

    @Test
    fun aarContainsAllowedRootDirectories() {
        project.execute("library:assembleDebug")
        project.getSubproject(":library").assertThatAar(GradleTestProject.ApkType.DEBUG.buildType) {
            containsFile("/AndroidManifest.xml")
            containsFile("/R.txt")
            containsFile("/classes.jar")
            containsFile("/res/values/values.xml")
            containsFile("META-INF/com/android/build/gradle/aar-metadata.properties")
            // Regression test for b/232117952
            doesNotContain("/values/")
        }
    }
}