flood-io/ruby-jmeter

View on GitHub
lib/ruby-jmeter/dsl/html_assertion.rb

Summary

Maintainability
A
45 mins
Test Coverage
module RubyJmeter
  class DSL
    def html_assertion(params={}, &block)
      node = RubyJmeter::HtmlAssertion.new(params)
      attach_node(node, &block)
    end
  end

  class HtmlAssertion
    attr_accessor :doc
    include Helper

    def initialize(params={})
      testname = params.kind_of?(Array) ? 'HtmlAssertion' : (params[:name] || 'HtmlAssertion')
      @doc = Nokogiri::XML(<<-EOS.strip_heredoc)
<HTMLAssertion guiclass="HTMLAssertionGui" testclass="HTMLAssertion" testname="#{testname}" enabled="true">
  <longProp name="html_assertion_error_threshold">0</longProp>
  <longProp name="html_assertion_warning_threshold">0</longProp>
  <stringProp name="html_assertion_doctype">omit</stringProp>
  <boolProp name="html_assertion_errorsonly">false</boolProp>
  <longProp name="html_assertion_format">0</longProp>
  <stringProp name="html_assertion_filename"/>
</HTMLAssertion>)
      EOS
      update params
      update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath]
    end
  end

end