aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/utils/contentUtils.kt
blob: c71409c3989b184f7da451e30e1f29862c3cf2db (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
package utils

import matchers.content.*
import org.jetbrains.dokka.pages.ContentGroup

//TODO: Try to unify those functions after update to 1.4
fun ContentMatcherBuilder<*>.signature(
    name: String,
    returnType: String? = null,
    vararg params: Pair<String, String>
) =
    platformHinted {
        bareSignature(name, returnType, *params)
    }

fun ContentMatcherBuilder<*>.bareSignature(
    name: String,
    returnType: String? = null,
    vararg params: Pair<String, String>
) = group {
    +"final fun"
    link { +name }
    +"("
    params.forEachIndexed { id, (n, t) ->
        +"$n:"
        group { link { +t } }
        if (id != params.lastIndex)
            +", "
    }
    +")"
    returnType?.let { +": $it" }
}

fun ContentMatcherBuilder<*>.signatureWithReceiver(
    receiver: String,
    name: String,
    returnType: String? = null,
    vararg params: Pair<String, String>
) =
    platformHinted {
        bareSignatureWithReceiver(receiver, name, returnType, *params)
    }

fun ContentMatcherBuilder<*>.bareSignatureWithReceiver(
    receiver: String,
    name: String,
    returnType: String? = null,
    vararg params: Pair<String, String>
) =
    group {
        +"final fun"
        group {
            link { +receiver }
        }
        +"."
        link { +name }
        +"("
        params.forEach { (n, t) ->
            +"$n:"
            group { link { +t } }
        }
        +")"
        returnType?.let { +": $it" }
    }


fun ContentMatcherBuilder<*>.pWrapped(text: String) =
    group {// TODO: remove it when double wrapping for descriptions will be resolved
        group { +text }
    }

fun ContentMatcherBuilder<*>.unnamedTag(tag: String, content: ContentMatcherBuilder<ContentGroup>.() -> Unit) =
    group {
        header(4) { +tag }
        group { content() }
    }