Sha256: 5d930841b02dacb3bcf7f03ec11f99ed03bea71d6620b0103ce1c2d4f272b5d1
Contents?: true
Size: 1.46 KB
Versions: 5
Compression:
Stored size: 1.46 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element BeanShellPostprocessor # @param [Hash] params Parameters for the BeanShellPostprocessor element (default: `{}`). # @yield block to attach to the BeanShellPostprocessor element # @return [JmeterPerf::BeanShellPostprocessor], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#beanshellpostprocessor def bean_shell_postprocessor(params = {}, &) node = BeanShellPostprocessor.new(params) attach_node(node, &) end class BeanShellPostprocessor attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "BeanShellPostprocessor" : (params[:name] || "BeanShellPostprocessor") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS <BeanShellPostProcessor guiclass="TestBeanGUI" testclass="BeanShellPostProcessor" testname="#{testname}" enabled="true"> <stringProp name="filename"/> <stringProp name="parameters"/> <boolProp name="resetInterpreter">false</boolProp> <stringProp name="script"/> </BeanShellPostProcessor> 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