Sha256: e9e29efbcb0b0199fabf6ffc7c7c2092ef1e4c15f4b465774636ed689ba1b57b
Contents?: true
Size: 1.3 KB
Versions: 5
Compression:
Stored size: 1.3 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element TestAction # @param [Hash] params Parameters for the TestAction element (default: `{}`). # @yield block to attach to the TestAction element # @return [JmeterPerf::TestAction], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#testaction def test_action(params = {}, &) node = TestAction.new(params) attach_node(node, &) end class TestAction attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "TestAction" : (params[:name] || "TestAction") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS <TestAction guiclass="TestActionGui" testclass="TestAction" testname="#{testname}" enabled="true"> <intProp name="ActionProcessor.action">1</intProp> <intProp name="ActionProcessor.target">0</intProp> <stringProp name="ActionProcessor.duration"/> </TestAction> EOS )) update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end end
Version data entries
5 entries across 5 versions & 1 rubygems