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