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