Sha256: 86c1a71c3caa6ef6ad86e3c8b2298068df1eb9e6099db8284368b434ca9da7ff
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element TCPSamplerConfig # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#tcpsamplerconfig # @param [Hash] params Parameters for the TCPSamplerConfig element (default: `{}`). # @yield block to attach to the TCPSamplerConfig element # @return [JmeterPerf::TCPSamplerConfig], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. def tcp_sampler_config(params = {}, &) node = JmeterPerf::TCPSamplerConfig.new(params) attach_node(node, &) end end class TCPSamplerConfig attr_accessor :doc include Helper def initialize(params = {}) testname = params.is_a?(Array) ? "TCPSamplerConfig" : (params[:name] || "TCPSamplerConfig") @doc = Nokogiri::XML(<<~EOS.strip_heredoc) <ConfigTestElement guiclass="TCPConfigGui" testclass="ConfigTestElement" testname="#{testname}" enabled="true"> <stringProp name="TCPSampler.server"/> <boolProp name="TCPSampler.reUseConnection">true</boolProp> <stringProp name="TCPSampler.port"/> <boolProp name="TCPSampler.nodelay">false</boolProp> <stringProp name="TCPSampler.timeout"/> <stringProp name="TCPSampler.request"/> <boolProp name="TCPSampler.closeConnection">false</boolProp> </ConfigTestElement> EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jmeter_perf-0.0.7 | lib/jmeter_perf/dsl/tcp_sampler_config.rb |