blob: fc7e9a2c89067b527d48b56185e713ecbf1ddebb (
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
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package utils
import org.jetbrains.dokka.DokkaConfigurationImpl
import org.jetbrains.dokka.model.DModule
import org.jetbrains.dokka.plugability.DokkaPlugin
abstract class AbstractModelTest(val path: String? = null, val pkg: String) : ModelDSL(), AssertDSL {
fun inlineModelTest(
query: String,
platform: String = "jvm",
prependPackage: Boolean = true,
cleanupOutput: Boolean = true,
pluginsOverrides: List<DokkaPlugin> = emptyList(),
configuration: DokkaConfigurationImpl? = null,
block: DModule.() -> Unit
) {
val testConfiguration = configuration ?: dokkaConfiguration {
suppressObviousFunctions = false
sourceSets {
sourceSet {
sourceRoots = listOf("src/")
analysisPlatform = platform
classpath += jvmStdlibPath!!
}
}
}
val prepend = path.let { p -> p?.let { "|$it\n" } ?: "" } + if (prependPackage) "|package $pkg" else ""
testInline(
query = ("$prepend\n$query").trim().trimIndent(),
configuration = testConfiguration,
cleanupOutput = cleanupOutput,
pluginOverrides = pluginsOverrides
) {
documentablesTransformationStage = block
}
}
}
|