Sha256: 1b6a6953b1f62c182e8fc16b7cf41060cec6c452804686cae93e165d6c18f773
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element JSR223Sampler # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#jsr223sampler # @param [Hash] params Parameters for the JSR223Sampler element (default: `{}`). # @yield block to attach to the JSR223Sampler element # @return [JmeterPerf::JSR223Sampler], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. def jsr223_sampler(params = {}, &) node = JmeterPerf::JSR223Sampler.new(params) attach_node(node, &) end end class JSR223Sampler attr_accessor :doc include Helper def initialize(params = {}) testname = params.is_a?(Array) ? "JSR223Sampler" : (params[:name] || "JSR223Sampler") @doc = Nokogiri::XML(<<~EOS.strip_heredoc) <JSR223Sampler guiclass="TestBeanGUI" testclass="JSR223Sampler" testname="#{testname}" enabled="true"> <stringProp name="cacheKey"/> <stringProp name="filename"/> <stringProp name="parameters"/> <stringProp name="script"/> <stringProp name="scriptLanguage"/> </JSR223Sampler> 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/jsr223_sampler.rb |