Sha256: ddc4de72d7846e49ff60bb9172d665abfb95cef8c37cea78c9a01e602cae4b01

Contents?: true

Size: 1.36 KB

Versions: 5

Compression:

Stored size: 1.36 KB

Contents

module JmeterPerf
  class DSL
    # DSL method synonymous with the JMeter Element UniformRandomTimer
    # @param [Hash] params Parameters for the UniformRandomTimer element (default: `{}`).
    # @yield block to attach to the UniformRandomTimer element
    # @return [JmeterPerf::UniformRandomTimer], a subclass of JmeterPerf::DSL that can be chained with other DSL methods.
    # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#uniformrandomtimer
    def uniform_random_timer(params = {}, &)
      node = UniformRandomTimer.new(params)
      attach_node(node, &)
    end

    class UniformRandomTimer
      attr_accessor :doc
      include JmeterPerf::Helpers::XmlDocumentUpdater

      def initialize(params = {})
        testname = params.is_a?(Array) ? "UniformRandomTimer" : (params[:name] || "UniformRandomTimer")
        @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc(
          <<~EOS
            <UniformRandomTimer guiclass="UniformRandomTimerGui" testclass="UniformRandomTimer" testname="#{testname}" enabled="true">
              <stringProp name="ConstantTimer.delay">0</stringProp>
              <stringProp name="RandomTimer.range">100.0</stringProp>
            </UniformRandomTimer>
          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

Version Path
jmeter_perf-1.0.5 lib/jmeter_perf/dsl/uniform_random_timer.rb
jmeter_perf-1.0.4 lib/jmeter_perf/dsl/uniform_random_timer.rb
jmeter_perf-1.0.2 lib/jmeter_perf/dsl/uniform_random_timer.rb
jmeter_perf-1.0.1 lib/jmeter_perf/dsl/uniform_random_timer.rb
jmeter_perf-1.0.0 lib/jmeter_perf/dsl/uniform_random_timer.rb