blob: d72b5c330bbaa9e87129a62d737278e9e4763069 (
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
|
package signatures
import org.jetbrains.dokka.testApi.testRunner.AbstractCoreTest
import org.jsoup.Jsoup
import org.jsoup.nodes.Element
import org.jsoup.select.Elements
import org.junit.jupiter.api.Test
import java.nio.file.Paths
import utils.TestOutputWriterPlugin
class DivergentSignatureTest : AbstractCoreTest() {
val testDataDir = getTestDataDir("multiplatform/basicMultiplatformTest").toAbsolutePath()
val configuration = dokkaConfiguration {
moduleName = "example"
sourceSets {
val common = sourceSet {
name = "common"
displayName = "common"
analysisPlatform = "common"
sourceRoots = listOf(Paths.get("$testDataDir/commonMain/kotlin").toString())
}
val jvmAndJsSecondCommonMain = sourceSet {
name = "jvmAndJsSecondCommonMain"
displayName = "jvmAndJsSecondCommonMain"
analysisPlatform = "common"
dependentSourceSets = setOf(common.value.sourceSetID)
sourceRoots = listOf(Paths.get("$testDataDir/jvmAndJsSecondCommonMain/kotlin").toString())
}
val js = sourceSet {
name = "js"
displayName = "js"
analysisPlatform = "js"
dependentSourceSets = setOf(common.value.sourceSetID, jvmAndJsSecondCommonMain.value.sourceSetID)
sourceRoots = listOf(Paths.get("$testDataDir/jsMain/kotlin").toString())
}
val jvm = sourceSet {
name = "jvm"
displayName = "jvm"
analysisPlatform = "jvm"
dependentSourceSets = setOf(common.value.sourceSetID, jvmAndJsSecondCommonMain.value.sourceSetID)
sourceRoots = listOf(Paths.get("$testDataDir/jvmMain/kotlin").toString())
}
}
}
@Test
fun `group { common + jvm + js }`() {
val writerPlugin = TestOutputWriterPlugin()
testFromData(
configuration,
pluginOverrides = listOf(writerPlugin)
) {
renderingStage = { _, _ ->
val content = writerPlugin.renderedContent("example/example/-clock/get-time.html")
assert(content.count() == 1)
assert(content.select("[data-filterable-current=example/common example/js example/jvm]").single().brief == "common")
}
}
}
@Test
fun `group { common + jvm }, group { js }`() {
val writerPlugin = TestOutputWriterPlugin()
testFromData(
configuration,
pluginOverrides = listOf(writerPlugin)
) {
renderingStage = { _, _ ->
val content = writerPlugin.renderedContent("example/example/-clock/get-times-in-millis.html")
assert(content.count() == 2)
assert(content.select("[data-filterable-current=example/common example/jvm]").single().brief == "Time in minis common")
assert(content.select("[data-filterable-current=example/js]").single().brief == "JS implementation of getTimeInMillis js" )
}
}
}
@Test
fun `group { js }, group { jvm }, group { js }`() {
val writerPlugin = TestOutputWriterPlugin()
testFromData(
configuration,
pluginOverrides = listOf(writerPlugin)
) {
renderingStage = { _, _ ->
val content = writerPlugin.renderedContent("example/example/-clock/get-year.html")
assert(content.count() == 3)
assert(content.select("[data-filterable-current=example/jvm]").single().brief == "JVM custom kdoc jvm")
assert(content.select("[data-filterable-current=example/js]").single().brief == "JS custom kdoc js")
assert(content.select("[data-filterable-current=example/common]").single().brief == "common")
}
}
}
private fun TestOutputWriterPlugin.renderedContent(path: String) = writer.contents.getValue(path)
.let { Jsoup.parse(it) }.select("#content").single().select("div.divergent-group")
private val Element.brief: String
get() = children().select(".brief-with-platform-tags").text()
}
|