io.gatling.jms.check.JmsCheckSupport.scala Maven / Gradle / Ivy
/*
* Copyright 2011-2020 GatlingCorp (https://gatling.io)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.gatling.jms.check
import java.util.{ Map => JMap }
import scala.annotation.implicitNotFound
import io.gatling.commons.validation.Validation
import io.gatling.core.check._
import io.gatling.core.check.bytes.BodyBytesCheckType
import io.gatling.core.check.jmespath.JmesPathCheckType
import io.gatling.core.check.jsonpath.JsonPathCheckType
import io.gatling.core.check.string.BodyStringCheckType
import io.gatling.core.check.substring.SubstringCheckType
import io.gatling.core.check.xpath._
import io.gatling.core.config.GatlingConfiguration
import io.gatling.core.json.JsonParsers
import io.gatling.core.session.{ Expression, Session }
import io.gatling.jms.JmsCheck
import com.fasterxml.jackson.databind.JsonNode
import javax.jms.Message
import net.sf.saxon.s9api.XdmNode
trait JmsCheckSupport {
def simpleCheck(f: Message => Boolean): JmsSimpleCheck = new JmsSimpleCheck(f)
@implicitNotFound("Could not find a CheckMaterializer. This check might not be valid for JMS.")
implicit def checkBuilder2JmsCheck[A, P, X](
checkBuilder: CheckBuilder[A, P, X]
)(implicit materializer: CheckMaterializer[A, JmsCheck, Message, P]): JmsCheck =
checkBuilder.build(materializer)
@implicitNotFound("Could not find a CheckMaterializer. This check might not be valid for JMS.")
implicit def validatorCheckBuilder2JmsCheck[A, P, X](
validatorCheckBuilder: ValidatorCheckBuilder[A, P, X]
)(implicit materializer: CheckMaterializer[A, JmsCheck, Message, P]): JmsCheck =
validatorCheckBuilder.exists
@implicitNotFound("Could not find a CheckMaterializer. This check might not be valid for JMS.")
implicit def findCheckBuilder2JmsCheck[A, P, X](
findCheckBuilder: FindCheckBuilder[A, P, X]
)(implicit materializer: CheckMaterializer[A, JmsCheck, Message, P]): JmsCheck =
findCheckBuilder.find.exists
implicit def jmsBodyBytesCheckMaterializer(
implicit configuration: GatlingConfiguration
): CheckMaterializer[BodyBytesCheckType, JmsCheck, Message, Array[Byte]] =
JmsCheckMaterializer.bodyBytes(configuration.core.charset)
implicit def jmsBodyStringCheckMaterializer(
implicit configuration: GatlingConfiguration
): CheckMaterializer[BodyStringCheckType, JmsCheck, Message, String] =
JmsCheckMaterializer.bodyString(configuration.core.charset)
implicit def jmsBodySubstringCheckMaterializer(
implicit configuration: GatlingConfiguration
): CheckMaterializer[SubstringCheckType, JmsCheck, Message, String] =
JmsCheckMaterializer.substring(configuration.core.charset)
implicit def jmsXPathmaterializer(implicit xmlParsers: XmlParsers): CheckMaterializer[XPathCheckType, JmsCheck, Message, Option[XdmNode]] =
JmsCheckMaterializer.xpath(xmlParsers)
implicit def jmsJsonPathCheckMaterializer(
implicit jsonParsers: JsonParsers,
configuration: GatlingConfiguration
): CheckMaterializer[JsonPathCheckType, JmsCheck, Message, JsonNode] =
JmsCheckMaterializer.jsonPath(jsonParsers, configuration.core.charset)
implicit def jmsJmesPathCheckMaterializer(
implicit jsonParsers: JsonParsers,
configuration: GatlingConfiguration
): CheckMaterializer[JmesPathCheckType, JmsCheck, Message, JsonNode] =
JmsCheckMaterializer.jmesPath(jsonParsers, configuration.core.charset)
implicit val jmsUntypedConditionalCheckWrapper: UntypedConditionalCheckWrapper[JmsCheck] =
(condition: Expression[Boolean], thenCheck: JmsCheck) =>
new Check[Message] {
private val typedCondition = (_: Message, ses: Session) => condition(ses)
override def check(response: Message, session: Session, preparedCache: JMap[Any, Any]): Validation[CheckResult] =
ConditionalCheck(typedCondition, thenCheck).check(response, session, preparedCache)
}
implicit val jmsTypedConditionalCheckWrapper: TypedConditionalCheckWrapper[Message, JmsCheck] =
(condition: (Message, Session) => Validation[Boolean], thenCheck: JmsCheck) =>
(response: Message, session: Session, preparedCache: JMap[Any, Any]) => ConditionalCheck(condition, thenCheck).check(response, session, preparedCache)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy