Sha256: 2dc2fb9c80bb461a008d7bff002bd6fc1d23cfeed6998d9736432dce1c65c72c
Contents?: true
Size: 1.71 KB
Versions: 2
Compression:
Stored size: 1.71 KB
Contents
module JmeterPerf class DSL def ajp13_sampler(params = {}, &) node = JmeterPerf::AJP13Sampler.new(params) attach_node(node, &) end end class AJP13Sampler attr_accessor :doc include Helper def initialize(params = {}) testname = params.is_a?(Array) ? "AJP13Sampler" : (params[:name] || "AJP13Sampler") @doc = Nokogiri::XML(<<~EOS.strip_heredoc) <AjpSampler guiclass="AjpSamplerGui" testclass="AjpSampler" testname="#{testname}" enabled="true"> <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="#{testname}" enabled="true"> <collectionProp name="Arguments.arguments"/> </elementProp> <stringProp name="HTTPSampler.domain"/> <stringProp name="HTTPSampler.port"/> <stringProp name="HTTPSampler.connect_timeout"/> <stringProp name="HTTPSampler.response_timeout"/> <stringProp name="HTTPSampler.protocol"/> <stringProp name="HTTPSampler.contentEncoding"/> <stringProp name="HTTPSampler.path"/> <stringProp name="HTTPSampler.method">GET</stringProp> <boolProp name="HTTPSampler.follow_redirects">true</boolProp> <boolProp name="HTTPSampler.auto_redirects">false</boolProp> <boolProp name="HTTPSampler.use_keepalive">true</boolProp> <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> <boolProp name="HTTPSampler.monitor">false</boolProp> <stringProp name="HTTPSampler.embedded_url_re"/> </AjpSampler> EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jmeter_perf-0.0.6 | lib/jmeter_perf/dsl/ajp13_sampler.rb |
jmeter_perf-0.0.2 | lib/jmeter_perf/dsl/ajp13_sampler.rb |