package utils import org.jetbrains.dokka.base.DokkaBase import org.jetbrains.dokka.base.renderers.OutputWriter import org.jetbrains.dokka.plugability.DokkaPlugin import java.util.* class TestOutputWriterPlugin(failOnOverwrite: Boolean = true) : DokkaPlugin() { val writer = TestOutputWriter(failOnOverwrite) private val dokkaBase by lazy { plugin() } val testWriter by extending { (dokkaBase.outputWriter with writer override dokkaBase.fileWriter) } } class TestOutputWriter(private val failOnOverwrite: Boolean = true) : OutputWriter { val contents: Map get() = _contents private val _contents = Collections.synchronizedMap(mutableMapOf()) override suspend 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 suspend fun writeResources(pathFrom: String, pathTo: String) = write(pathTo, "*** content of $pathFrom ***", "") }