Hello! I'm trying to implement web service usig Kt...
# server
f
Hello! I'm trying to implement web service usig Ktor and Exposed. The server itself works fine, but application tests are failing without an active database connection.
Copy code
class ApplicationTest {
    @Test
    fun testRoot() = testApplication {
        val response = client.get("/")
        assertEquals(HttpStatusCode.OK, response.status)
    }
}
basically this sample test is failing because it seems like
testApplication
tries to init hikari conn pool. If I run database everything is ok. Can I substitute this w/ in memory database somehow? Or better yet, drop the DB connection altogether and use service layer mock? Sorry if the question is dumb, I have no experience with JVM ecosystem, would be glad to get any suggestions.
a
Yeah obviously - if your app connects to the DB and you dont have a DB it wont work You need to have the code read some parameter that tells it whether it should init a real db vs an in memory db or whatever Dependency injection is what you are looking for
🙏 1
👍 1