-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
210 lines (158 loc) · 6.55 KB
/
build.gradle.kts
File metadata and controls
210 lines (158 loc) · 6.55 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/*
* Copyright (C) 2025 Dremio Corporation
*
* 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.
*/
import kotlin.time.Duration
import kotlin.time.Duration.Companion.seconds
plugins {
id("authmgr-java-production")
id("authmgr-java-testing")
id("authmgr-maven")
}
description = "OAuth2 Agent for Dremio AuthManager"
ext { set("mavenName", "Auth Manager for Apache Iceberg - OAuth2 - Agent") }
val docs by
configurations.creating {
description = "Dependencies for generating configuration documentation"
isCanBeResolved = true
isCanBeConsumed = false
isVisible = false
}
dependencies {
api(libs.nimbus.oauth2.oidc.sdk) {
exclude(group = "com.github.stephenc.jcip", module = "jcip-annotations")
}
api(libs.nimbus.jose.jwt)
implementation(libs.httpclient5)
implementation(libs.smallrye.config)
// optional, but recommended for advanced cryptography (private_key_jwt client auth, DPoP)
compileOnly(libs.bouncycastle.bcpkix)
implementation(libs.slf4j.api)
implementation(libs.caffeine)
implementation(libs.jakarta.annotation.api)
compileOnly(libs.errorprone.annotations)
compileOnly(project(":authmgr-immutables"))
annotationProcessor(project(":authmgr-immutables", configuration = "processor"))
testFixturesApi(project(":authmgr-oauth2-tests"))
testFixturesApi(platform(libs.junit.bom))
testFixturesApi("org.junit.jupiter:junit-jupiter")
testFixturesApi(libs.junit.pioneer)
testFixturesApi(libs.assertj.core)
testFixturesApi(libs.mockito.core)
testFixturesApi(libs.nimbus.oauth2.oidc.sdk)
testFixturesApi(libs.nimbus.jose.jwt)
testFixturesApi(libs.guava)
testFixturesApi(platform(libs.testcontainers.bom))
testFixturesApi("org.testcontainers:testcontainers")
testFixturesApi("org.testcontainers:testcontainers-junit-jupiter")
testFixturesApi(libs.keycloak.admin.client)
testFixturesApi(libs.testcontainers.keycloak)
testFixturesImplementation(libs.bouncycastle.bcpkix)
// Required to compile expectation classes
testFixturesCompileOnly(libs.mockserver.netty)
testFixturesCompileOnly(libs.mockserver.client.java)
testFixturesCompileOnly(project(":authmgr-immutables"))
testFixturesAnnotationProcessor(project(":authmgr-immutables", configuration = "processor"))
testImplementation(libs.mockserver.netty)
testImplementation(libs.mockserver.client.java)
testImplementation(libs.bouncycastle.bcpkix)
testCompileOnly(project(":authmgr-immutables"))
testAnnotationProcessor(project(":authmgr-immutables", configuration = "processor"))
intTestCompileOnly(project(":authmgr-immutables"))
intTestAnnotationProcessor(project(":authmgr-immutables", configuration = "processor"))
intTestRuntimeOnly(libs.bouncycastle.bcpkix)
longTestCompileOnly(project(":authmgr-immutables"))
longTestAnnotationProcessor(project(":authmgr-immutables", configuration = "processor"))
longTestRuntimeOnly(libs.bouncycastle.bcpkix)
docs("com.thoughtworks.qdox:qdox:2.2.0")
}
tasks.named<Test>("test").configure {
configForks(4)
commonTestConfig()
}
tasks.named<Test>("intTest").configure {
configForks(3)
commonTestConfig()
}
val bouncyCastle = configurations.create("bouncyCastle")
dependencies { bouncyCastle(libs.bouncycastle.bcpkix) }
tasks.register<Test>("intTestNoBouncyCastle") {
description = "Runs integration tests without BouncyCastle dependencies"
group = "verification"
configForks(3)
commonTestConfig()
shouldRunAfter("test")
useJUnitPlatform()
testClassesDirs = sourceSets.intTest.get().output.classesDirs
classpath = sourceSets.intTest.get().runtimeClasspath - bouncyCastle
}
tasks.named("check") { dependsOn("intTestNoBouncyCastle") }
tasks.named<Test>("longTest").configure {
configForks(3)
commonTestConfig()
if (System.getProperty("authmgr.it.long.total") != null) {
val total = Duration.parse(System.getProperty("authmgr.it.long.total"))
systemProperty("authmgr.it.long.total", total.toIsoString())
// Add a 10-second safety window to the tests default timeout
systemProperty(
"junit.jupiter.execution.timeout.testable.method.default",
(total + 10.seconds).inWholeSeconds.toString() + " s",
)
}
}
val mockitoAgent = configurations.create("mockitoAgent")
dependencies { mockitoAgent(libs.mockito.core) { isTransitive = false } }
tasks { test { jvmArgs("-javaagent:${mockitoAgent.asPath}") } }
fun Test.configForks(forks: Int) {
if (System.getenv("CI") == null) {
maxParallelForks = forks
}
}
fun Test.commonTestConfig() {
val outputMemoryUsage = System.getProperty("authmgr.test.mockserver.outputMemoryUsage")
if (outputMemoryUsage.toBoolean()) {
val outputDir =
project.layout.buildDirectory.dir("reports/mockserver/${this.name}").get().asFile.absolutePath
outputs.dir(outputDir)
File(outputDir).mkdirs()
systemProperty("authmgr.test.mockserver.memoryUsageCsvDirectory", outputDir)
}
}
sourceSets.create("docs") {
java.srcDir("src/docs/java")
resources.srcDir("src/docs/resources")
compileClasspath += docs
runtimeClasspath += docs
}
tasks.named("processDocsResources", ProcessResources::class) {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
tasks.register<JavaExec>("generateDocs") {
group = "documentation"
description = "Generates configuration documentation from OAuth2AgentConfig"
mainClass.set("com.dremio.iceberg.authmgr.oauth2.agent.docs.DocumentationGenerator")
classpath = sourceSets.getByName("docs").runtimeClasspath
val inputFile =
project.file("src/main/java/com/dremio/iceberg/authmgr/oauth2/agent/OAuth2AgentConfig.java")
val outputFile = rootProject.file("docs/configuration.md")
val headerFile = sourceSets.getByName("docs").resources.singleFile
val header = headerFile.readText()
inputs.files(inputFile, headerFile)
outputs.file(outputFile)
args(inputFile.absolutePath, header, outputFile.absolutePath)
doFirst { outputFile.parentFile.mkdirs() }
}
tasks.named("publish") { dependsOn("generateDocs") }
rootProject.tasks.named("spotlessMarkdown") { dependsOn(":authmgr-oauth2-agent:generateDocs") }
rootProject.tasks.named("rat") { dependsOn(":authmgr-oauth2-agent:generateDocs") }