Sha256: 9c0066ef91adee7d74e119a01b74d552f1c369178008fe329b6518181adb7e37
Contents?: true
Size: 1.45 KB
Versions: 5
Compression:
Stored size: 1.45 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element JSONPathPostprocessor # @param [Hash] params Parameters for the JSONPathPostprocessor element (default: `{}`). # @yield block to attach to the JSONPathPostprocessor element # @return [JmeterPerf::JSONPathPostprocessor], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#jsonpathpostprocessor def json_path_postprocessor(params = {}, &) node = JSONPathPostprocessor.new(params) attach_node(node, &) end class JSONPathPostprocessor attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "JSONPathPostprocessor" : (params[:name] || "JSONPathPostprocessor") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS <JSONPostProcessor guiclass="JSONPostProcessorGui" testclass="JSONPostProcessor" testname="#{testname}" enabled="true"> <stringProp name="JSONPostProcessor.referenceNames"/> <stringProp name="JSONPostProcessor.jsonPathExprs"/> <stringProp name="JSONPostProcessor.match_numbers"/> </JSONPostProcessor> EOS )) update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end end
Version data entries
5 entries across 5 versions & 1 rubygems