Sha256: a7ee825c7619061f460513bde91a7b6b94a7accf6770a6a4dba4475db08a3fa4
Contents?: true
Size: 1.08 KB
Versions: 36
Compression:
Stored size: 1.08 KB
Contents
module RubyJmeter module Plugins class ThroughputShapingTimer attr_accessor :doc include Helper def initialize(name, steps, params={}) @doc = Nokogiri::XML(<<-EOF.strip_heredoc) <kg.apc.jmeter.timers.VariableThroughputTimer guiclass="kg.apc.jmeter.timers.VariableThroughputTimerGui" testclass="kg.apc.jmeter.timers.VariableThroughputTimer" testname="#{name}" enabled="true"> <collectionProp name="load_profile"/> </kg.apc.jmeter.timers.VariableThroughputTimer> EOF steps.each_with_index do |step, index| @doc.at_xpath('//collectionProp') << Nokogiri::XML(<<-EOF.strip_heredoc).children <collectionProp name="step_#{index}"> <stringProp name="start_rps_#{index}">#{step[:start_rps]}</stringProp> <stringProp name="end_rps_#{index}">#{step[:end_rps]}</stringProp> <stringProp name="duration_sec_#{index}">#{step[:duration]}</stringProp> </collectionProp> EOF end update params end end end end
Version data entries
36 entries across 36 versions & 1 rubygems