aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/utils/TestOutputWriter.kt
blob: 43161929283fd87954ef8224dd5337c8c9de80f1 (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
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): DokkaPlugin() {
    private val writer = TestOutputWriter(failOnOverwrite)

    val testWriter by extending { plugin<DokkaBase>().outputWriter with writer }
}

class TestOutputWriter(private val failOnOverwrite: Boolean): OutputWriter {
    val contents: Map<String, String> get() = _contents

    private val _contents = mutableMapOf<String, String>()

    override fun write(path: String, text: String, ext: String) {
        val fullPath = listOf(path, ext).joinToString(separator = ".")
        _contents.putIfAbsent(fullPath, text)?.also {
            if (failOnOverwrite) throw AssertionError("File $fullPath is being overwritten.")
        }
    }

    override fun writeResources(pathFrom: String, pathTo: String) = write(pathFrom, File(pathTo).readText(), "")
}