Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Undo unnecessary changes in JSONArrayValue. #1452

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package io.specmatic.core.value

import io.specmatic.core.ExampleDeclarations
import io.specmatic.core.pattern.*
import io.specmatic.core.utilities.Flags
import io.specmatic.core.utilities.valueArrayToJsonString

typealias TypeDeclarationsCallType = (Value, String, Map<String, Pattern>, ExampleDeclarations) -> Pair<TypeDeclaration, ExampleDeclarations>
Expand All @@ -13,11 +12,7 @@ data class JSONArrayValue(override val list: List<Value>) : Value, ListValue, JS
override fun displayableValue(): String = toStringLiteral()
override fun toStringLiteral() = valueArrayToJsonString(list)
override fun displayableType(): String = "json array"
override fun exactMatchElseType(): Pattern {
return if (list.size == 1 && Flags.getBooleanValue(Flags.VALIDATE_RESPONSE_VALUE)) {
ListPattern(list.first().exactMatchElseType())
} else JSONArrayPattern(list.map { it.exactMatchElseType() })
}
override fun exactMatchElseType(): Pattern = JSONArrayPattern(list.map { it.exactMatchElseType() })
override fun type(): Pattern = JSONArrayPattern()
override fun deepPattern(): Pattern = ListPattern(AnythingPattern)

Expand Down