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