-
Notifications
You must be signed in to change notification settings - Fork 0
/
jacoco.gradle
127 lines (127 loc) · 5.52 KB
/
jacoco.gradle
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
apply plugin: 'jacoco'
jacoco {
toolVersion = "0.8.5"
}
project.afterEvaluate {
def buildType = "debug"
def productFlavor = ""
def buildTypes = android.buildTypes.collect { type ->
type.name
}
def productFlavors = android.productFlavors.collect { flavor ->
flavor.name
}
// When no product flavors defined, use empty
if (!productFlavors) productFlavors.add('')
productFlavors.each { productFlavorName ->
buildTypes.each { buildTypeName ->
def sourceName = ""
def sourcePath = ""
if (!productFlavorName) {
sourceName = "${buildTypeName}"
sourcePath = sourceName
} else {
sourceName = "${productFlavorName}${buildTypeName.capitalize()}"
sourcePath = "${productFlavorName}/${buildTypeName}"
}
def testTaskName = "test${sourceName.capitalize()}UnitTest"
//println("sourceName: $sourceName")
//println("sourcePath: $sourcePath")
task "jacoco${sourceName.capitalize()}TestReport"(type: JacocoReport, dependsOn:
[
testTaskName,
]
) {
group = "Reporting"
description = "Generate Jacoco coverage reports on the ${sourceName.capitalize()} build."
def fileFilter = [
//UI non testable
'**/*Adapter.*',
'**/*ViewHolder*.*',
'**/*Fragment*.*',
'**/*BottomSheet*.*',
'**/*Activity*.*',
'**/*Binding.*',
'**/*Navigator*.*',
'**/*NavigatorImpl*.*',
//data non testable
'**/api/*Api*.*',
'**/network/*Network*.*',
'**/R.class',
'**/R',
'**/R$*.class',
//'**/BuildConfig.*',
//'**/BuildConfig',
'**/Manifest*.*',
'**/*$ViewInjector*.*',
'**/*$ViewBinder*.*',
'**/*Module.*', // Modules for Dagger.
'**/*Dagger*.*', // Dagger auto-generated code.
'**/*MembersInjector*.*', // Dagger auto-generated code.
'**/*_Provide*Factory*.*',
//add libraries
'android/**/*.*',
'androidx/**/*.*',
'uk/**/*.*',
'io/**/*.*',
//remove what we don't test
'androidTest/**/*.*',
'test/**/*.*',
'**/injector/**/*.*',
'**/**_ViewBinding**',
'**/*EventType.*',
'**/**Mocked',
'**/*_Factory*.*', //Dagger auto-generated code
'**/*AssistedFactory*.*', //Dagger auto-generated code
'**/*AssistedFactory_Factory*.*', //Dagger auto-generated code
'**/*GeneratedInjector*.*', //Dagger auto-generated code
'**/*MemberInjector*.*', //Dagger auto-generated code
'**/*_HiltModule*.*', //Dagger auto-generated code
'**/Hilt_*.*', //Dagger auto-generated code,
'hilt_aggregated_deps/*' //Dagger auto-generated code
]
reports {
xml.enabled = true
html.enabled = true
csv.enabled = true
}
tasks.withType(Test) {
jacoco.includeNoLocationClasses = true
jacoco.excludes = ['jdk.internal.*']
}
def kotlinClassesDir = "${buildDir}/tmp/kotlin-classes/${sourceName}/"
def javaClassesDir = "${buildDir}/intermediates/javac/${sourceName}/classes/"
def javaDebugTree = fileTree(
dir: javaClassesDir,
excludes: fileFilter
)
def kotlinDebugTree = fileTree(
dir: kotlinClassesDir,
excludes: fileFilter
)
//println("jacoco javaClassesDir : $javaClassesDir")
//println("jacoco kotlinClassesDir : $kotlinClassesDir")
// generated classes
getClassDirectories().from(files([
javaDebugTree,
kotlinDebugTree
]))
// sources
getSourceDirectories().from(files([
android.sourceSets.main.java.srcDirs,
"src/main/kotlin"
]))
def executionData = "${buildDir}/jacoco/test${sourceName.capitalize()}UnitTest.exec"
//println("executionData: $executionData")
getExecutionData().from(
files([
fileTree(project.projectDir) {
setIncludes(["**/**/*.exec", "**/**/*.ec"])
}
])
)
//executionData = files("${buildDir}/jacoco/test${productFlavor}${buildType}UnitTest.exec")
}
}
}
}