package utils import org.jetbrains.dokka.base.DokkaBase import org.jetbrains.dokka.base.renderers.OutputWriter import org.jetbrains.dokka.plugability.DokkaPlugin import java.io.File class TestOutputWriterPlugin(failOnOverwrite: Boolean = true): DokkaPlugin() { private val writer = TestOutputWriter(failOnOverwrite) val testWriter by extending { plugin().outputWriter with writer } } class TestOutputWriter(private val failOnOverwrite: Boolean = true): OutputWriter { val contents: Map get() = _contents private val _contents = mutableMapOf() override fun write(path: String, text: String, ext: String) { val fullPath = "$path$ext" _contents.putIfAbsent(fullPath, text)?.also { if (failOnOverwrite) throw AssertionError("File $fullPath is being overwritten.") } } override fun writeResources(pathFrom: String, pathTo: String) = write(pathTo, "*** content of $pathFrom ***", "") }