mirror of
https://github.com/Myzel394/NumberHub.git
synced 2025-06-18 08:15:26 +02:00
91 lines
3.0 KiB
Kotlin
91 lines
3.0 KiB
Kotlin
/*
|
|
* Unitto is a calculator for Android
|
|
* Copyright (c) 2023-2024 Elshan Agaev
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package app.myzel394.numberhub
|
|
|
|
import com.android.build.api.variant.AndroidComponentsExtension
|
|
import org.gradle.api.Project
|
|
import org.gradle.api.tasks.testing.Test
|
|
import org.gradle.kotlin.dsl.configure
|
|
import org.gradle.kotlin.dsl.register
|
|
import org.gradle.kotlin.dsl.withType
|
|
import org.gradle.testing.jacoco.plugins.JacocoPluginExtension
|
|
import org.gradle.testing.jacoco.plugins.JacocoTaskExtension
|
|
import org.gradle.testing.jacoco.tasks.JacocoReport
|
|
import java.util.Locale
|
|
|
|
private val coverageExclusions = listOf(
|
|
// Android
|
|
"**/R.class",
|
|
"**/R\$*.class",
|
|
"**/BuildConfig.*",
|
|
"**/Manifest*.*"
|
|
)
|
|
|
|
private fun String.capitalize() = replaceFirstChar {
|
|
if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString()
|
|
}
|
|
|
|
|
|
internal fun Project.configureJacoco(
|
|
androidComponentsExtension: AndroidComponentsExtension<*, *, *>,
|
|
) {
|
|
configure<JacocoPluginExtension> {
|
|
toolVersion = libs.findVersion("orgJacocoOrgJacocoCore").get().toString()
|
|
}
|
|
|
|
val jacocoTestReport = tasks.create("jacocoTestReport")
|
|
|
|
androidComponentsExtension.onVariants { variant ->
|
|
val testTaskName = "test${variant.name.capitalize()}UnitTest"
|
|
|
|
val reportTask = tasks.register("jacoco${testTaskName.capitalize()}Report", JacocoReport::class) {
|
|
dependsOn(testTaskName)
|
|
|
|
reports {
|
|
xml.required.set(true)
|
|
html.required.set(true)
|
|
|
|
|
|
}
|
|
|
|
classDirectories.setFrom(
|
|
fileTree("$buildDir/tmp/kotlin-classes/${variant.name}") {
|
|
exclude(coverageExclusions)
|
|
}
|
|
)
|
|
|
|
sourceDirectories.setFrom(files("$projectDir/src/main/java", "$projectDir/src/main/kotlin"))
|
|
executionData.setFrom(file("$buildDir/jacoco/$testTaskName.exec"))
|
|
}
|
|
|
|
jacocoTestReport.dependsOn(reportTask)
|
|
}
|
|
|
|
tasks.withType<Test>().configureEach {
|
|
configure<JacocoTaskExtension> {
|
|
// Required for JaCoCo + Robolectric
|
|
isIncludeNoLocationClasses = true
|
|
|
|
// Required for JDK 11 with the above
|
|
// https://github.com/gradle/gradle/issues/5184#issuecomment-391982009
|
|
excludes = listOf("jdk.internal.*")
|
|
}
|
|
}
|
|
}
|