blob: 0f713708be299aa7e7148006dafa9f6d689f1012 (
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
|
package mathjaxTest
import org.jetbrains.dokka.mathjax.LIB_PATH
import org.jetbrains.dokka.mathjax.MathjaxPlugin
import org.jetbrains.dokka.base.testApi.testRunner.BaseAbstractTest
import org.jsoup.Jsoup
import org.junit.jupiter.api.Test
import utils.TestOutputWriterPlugin
class MathjaxPluginTest : BaseAbstractTest() {
@Test
fun noMathjaxTest() {
val configuration = dokkaConfiguration {
sourceSets {
sourceSet {
sourceRoots = listOf("src/main/kotlin/test/Test.kt")
}
}
}
val source =
"""
|/src/main/kotlin/test/Test.kt
|package example
| /**
| * Just a regular kdoc
| */
| fun test(): String = ""
""".trimIndent()
val writerPlugin = TestOutputWriterPlugin()
testInline(
source,
configuration,
pluginOverrides = listOf(writerPlugin, MathjaxPlugin())
) {
renderingStage = {
_, _ -> Jsoup
.parse(writerPlugin.writer.contents.getValue("root/example/test.html"))
.head()
.select("link, script")
.let {
assert(!it.`is`("[href=$LIB_PATH], [src=$LIB_PATH]"))
}
}
}
}
@Test
fun usingMathjaxTest() {
val configuration = dokkaConfiguration {
sourceSets {
sourceSet {
sourceRoots = listOf("src/main/kotlin/test/Test.kt")
}
}
}
val math = "a^2 = b^2 + c^2"
val source =
"""
|/src/main/kotlin/test/Test.kt
|package example
| /**
| * @usesMathJax
| *
| * \($math\)
| */
| fun test(): String = ""
""".trimIndent()
val writerPlugin = TestOutputWriterPlugin()
testInline(
source,
configuration,
pluginOverrides = listOf(writerPlugin, MathjaxPlugin())
) {
renderingStage = { _, _ ->
val parsed = Jsoup.parse(writerPlugin.writer.contents.getValue("root/example/test.html"))
// Ensure the MathJax CDN is loaded
assert(parsed.select("link, script").`is`("[href=$LIB_PATH], [src=$LIB_PATH]"))
// Ensure the contents are displayed
assert(parsed.select("p").any {
it.text().contains(math)
})
}
}
}
}
|