io.gatling.vtd.http.check.body.HttpBodyVtdXPathCheckBuilder.scala Maven / Gradle / Ivy
The newest version!
/**
* Copyright 2011-2016 GatlingCorp (http://gatling.io)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package io.gatling.vtd.http.check.body
import com.ximpleware.{ AutoPilot, VTDNav }
import io.gatling.commons.validation._
import io.gatling.core.check.{ DefaultMultipleFindCheckBuilder, Preparer }
import io.gatling.core.session.{ Expression, RichExpression }
import io.gatling.http.check.HttpCheck
import io.gatling.http.check.HttpCheckBuilders.BytesBodyExtender
import io.gatling.http.response.Response
import io.gatling.vtd.check.extractor.{ CountVtdXPathExtractor, MultipleVtdXPathExtractor, SingleVtdXPathExtractor, VtdXPathExtractor }
object HttpBodyVtdXPathCheckBuilder {
private val ErrorMapper: String => String = "Could not parse response with VTD-XML: " + _
private val VtdXPathPreparer: Preparer[Response, Option[(VTDNav, AutoPilot)]] = (response: Response) =>
safely(ErrorMapper) {
val bytes = response.body.bytes
Some(VtdXPathExtractor.parse(bytes)).success
}
def vtdXpath(expression: Expression[String], namespaces: List[(String, String)]) =
new DefaultMultipleFindCheckBuilder[HttpCheck, Response, Option[(VTDNav, AutoPilot)], String](BytesBodyExtender, VtdXPathPreparer) {
def findExtractor(occurrence: Int) = expression.map(new SingleVtdXPathExtractor(_, namespaces, occurrence))
def findAllExtractor = expression.map(new MultipleVtdXPathExtractor(_, namespaces))
def countExtractor = expression.map(new CountVtdXPathExtractor(_, namespaces))
}
}