aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/base-test-utils/src/main/kotlin/utils/TestOutputWriter.kt
blob: 67e62c364e8ad17025d3d8b108360b8f1e59eac9 (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
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<DokkaBase>() }

    val testWriter by extending {
        (dokkaBase.outputWriter
                with writer
                override dokkaBase.fileWriter)
    }
}

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

    private val _contents = Collections.synchronizedMap(mutableMapOf<String, String>())
    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 ***", "")
}