io.specmatic.test.TestInteractionsLog.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of specmatic-core Show documentation
Show all versions of specmatic-core Show documentation
Turn your contracts into executable specifications. Contract Driven Development - Collaboratively Design & Independently Deploy MicroServices & MicroFrontends.
package io.specmatic.test
import io.specmatic.core.log.HttpLogMessage
object TestInteractionsLog {
val testHttpLogMessages = mutableListOf()
val stubHttpLogMessages = mutableListOf()
fun addHttpLog(httpLogMessage: HttpLogMessage) {
if(httpLogMessage.isTestLog()) {
testHttpLogMessages.add(httpLogMessage)
return
}
stubHttpLogMessages.add(httpLogMessage)
}
fun HttpLogMessage.duration() = (responseTime?.toEpochMillis() ?: requestTime.toEpochMillis()) - requestTime.toEpochMillis()
fun HttpLogMessage.displayName() = scenario?.testDescription()
}