module JmeterPerf class DSL # DSL method synonymous with the JMeter Element JUnitRequest # @param params [Hash] Parameters for the JUnitRequest element (default: `{}`). # @yield block to attach to the JUnitRequest element # @return [JmeterPerf::JUnitRequest], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#junitrequest def j_unit_request(params = {}, &) node = JUnitRequest.new(params) attach_node(node, &) end class JUnitRequest attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "JUnitRequest" : (params[:name] || "JUnitRequest") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS test.RerunTest testRerun Test successful 1000 Test failed 0001 An unexpected error occured 9999 false false false EOS )) update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end end