aboutsummaryrefslogtreecommitdiff
path: root/dokka-runners/dokkatoo/modules/dokkatoo-plugin/src/testFunctional/kotlin/MultiModuleFunctionalTest.kt
blob: cac20f69df2b6405183abff91e76e8eb15b87ce6 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
package org.jetbrains.dokka.dokkatoo

import org.jetbrains.dokka.dokkatoo.internal.DokkatooConstants.DOKKATOO_VERSION
import org.jetbrains.dokka.dokkatoo.utils.*
import io.kotest.core.spec.style.FunSpec
import io.kotest.inspectors.shouldForAll
import io.kotest.matchers.collections.shouldBeIn
import io.kotest.matchers.collections.shouldContainAll
import io.kotest.matchers.file.shouldBeAFile
import io.kotest.matchers.paths.shouldBeAFile
import io.kotest.matchers.paths.shouldNotExist
import io.kotest.matchers.string.shouldBeEmpty
import io.kotest.matchers.string.shouldContain
import org.gradle.testkit.runner.TaskOutcome.*

class MultiModuleFunctionalTest : FunSpec({

  context("when dokkatoo generates all formats") {
    val project = initDokkatooProject("all-formats")

    project.runner
      .addArguments(
        "clean",
        ":dokkatooGenerate",
        "--stacktrace",
      )
      .forwardOutput()
      .build {
        test("expect build is successful") {
          output shouldContain "BUILD SUCCESSFUL"
        }
      }

    test("expect all dokka workers are successful") {
      project
        .findFiles { it.name == "dokka-worker.log" }
        .shouldForAll { dokkaWorkerLog ->
          dokkaWorkerLog.shouldBeAFile()
          dokkaWorkerLog.readText().shouldNotContainAnyOf(
            "[ERROR]",
            "[WARN]",
          )
        }
    }

    context("expect HTML site is generated") {

      test("with expected HTML files") {
        project.file("subproject/build/dokka/html/index.html").shouldBeAFile()
        project.file("subproject/build/dokka/html/com/project/hello/Hello.html")
          .shouldBeAFile()
      }

      test("and dokka_parameters.json is generated") {
        project.file("subproject/build/dokka/html/dokka_parameters.json")
          .shouldBeAFile()
      }

      test("with element-list") {
        project.file("build/dokka/html/package-list").shouldBeAFile()
        project.file("build/dokka/html/package-list").toFile().readText()
          .shouldContain( /* language=text */ """
              |${'$'}dokka.format:html-v1
              |${'$'}dokka.linkExtension:html
              |
              |module:subproject-hello
              |com.project.hello
              |module:subproject-goodbye
              |com.project.goodbye
            """.trimMargin()
          )
      }
    }
  }

  context("Gradle caching") {

    context("expect Dokkatoo is compatible with Gradle Build Cache") {
      val project = initDokkatooProject("build-cache")

      test("expect clean is successful") {
        project.runner.addArguments("clean").build {
          output shouldContain "BUILD SUCCESSFUL"
        }
      }

      project.runner
        .addArguments(
          //"clean",
          ":dokkatooGenerate",
          "--stacktrace",
          "--build-cache",
        )
        .forwardOutput()
        .build {
          test("expect build is successful") {
            output shouldContain "BUILD SUCCESSFUL"
          }

          test("expect all dokka workers are successful") {
            project
              .findFiles { it.name == "dokka-worker.log" }
              .shouldForAll { dokkaWorkerLog ->
                dokkaWorkerLog.shouldBeAFile()
                dokkaWorkerLog.readText().shouldNotContainAnyOf(
                  "[ERROR]",
                  "[WARN]",
                )
              }
          }
        }

      context("when build cache is enabled") {
        project.runner
          .addArguments(
            ":dokkatooGenerate",
            "--stacktrace",
            "--build-cache",
          )
          .forwardOutput()
          .build {
            test("expect build is successful") {
              output shouldContainAll listOf(
                "BUILD SUCCESSFUL",
                "24 actionable tasks: 24 up-to-date",
              )
            }

            test("expect all dokkatoo tasks are up-to-date") {
              tasks
                .filter { task ->
                  task.name.contains("dokkatoo", ignoreCase = true)
                }
                .shouldForAll { task ->
                  task.outcome.shouldBeIn(FROM_CACHE, UP_TO_DATE, SKIPPED)
                }
            }
          }
      }
    }

    context("Gradle Configuration Cache") {
      val project = initDokkatooProject("config-cache")

      test("expect clean is successful") {
        project.runner.addArguments("clean").build {
          output shouldContain "BUILD SUCCESSFUL"
        }
      }

      project.runner
        .addArguments(
          //"clean",
          ":dokkatooGenerate",
          "--stacktrace",
          "--no-build-cache",
          "--configuration-cache",
        )
        .forwardOutput()
        .build {
          test("expect build is successful") {
            output shouldContain "BUILD SUCCESSFUL"
          }
        }

      test("expect all dokka workers are successful") {
        project
          .findFiles { it.name == "dokka-worker.log" }
          .shouldForAll { dokkaWorkerLog ->
            dokkaWorkerLog.shouldBeAFile()
            dokkaWorkerLog.readText().shouldNotContainAnyOf(
              "[ERROR]",
              "[WARN]",
            )
          }
      }
    }


    context("expect updates in subprojects re-run tasks") {

      val project = initDokkatooProject("submodule-update")

      test("expect clean is successful") {
        project.runner.addArguments("clean").build {
          output shouldContain "BUILD SUCCESSFUL"
        }
      }

      test("expect first build is successful") {
        project.runner
          .addArguments(
            //"clean",
            ":dokkatooGeneratePublicationHtml",
            "--stacktrace",
            "--build-cache",
          )
          .forwardOutput()
          .build {
            output shouldContain "BUILD SUCCESSFUL"
          }
      }

      context("and when a file in a subproject changes") {

        val helloAgainIndexHtml =
          @Suppress("KDocUnresolvedReference")
          project.createKotlinFile(
            "subproject-hello/src/main/kotlin/HelloAgain.kt",
            """
              |package com.project.hello
              |
              |/** Like [Hello], but again */
              |class HelloAgain {
              |    /** prints `Hello Again` to the console */  
              |    fun sayHelloAgain() = println("Hello Again")
              |}
              |
            """.trimMargin()
          ).toPath()

        context("expect Dokka re-generates the publication") {
          project.runner
            .addArguments(
              ":dokkatooGeneratePublicationHtml",
              "--stacktrace",
              "--build-cache",
            )
            .forwardOutput()
            .build {

              test("expect HelloAgain HTML file exists") {
                helloAgainIndexHtml.shouldBeAFile()
              }

              test("expect :subproject-goodbye tasks are up-to-date, because no files changed") {
                shouldHaveTasksWithOutcome(
                  ":subproject-goodbye:dokkatooGenerateModuleHtml" to UP_TO_DATE,
                  ":subproject-goodbye:prepareDokkatooModuleDescriptorHtml" to UP_TO_DATE,
                )
              }

              val successfulOutcomes = listOf(SUCCESS, FROM_CACHE)
              test("expect :subproject-hello tasks should be re-run, since a file changed") {
                shouldHaveTasksWithAnyOutcome(
                  ":subproject-hello:dokkatooGenerateModuleHtml" to successfulOutcomes,
                  ":subproject-hello:prepareDokkatooModuleDescriptorHtml" to successfulOutcomes,
                )
              }

              test("expect aggregating tasks should re-run because the :subproject-hello Dokka Module changed") {
                shouldHaveTasksWithAnyOutcome(
                  ":dokkatooGeneratePublicationHtml" to successfulOutcomes,
                )
              }

              test("expect build is successful") {
                output shouldContain "BUILD SUCCESSFUL"
              }

              test("expect 5 tasks are run") {
                output shouldContain "5 actionable tasks"
              }
            }

          context("and when the class is deleted") {
            project.dir("subproject-hello") {
              require(file("src/main/kotlin/HelloAgain.kt").toFile().delete()) {
                "failed to delete HelloAgain.kt"
              }
            }

            project.runner
              .addArguments(
                ":dokkatooGeneratePublicationHtml",
                "--stacktrace",
                "--info",
                "--build-cache",
              )
              .forwardOutput()
              .build {

                test("expect HelloAgain HTML file is now deleted") {
                  helloAgainIndexHtml.shouldNotExist()

                  project.dir("build/dokka/html/") {
                    projectDir.toTreeString().shouldNotContainAnyOf(
                      "hello-again",
                      "-hello-again/",
                      "-hello-again.html",
                    )
                  }
                }
              }
          }
        }
      }
    }
  }

  context("logging") {
    val project = initDokkatooProject("logging")

    test("expect no logs when built using --quiet log level") {

      project.runner
        .addArguments(
          "clean",
          ":dokkatooGenerate",
          "--no-configuration-cache",
          "--no-build-cache",
          "--quiet",
        )
        .forwardOutput()
        .build {
          output.shouldBeEmpty()
        }
    }

    test("expect no Dokkatoo logs when built using lifecycle log level") {

      project.runner
        .addArguments(
          "clean",
          ":dokkatooGenerate",
          "--no-configuration-cache",
          "--no-build-cache",
          "--no-parallel",
          // no logging option => lifecycle log level
        )
        .forwardOutput()
        .build {

          // projects are only configured the first time TestKit runs, and annoyingly there's no
          // easy way to force Gradle to re-configure the projects - so only check conditionally.
          if ("Configure project" in output) {
            output shouldContain /*language=text*/ """
              ¦> Configure project :
              ¦> Configure project :subproject-goodbye
              ¦> Configure project :subproject-hello
              ¦> Task :clean
            """.trimMargin("¦")
          }

          output.lines()
            .filter { it.startsWith("> Task :") }
            .shouldContainAll(
              "> Task :clean",
              "> Task :dokkatooGenerate",
              "> Task :dokkatooGenerateModuleGfm",
              "> Task :dokkatooGenerateModuleHtml",
              "> Task :dokkatooGenerateModuleJavadoc",
              "> Task :dokkatooGenerateModuleJekyll",
              "> Task :dokkatooGeneratePublicationGfm",
              "> Task :dokkatooGeneratePublicationHtml",
              "> Task :dokkatooGeneratePublicationJavadoc",
              "> Task :dokkatooGeneratePublicationJekyll",
              "> Task :subproject-goodbye:clean",
              "> Task :subproject-goodbye:dokkatooGenerateModuleGfm",
              "> Task :subproject-goodbye:dokkatooGenerateModuleHtml",
              "> Task :subproject-goodbye:dokkatooGenerateModuleJavadoc",
              "> Task :subproject-goodbye:dokkatooGenerateModuleJekyll",
              "> Task :subproject-goodbye:prepareDokkatooModuleDescriptorGfm",
              "> Task :subproject-goodbye:prepareDokkatooModuleDescriptorHtml",
              "> Task :subproject-goodbye:prepareDokkatooModuleDescriptorJavadoc",
              "> Task :subproject-goodbye:prepareDokkatooModuleDescriptorJekyll",
              "> Task :subproject-hello:clean",
              "> Task :subproject-hello:dokkatooGenerateModuleGfm",
              "> Task :subproject-hello:dokkatooGenerateModuleHtml",
              "> Task :subproject-hello:dokkatooGenerateModuleJavadoc",
              "> Task :subproject-hello:dokkatooGenerateModuleJekyll",
              "> Task :subproject-hello:prepareDokkatooModuleDescriptorGfm",
              "> Task :subproject-hello:prepareDokkatooModuleDescriptorHtml",
              "> Task :subproject-hello:prepareDokkatooModuleDescriptorJavadoc",
              "> Task :subproject-hello:prepareDokkatooModuleDescriptorJekyll",
            )
        }
    }
  }
})

private fun initDokkatooProject(
  testName: String,
  config: GradleProjectTest.() -> Unit = {},
): GradleProjectTest {
  return gradleKtsProjectTest("multi-module-hello-goodbye/$testName") {

    settingsGradleKts += """
      |
      |include(":subproject-hello")
      |include(":subproject-goodbye")
      |
    """.trimMargin()

    buildGradleKts = """
      |plugins {
      |  // Kotlin plugin shouldn't be necessary here, but without it Dokka errors
      |  // with ClassNotFound KotlinPluginExtension... very weird
      |  kotlin("jvm") version "1.8.22" apply false
      |  id("org.jetbrains.dokka.dokkatoo") version "$DOKKATOO_VERSION"
      |}
      |
      |dependencies {
      |  dokkatoo(project(":subproject-hello"))
      |  dokkatoo(project(":subproject-goodbye"))
      |  dokkatooPluginHtml(
      |    dokkatoo.versions.jetbrainsDokka.map { dokkaVersion ->
      |      "org.jetbrains.dokka:all-modules-page-plugin:${'$'}dokkaVersion"
      |    }
      |  )
      |}
      |
    """.trimMargin()

    dir("subproject-hello") {
      buildGradleKts = """
          |plugins {
          |  kotlin("jvm") version "1.8.22"
          |  id("org.jetbrains.dokka.dokkatoo") version "$DOKKATOO_VERSION"
          |}
          |
        """.trimMargin()

      createKotlinFile(
        "src/main/kotlin/Hello.kt",
        """
          |package com.project.hello
          |
          |/** The Hello class */
          |class Hello {
          |    /** prints `Hello` to the console */  
          |    fun sayHello() = println("Hello")
          |}
          |
        """.trimMargin()
      )

      createKotlinFile("src/main/kotlin/HelloAgain.kt", "")
    }

    dir("subproject-goodbye") {

      buildGradleKts = """
          |plugins {
          |  kotlin("jvm") version "1.8.22"
          |  id("org.jetbrains.dokka.dokkatoo") version "$DOKKATOO_VERSION"
          |}
          |
        """.trimMargin()

      createKotlinFile(
        "src/main/kotlin/Goodbye.kt",
        """
          |package com.project.goodbye
          |
          |/** The Goodbye class */
          |class Goodbye {
          |    /** prints a goodbye message to the console */  
          |    fun sayHello() = println("Goodbye!")
          |}
          |
        """.trimMargin()
      )
    }

    config()
  }
}