in.specmatic.core.value.JSONObjectValue.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.
Deprecation Notice for group ID "in.specmatic"
******************************************************************************************************
Updates for "specmatic-core" will no longer be available under the deprecated group ID "in.specmatic".
Please update your dependencies to use the new group ID "io.specmatic".
******************************************************************************************************
The newest version!
package `in`.specmatic.core.value
import `in`.specmatic.core.ExampleDeclarations
import `in`.specmatic.core.pattern.*
import `in`.specmatic.core.utilities.*
data class JSONObjectValue(val jsonObject: Map = emptyMap()) : Value, JSONComposite {
override val httpContentType = "application/json"
override fun valueErrorSnippet(): String {
return "JSON object ${displayableValue()}"
}
override fun displayableValue() = toStringLiteral()
override fun toStringLiteral() = valueMapToPrettyJsonString(jsonObject)
fun toUnformattedStringLiteral() = valueMapToUnindentedJsonString(jsonObject)
override fun displayableType(): String = "json object"
override fun exactMatchElseType(): Pattern = toJSONObjectPattern(jsonObject.mapValues { it.value.exactMatchElseType() })
override fun type(): Pattern = JSONObjectPattern()
override fun deepPattern(): Pattern = toJSONObjectPattern(jsonObject.mapValues { it.value.deepPattern() })
override fun toString() = valueMapToPrettyJsonString(jsonObject)
override fun typeDeclarationWithKey(key: String, types: Map, exampleDeclarations: ExampleDeclarations): Pair {
val (jsonTypeMap, newTypes, newExamples) = dictionaryToDeclarations(jsonObject, types, exampleDeclarations)
val newType = toTabularPattern(jsonTypeMap.mapValues {
DeferredPattern(it.value.pattern)
})
val newTypeName = exampleDeclarations.getNewName(key.capitalizeFirstChar(), newTypes.keys)
val typeDeclaration = TypeDeclaration("($newTypeName)", newTypes.plus(newTypeName to newType))
return Pair(typeDeclaration, newExamples)
}
override fun listOf(valueList: List): Value {
return JSONArrayValue(valueList)
}
override fun typeDeclarationWithoutKey(exampleKey: String, types: Map, exampleDeclarations: ExampleDeclarations): Pair =
typeDeclarationWithKey(exampleKey, types, exampleDeclarations)
fun getString(key: String): String {
return (jsonObject.getValue(key) as StringValue).string
}
fun getBoolean(key: String): Boolean {
return (jsonObject.getValue(key) as BooleanValue).booleanValue
}
fun getInt(key: String): Int {
return (jsonObject.getValue(key) as NumberValue).number.toInt()
}
fun getJSONObject(key: String): Map {
return (jsonObject.getValue(key) as JSONObjectValue).jsonObject
}
fun getJSONObjectValue(key: String): JSONObjectValue {
return jsonObject.getValue(key) as JSONObjectValue
}
fun getJSONArray(key: String): List {
return (jsonObject.getValue(key) as JSONArrayValue).list
}
fun findFirstChildByPath(path: String): Value? =
findFirstChildByPath(path.split("."))
fun findFirstChildByPath(path: List): Value? =
findFirstChildByPath(path.first(), path.drop(1))
private fun findFirstChildByPath(first: String, rest: List): Value? {
return findFirstChildByName(first)?.let {
when {
rest.isEmpty() -> it
it is JSONObjectValue -> it.findFirstChildByPath(rest)
it is JSONArrayValue -> it.getElementAtIndex(rest.first(), rest.drop(1))
else -> null
}
}
}
fun findFirstChildByName(name: String): Value? =
jsonObject[name]
}
internal fun dictionaryToDeclarations(jsonObject: Map, types: Map, exampleDeclarations: ExampleDeclarations): Triple