Sha256: 8a2a7b5d809172ba6b22211cc941a787c633f0800bf6eb7d65744ea196f0575c

Contents?: true

Size: 1.6 KB

Versions: 7

Compression:

Stored size: 1.6 KB

Contents

module JmeterPerf
  class DSL
    # DSL method synonymous with the JMeter Element XPathAssertion
    # @param params [Hash] Parameters for the XPathAssertion element (default: `{}`).
    # @yield block to attach to the XPathAssertion element
    # @return [JmeterPerf::XPathAssertion], a subclass of JmeterPerf::DSL that can be chained with other DSL methods.
    # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#xpathassertion
    def x_path_assertion(params = {}, &)
      node = XPathAssertion.new(params)
      attach_node(node, &)
    end

    class XPathAssertion
      attr_accessor :doc
      include JmeterPerf::Helpers::XmlDocumentUpdater

      def initialize(params = {})
        testname = params.is_a?(Array) ? "XPathAssertion" : (params[:name] || "XPathAssertion")
        @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc(
          <<~EOS
            <XPathAssertion guiclass="XPathAssertionGui" testclass="XPathAssertion" testname="#{testname}" enabled="true">
              <boolProp name="XPath.negate">false</boolProp>
              <stringProp name="XPath.xpath">/</stringProp>
              <boolProp name="XPath.validate">false</boolProp>
              <boolProp name="XPath.whitespace">false</boolProp>
              <boolProp name="XPath.tolerant">false</boolProp>
              <boolProp name="XPath.namespace">false</boolProp>
              <stringProp name="Assertion.scope">all</stringProp>
            </XPathAssertion>
          EOS
        ))
        update params
        update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath]
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
jmeter_perf-1.1.1 lib/jmeter_perf/dsl/x_path_assertion.rb
jmeter_perf-1.1.0 lib/jmeter_perf/dsl/x_path_assertion.rb
jmeter_perf-1.0.10 lib/jmeter_perf/dsl/x_path_assertion.rb
jmeter_perf-1.0.9 lib/jmeter_perf/dsl/x_path_assertion.rb
jmeter_perf-1.0.8 lib/jmeter_perf/dsl/x_path_assertion.rb
jmeter_perf-1.0.7 lib/jmeter_perf/dsl/x_path_assertion.rb
jmeter_perf-1.0.6 lib/jmeter_perf/dsl/x_path_assertion.rb