blob: a5f5feb5579f08f380fbe14c3b33726d54ff4b17 (
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
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package renderers.html
import org.jetbrains.dokka.base.testApi.testRunner.BaseAbstractTest
import utils.TestOutputWriterPlugin
import utils.pagesJson
import kotlin.test.Test
import kotlin.test.assertEquals
class SearchbarDataInstallerTest: BaseAbstractTest() {
@Test // see #2289
fun `should display description of root declarations without a leading dot`() {
val configuration = dokkaConfiguration {
moduleName = "Dokka Module"
sourceSets {
sourceSet {
sourceRoots = listOf("src/kotlin/Test.kt")
}
}
}
val source = """
|/src/kotlin/Test.kt
|
|class Test
|
""".trimIndent()
val writerPlugin = TestOutputWriterPlugin()
testInline(
source,
configuration,
pluginOverrides = listOf(writerPlugin)
) {
renderingStage = { _, _ ->
val searchRecords = writerPlugin.writer.pagesJson()
assertEquals(
"Test",
searchRecords.find { record -> record.name == "class Test" }?.description ?: ""
)
}
}
}
}
|