module JmeterPerf class DSL # DSL method synonymous with the JMeter Element JDBCConnectionConfiguration # @param params [Hash] Parameters for the JDBCConnectionConfiguration element (default: `{}`). # @yield block to attach to the JDBCConnectionConfiguration element # @return [JmeterPerf::JDBCConnectionConfiguration], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#jdbcconnectionconfiguration def jdbc_connection_configuration(params = {}, &) node = JDBCConnectionConfiguration.new(params) attach_node(node, &) end class JDBCConnectionConfiguration attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "JDBCConnectionConfiguration" : (params[:name] || "JDBCConnectionConfiguration") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS true Select 1 5000 true 10 10000 DEFAULT 60000 EOS )) update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end end