aboutsummaryrefslogtreecommitdiff
path: root/app/src/test/kotlin/com/pitchedapps/frost/parsers/ParserTestHelper.kt
blob: 53495ecb2f98e6b7994a02c70539e0839e5bc947 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.pitchedapps.frost.parsers

import java.net.URL
import java.nio.file.Paths

/**
 * Created by Allan Wang on 2017-10-06.
 */
fun <T : Any> T.getResource(path: String): String? {
    Paths.get("src/test/resources/${path.trimStart('/')}")
    val resource: URL? = this::class.java.classLoader.getResource(path)
    if (resource == null) {
        println("Resource at $path could not be found")
        return null
    }
    return resource.readText()
}

fun <T : Any, P : Any> T.debug(path: String, parser: FrostParser<P>) {
    val content = getResource("priv/$path.html") ?: return
//    println(parser.debug(content))
}