diff options
author | Fred Sladkey <fsladkey@gmail.com> | 2021-08-30 11:09:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 17:09:49 +0200 |
commit | a74b3c1cabde1dad3e91f804a89a90398dba1932 (patch) | |
tree | 0419151226f481922d008978d6c653643ac77413 /plugins/base/src/test | |
parent | 1f58b5b3d8dc83338561b2ca64d6434b0c3ee1a3 (diff) | |
download | dokka-a74b3c1cabde1dad3e91f804a89a90398dba1932.tar.gz dokka-a74b3c1cabde1dad3e91f804a89a90398dba1932.tar.bz2 dokka-a74b3c1cabde1dad3e91f804a89a90398dba1932.zip |
Don't force @literal in javadoc to be surrounded by code tag (#2089)
* Don't force @literal in javadoc to be surrounded by code tag
* Enclose in <literal> tag and add test for angle brackets
Diffstat (limited to 'plugins/base/src/test')
-rw-r--r-- | plugins/base/src/test/kotlin/parsers/JavadocParserTest.kt | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/plugins/base/src/test/kotlin/parsers/JavadocParserTest.kt b/plugins/base/src/test/kotlin/parsers/JavadocParserTest.kt index d6fffee3..bdb1af86 100644 --- a/plugins/base/src/test/kotlin/parsers/JavadocParserTest.kt +++ b/plugins/base/src/test/kotlin/parsers/JavadocParserTest.kt @@ -6,6 +6,8 @@ import org.jetbrains.dokka.model.DEnum import org.jetbrains.dokka.model.DModule import org.jetbrains.dokka.model.doc.CodeBlock import org.jetbrains.dokka.model.doc.CodeInline +import org.jetbrains.dokka.model.doc.P +import org.jetbrains.dokka.model.doc.Pre import org.jetbrains.dokka.model.doc.Text import org.junit.jupiter.api.Assertions.assertEquals import org.junit.jupiter.api.Test @@ -107,4 +109,109 @@ class JavadocParserTest : BaseAbstractTest() { } } } + + @Test + fun `literal tag`() { + val source = """ + |/src/main/kotlin/test/Test.java + |package example + | + | /** + | * An example of using the literal tag + | * {@literal @}Entity + | * public class User {} + | */ + | public class Test {} + """.trimIndent() + testInline( + source, + configuration, + ) { + documentablesCreationStage = { modules -> + val docs = modules.first().packages.first().classlikes.single().documentation.first().value + val root = docs.children.first().root + + kotlin.test.assertEquals( + listOf( + Text(body = "An example of using the literal tag "), + Text(body = "@"), + Text(body = "Entity public class User {}"), + ), + root.children.first().children + ) + } + } + } + + @Test + fun `literal tag nested under pre tag`() { + val source = """ + |/src/main/kotlin/test/Test.java + |package example + | + | /** + | * An example of using the literal tag + | * <pre> + | * {@literal @}Entity + | * public class User {} + | * </pre> + | */ + | public class Test {} + """.trimIndent() + testInline( + source, + configuration, + ) { + documentablesCreationStage = { modules -> + val docs = modules.first().packages.first().classlikes.single().documentation.first().value + val root = docs.children.first().root + + kotlin.test.assertEquals( + listOf( + P(children = listOf(Text(body = "An example of using the literal tag "))), + Pre(children = + listOf( + Text(body = "@"), + Text(body = "Entity\npublic class User {}\n") + ) + ) + ), + root.children + ) + } + } + } + + @Test + fun `literal tag containing angle brackets`() { + val source = """ + |/src/main/kotlin/test/Test.java + |package example + | + | /** + | * An example of using the literal tag + | * {@literal a<B>c} + | */ + | public class Test {} + """.trimIndent() + testInline( + source, + configuration, + ) { + documentablesCreationStage = { modules -> + val docs = modules.first().packages.first().classlikes.single().documentation.first().value + val root = docs.children.first().root + + kotlin.test.assertEquals( + listOf( + P(children = listOf( + Text(body = "An example of using the literal tag "), + Text(body = "a<B>c") + )), + ), + root.children + ) + } + } + } } |