aboutsummaryrefslogtreecommitdiff
path: root/runners/cli/src/test
diff options
context:
space:
mode:
authorAndrzej Ratajczak <32793002+BarkingBad@users.noreply.github.com>2022-02-14 22:25:41 +0100
committerGitHub <noreply@github.com>2022-02-15 00:25:41 +0300
commitb0244f69277f492eb87694cf34cc620a265adbcb (patch)
treea45bb3d754338feb3a4ba0faa7daf16a87b16434 /runners/cli/src/test
parent558c58b13d0b05537d1986696fb778cf30888f4b (diff)
downloaddokka-b0244f69277f492eb87694cf34cc620a265adbcb.tar.gz
dokka-b0244f69277f492eb87694cf34cc620a265adbcb.tar.bz2
dokka-b0244f69277f492eb87694cf34cc620a265adbcb.zip
Fix loading empty properties by CLI json parser (#2362)
Diffstat (limited to 'runners/cli/src/test')
-rw-r--r--runners/cli/src/test/kotlin/cli/CliTest.kt13
-rw-r--r--runners/cli/src/test/resources/my-file-no-sourceset-options.json13
2 files changed, 26 insertions, 0 deletions
diff --git a/runners/cli/src/test/kotlin/cli/CliTest.kt b/runners/cli/src/test/kotlin/cli/CliTest.kt
index 5910e938..967003dc 100644
--- a/runners/cli/src/test/kotlin/cli/CliTest.kt
+++ b/runners/cli/src/test/kotlin/cli/CliTest.kt
@@ -27,4 +27,17 @@ class CliIntegrationTest {
}
+ @Test
+ fun `should not fail when no sourceset options are specified`() {
+ val jsonPath = Paths.get(javaClass.getResource("/my-file-no-sourceset-options.json")?.toURI() ?: throw IllegalStateException("No JSON found!")).toFile().toString()
+ val globalArguments = GlobalArguments(arrayOf(jsonPath))
+
+ val configuration = initializeConfiguration(globalArguments)
+
+ configuration.sourceSets.forEach {
+ assertTrue(it.perPackageOptions.isEmpty())
+ assertTrue(it.sourceLinks.isEmpty())
+ assertTrue(it.externalDocumentationLinks.size == 2) // there are default values, java and kotlin stdlibs
+ }
+ }
}
diff --git a/runners/cli/src/test/resources/my-file-no-sourceset-options.json b/runners/cli/src/test/resources/my-file-no-sourceset-options.json
new file mode 100644
index 00000000..3a8643d1
--- /dev/null
+++ b/runners/cli/src/test/resources/my-file-no-sourceset-options.json
@@ -0,0 +1,13 @@
+{
+ "outputDir": "build/docs",
+ "sourceSets": [
+ {
+ "moduleDisplayName": "Sample",
+ "sourceSetID": {
+ "scopeId": "sample",
+ "sourceSetName": "main"
+ },
+ "sourceRoots": ["sample"]
+ }
+ ]
+}