Kotlin에서 Spek 테스트를 작성하고 싶습니다. 테스트는 src/test/resources
폴더 에서 HTML 파일을 읽어야 합니다. 어떻게하나요?
class MySpec : Spek({
describe("blah blah") {
given("blah blah") {
var fileContent : String = ""
beforeEachTest {
// How to read the file file.html in src/test/resources/html
fileContent = ...
}
it("should blah blah") {
...
}
}
}
})
답변
val fileContent = MySpec::class.java.getResource("/html/file.html").readText()
답변
또 다른 약간 다른 솔루션 :
@Test
fun basicTest() {
"/html/file.html".asResource {
// test on `it` here...
println(it)
}
}
fun String.asResource(work: (String) -> Unit) {
val content = this.javaClass::class.java.getResource(this).readText()
work(content)
}
답변
이것이 왜 그렇게 어려운지 모르겠지만 내가 찾은 가장 간단한 방법은 (특정 클래스를 참조하지 않고도) 다음과 같습니다.
fun getResourceAsText(path: String): String {
return object {}.javaClass.getResource(path).readText()
}
그런 다음 절대 URL을 전달합니다. 예 :
val html = getResourceAsText("/www/index.html")
답변
약간 다른 솔루션 :
class MySpec : Spek({
describe("blah blah") {
given("blah blah") {
var fileContent = ""
beforeEachTest {
html = this.javaClass.getResource("/html/file.html").readText()
}
it("should blah blah") {
...
}
}
}
})
답변
val fileContent = javaClass.getResource("/html/file.html").readText()
답변
Kotlin + Spring 방식 :
@Autowired
private lateinit var resourceLoader: ResourceLoader
fun load() {
val html = resourceLoader.getResource("classpath:html/file.html").file
.readText(charset = Charsets.UTF_8)
}
답변
private fun loadResource(file: String) = {}::class.java.getResource(file).readText()