io.specmatic.core.pattern.Row.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.core.pattern
import io.specmatic.core.DefaultExampleResolver
import io.specmatic.core.HttpResponse
import io.specmatic.core.OMIT
import io.specmatic.core.References
import io.specmatic.core.value.JSONArrayValue
import io.specmatic.core.value.JSONComposite
import io.specmatic.core.value.JSONObjectValue
const val DEREFERENCE_PREFIX = "$"
const val FILENAME_PREFIX = "@"
data class Row(
val columnNames: List = emptyList(),
val values: List = emptyList(),
val variables: Map = emptyMap(),
val references: Map = emptyMap(),
val name: String = "",
val fileSource: String? = null,
val requestBodyJSONExample: JSONExample? = null,
val responseExample: ResponseExample? = null
) {
constructor(examples: Map) :this(examples.keys.toList(), examples.values.toList())
private val cells = columnNames.zip(values.map { it }).toMap().toMutableMap()
fun noteRequestBody(): Row {
if(!this.containsField("(REQUEST-BODY)"))
return this
val requestBody = this.getField("(REQUEST-BODY)").trim()
return try {
val parsed = parsedJSON(requestBody)
if(parsed is JSONComposite)
this.copy(requestBodyJSONExample = JSONExample(parsed, this))
else
this
} catch (e: ContractException) {
this
}
}
fun getField(columnName: String): String {
return getValue(columnName).fetch()
}
private fun getValue(columnName: String): RowValue {
val value = requestBodyJSONExample?.getValueFromTopLevelKeys(columnName) ?: cells.getValue(columnName)
return when {
isContextValue(value) && isReferenceValue(value) -> ReferenceValue(ValueReference(value), references)
isContextValue(value) -> VariableValue(ValueReference(value), variables)
isFileValue(value) -> FileValue(withoutPatternDelimiters(value).removePrefix("@"))
else -> SimpleValue(value)
}
}
private fun isFileValue(value: String): Boolean {
return isPatternToken(value) && withoutPatternDelimiters(value).startsWith(FILENAME_PREFIX)
}
private fun isReferenceValue(value: String): Boolean = value.contains(".")
private fun isContextValue(value: String): Boolean {
return isPatternToken(value) && withoutPatternDelimiters(value).trim().startsWith(DEREFERENCE_PREFIX)
}
fun containsField(key: String): Boolean = requestBodyJSONExample?.hasScalarValueForKey(key) ?: cells.containsKey(key)
fun withoutOmittedKeys(keys: Map, defaultExampleResolver: DefaultExampleResolver): Map {
if(this.hasNoRequestExamples() && this.fileSource == null)
return keys
return keys.filter { (key, pattern) ->
keyIsMandatory(key) || keyHasExample(withoutOptionality(key), pattern, defaultExampleResolver)
}
}
fun hasNoRequestExamples() = columnNames.isEmpty() && requestBodyJSONExample == null
fun keyHasExample(key: String, pattern: Pattern, defaultExampleResolver: DefaultExampleResolver): Boolean {
return this.containsField(key) || defaultExampleResolver.hasExample(pattern)
}
fun keyIsMandatory(key: String): Boolean {
return !isOptional(key)
}
private fun keyisNotOmitted(it: Map.Entry) =
this.getField(withoutOptionality(it.key)) !in OMIT
fun stepDownOneLevelInJSONHierarchy(key: String): Row {
if(requestBodyJSONExample == null)
return this
if(requestBodyJSONExample.jsonObject !is JSONObjectValue)
throw ContractException("Example provided is a JSON array, which can't contain key $key")
val value = requestBodyJSONExample.jsonObject.findFirstChildByPath(withoutOptionality(key)) ?: return withNoJSONObjectExample()
if(value !is JSONComposite)
return withNoJSONObjectExample()
return this.copy(requestBodyJSONExample = JSONExample(value, requestBodyJSONExample.originalRow))
}
private fun withNoJSONObjectExample() = this.copy(requestBodyJSONExample = null)
fun dropDownIntoList(): Row {
if(requestBodyJSONExample == null)
return this
if(requestBodyJSONExample.jsonObject !is JSONArrayValue)
throw ContractException("The example provided is a JSON object, while the specification expects a list")
val list = requestBodyJSONExample.jsonObject.list
val firstValue = list.firstOrNull()
if(firstValue is JSONComposite)
return this.copy(requestBodyJSONExample = JSONExample(firstValue as JSONComposite, requestBodyJSONExample.originalRow))
return this.copy(requestBodyJSONExample = null)
}
private fun thisFieldHasAnExample(key: String) =
this.containsField(withoutOptionality(key))
fun addFields(params: Map): Row {
return params.entries.fold(this) { row, (key, value) ->
val newColumns = row.columnNames + key
val newValues = row.values + value
row.copy(columnNames = newColumns, values = newValues)
}
}
fun hasRequestParameters(): Boolean {
return values.isNotEmpty() || requestBodyJSONExample != null
}
}