blob: 4a4ada230cf33251a74d94ba7a8d8fb3f0ab8594 (
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
|
package mathjaxTest
import org.jetbrains.dokka.mathjax.LIB_PATH
import org.jetbrains.dokka.mathjax.MathjaxPlugin
import org.jetbrains.dokka.testApi.testRunner.AbstractCoreTest
import org.jsoup.Jsoup
import org.junit.jupiter.api.Test
import utils.TestOutputWriterPlugin
class MathjaxPluginTest : AbstractCoreTest() {
@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["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 source =
"""
|/src/main/kotlin/test/Test.kt
|package example
| /**
| * @usesMathJax
| *
| * \(\alpha_{out} = \alpha_{dst}\)
| * \(C_{out} = C_{dst}\)
| */
| fun test(): String = ""
""".trimIndent()
val writerPlugin = TestOutputWriterPlugin()
testInline(
source,
configuration,
pluginOverrides = listOf(writerPlugin, MathjaxPlugin())
) {
renderingStage = {
_, _ -> Jsoup
.parse(writerPlugin.writer.contents["root/example/test.html"])
.head()
.select("link, script")
.let {
assert(it.`is`("[href=$LIB_PATH], [src=$LIB_PATH]"))
}
}
}
}
}
|