in.specmatic.core.HttpPathPattern.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
import `in`.specmatic.core.Result.Failure
import `in`.specmatic.core.Result.Success
import `in`.specmatic.core.pattern.*
import `in`.specmatic.core.value.StringValue
import io.ktor.util.reflect.*
import java.net.URI
val OMIT = listOf("(OMIT)", "(omit)")
data class HttpPathPattern(
val pathSegmentPatterns: List,
val path: String
) {
fun encompasses(otherHttpPathPattern: HttpPathPattern, thisResolver: Resolver, otherResolver: Resolver): Result {
if (this.matches(URI.create(otherHttpPathPattern.path), resolver=thisResolver) is Success)
return Success()
val mismatchedPartResults =
this.pathSegmentPatterns.zip(otherHttpPathPattern.pathSegmentPatterns).map { (thisPathItem, otherPathItem) ->
thisPathItem.pattern.encompasses(otherPathItem, thisResolver, otherResolver)
}
val failures = mismatchedPartResults.filterIsInstance()
if (failures.isEmpty())
return Success()
return Result.fromFailures(failures)
}
fun matches(uri: URI, resolver: Resolver = Resolver()): Result {
return matches(uri.path, resolver)
}
fun matches(path: String, resolver: Resolver): Result {
val httpRequest = HttpRequest(path = path)
return matches(httpRequest, resolver).withFailureReason(FailureReason.URLPathMisMatch)
}
fun matches(httpRequest: HttpRequest, resolver: Resolver): Result {
val path = httpRequest.path!!
val pathSegments = path.split("/".toRegex()).filter { it.isNotEmpty() }.toTypedArray()
if (pathSegmentPatterns.size != pathSegments.size)
return Failure(
"Expected $path (having ${pathSegments.size} path segments) to match ${this.path} (which has ${pathSegmentPatterns.size} path segments).",
breadCrumb = "PATH"
)
pathSegmentPatterns.zip(pathSegments).forEach { (urlPathPattern, token) ->
try {
val parsedValue = urlPathPattern.tryParse(token, resolver)
val result = resolver.matchesPattern(urlPathPattern.key, urlPathPattern.pattern, parsedValue)
if (result is Failure) {
return when (urlPathPattern.key) {
null -> result.breadCrumb("PATH ($path)")
else -> result.breadCrumb("PATH ($path)").breadCrumb(urlPathPattern.key)
}
}
} catch (e: ContractException) {
e.failure().breadCrumb("PATH ($path)").let { failure ->
urlPathPattern.key?.let { failure.breadCrumb(urlPathPattern.key) } ?: failure
}
} catch (e: Throwable) {
Failure(e.localizedMessage).breadCrumb("PATH ($path)").let { failure ->
urlPathPattern.key?.let { failure.breadCrumb(urlPathPattern.key) } ?: failure
}
}
}
return Success()
}
fun generate(resolver: Resolver): String {
return attempt(breadCrumb = "PATH") {
("/" + pathSegmentPatterns.mapIndexed { index, urlPathPattern ->
attempt(breadCrumb = "[$index]") {
val key = urlPathPattern.key
resolver.withCyclePrevention(urlPathPattern.pattern) { cyclePreventedResolver ->
if (key != null)
cyclePreventedResolver.generate(key, urlPathPattern.pattern)
else urlPathPattern.pattern.generate(cyclePreventedResolver)
}
}
}.joinToString("/")).let {
if (path.endsWith("/") && !it.endsWith("/")) "$it/" else it
}.let {
if (path.startsWith("/") && !it.startsWith("/")) "$/it" else it
}
}
}
fun newBasedOn(
row: Row,
resolver: Resolver
): Sequence> {
val generatedPatterns = newListBasedOn(pathSegmentPatterns.mapIndexed { index, urlPathParamPattern ->
val key = urlPathParamPattern.key
if (key === null || !row.containsField(key)) return@mapIndexed urlPathParamPattern
attempt(breadCrumb = "[$index]") {
val rowValue = row.getField(key)
when {
isPatternToken(rowValue) -> attempt("Pattern mismatch in example of path param \"${urlPathParamPattern.key}\"") {
val rowPattern = resolver.getPattern(rowValue)
when (val result = urlPathParamPattern.encompasses(rowPattern, resolver, resolver)) {
is Success -> urlPathParamPattern.copy(pattern = rowPattern)
is Failure -> throw ContractException(result.toFailureReport())
}
}
else -> attempt("Format error in example of path parameter \"$key\"") {
val value = urlPathParamPattern.parse(rowValue, resolver)
val matchResult = urlPathParamPattern.matches(value, resolver)
if (matchResult is Failure)
throw ContractException("""Could not run contract test, the example value ${value.toStringLiteral()} provided "id" does not match the contract.""")
URLPathSegmentPattern(
ExactValuePattern(
value
)
)
}
}
}
}, row, resolver).map { it.value }
//TODO: replace this with Generics
return generatedPatterns.map { list -> list.map { it as URLPathSegmentPattern } }
}
fun newBasedOn(resolver: Resolver): Sequence> {
val generatedPatterns = newBasedOn(pathSegmentPatterns.mapIndexed { index, urlPathPattern ->
attempt(breadCrumb = "[$index]") {
urlPathPattern
}
}, resolver)
//TODO: replace this with Generics
return generatedPatterns.map { list -> list.map { it as URLPathSegmentPattern } }
}
override fun toString(): String {
return path
}
fun toOpenApiPath(): String {
return this.path.replace("(", "{").replace(""":[a-z,A-Z]*?\)""".toRegex(), "}")
}
fun pathParameters(): List {
return pathSegmentPatterns.filter { !it.pattern.instanceOf(ExactValuePattern::class) }
}
private fun negatively(patterns: List, row: Row, resolver: Resolver): Sequence>> {
val current = patterns.firstOrNull() ?: return emptySequence()
val negativesOfCurrent: Sequence>> = current.negativeBasedOn(
row,
resolver
).map { negative ->
listOf(negative) + positively(patterns.drop(1), row, resolver).map { HasValue(it) }
}.sequenceListFold().map { it.ifValue { it.filterIsInstance() } }
if(patterns.size == 1)
return negativesOfCurrent
val negativesFromSubsequent: Sequence>> = //Sequence>>> =
negatively(patterns.drop(1), row, resolver)
.filterValueIsNot { it.isEmpty() }
.map { subsequentNegativesR: ReturnValue> ->
subsequentNegativesR.ifValue { subsequentNegatives: List ->
val subsequents: List = current.newBasedOn_Wrapper(row, resolver).map { positive ->
sequenceOf(positive as URLPathSegmentPattern) + subsequentNegatives
}.flatten().toList()
subsequents
}
}
val negatives: Sequence>> = negativesOfCurrent + negativesFromSubsequent
return negatives
}
private fun positively(
patterns: List,
row: Row,
resolver: Resolver
): Sequence> {
if(patterns.isEmpty())
return emptySequence()
val patternToPositively = patterns.first()
val positively: Sequence> = patternFromExample(null, row, patternToPositively, resolver)
return positively.flatMap { positive: ReturnValue ->
sequenceOf(positive) + positively(patterns.drop(1), row, resolver)
}.map { it.ifValue { it as URLPathSegmentPattern } }
}
fun negativeBasedOn(
row: Row,
resolver: Resolver
): Sequence>> {
return negatively(pathSegmentPatterns, row, resolver)
}
private fun patternFromExample(
key: String?,
row: Row,
urlPathPattern: URLPathSegmentPattern,
resolver: Resolver
): Sequence> = when {
key !== null && row.containsField(key) -> {
val rowValue = row.getField(key)
when {
isPatternToken(rowValue) -> attempt("Pattern mismatch in example of path param \"${urlPathPattern.key}\"") {
val rowPattern = resolver.getPattern(rowValue)
when (val result = urlPathPattern.encompasses(rowPattern, resolver, resolver)) {
is Success -> sequenceOf(urlPathPattern.copy(pattern = rowPattern))
is Failure -> throw ContractException(result.toFailureReport())
}
}
else -> attempt("Format error in example of path parameter \"$key\"") {
val value = urlPathPattern.parse(rowValue, resolver)
val matchResult = urlPathPattern.matches(value, resolver)
if (matchResult is Failure)
throw ContractException("""Could not run contract test, the example value ${value.toStringLiteral()} provided "id" does not match the contract.""")
sequenceOf(URLPathSegmentPattern(ExactValuePattern(value)))
}
}.map { HasValue(it) }
}
else -> returnValueSequence {
val positives: Sequence = urlPathPattern.newBasedOn_Wrapper(row, resolver)
val negatives: Sequence> = urlPathPattern.negativeBasedOn(row, resolver)
positives.map { HasValue(it) } + negatives
}
}
fun extractPathParams(requestPath: String, resolver: Resolver): Map {
val pathSegments = requestPath.split("/").filter { it.isNotEmpty() }
return pathSegmentPatterns.zip(pathSegments).mapNotNull { (pattern, value) ->
when {
pattern.pattern is ExactValuePattern -> null
else -> pattern.key!! to value
}
}.toMap()
}
}
fun buildHttpPathPattern(
url: String
): HttpPathPattern =
buildHttpPathPattern(URI.create(url))
internal fun buildHttpPathPattern(
urlPattern: URI
): HttpPathPattern {
val path = urlPattern.path
val pathPattern = pathToPattern(urlPattern.rawPath)
return HttpPathPattern(path = path, pathSegmentPatterns = pathPattern)
}
internal fun pathToPattern(rawPath: String): List =
rawPath.trim('/').split("/").filter { it.isNotEmpty() }.map { part ->
when {
isPatternToken(part) -> {
val pieces = withoutPatternDelimiters(part).split(":").map { it.trim() }
if (pieces.size != 2) {
throw ContractException("In path ${rawPath}, $part must be of the format (param_name:type), e.g. (id:number)")
}
val (name, type) = pieces
URLPathSegmentPattern(DeferredPattern(withPatternDelimiters(type)), name)
}
else -> URLPathSegmentPattern(ExactValuePattern(StringValue(part)))
}
}