Sha256: dfe17135fe76864f81c513a246eba56d59ae12fa00d8e84c29d7c837121a57ec

Contents?: true

Size: 1.64 KB

Versions: 1

Compression:

Stored size: 1.64 KB

Contents

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

  class LDAPRequest
    attr_accessor :doc
    include Helper

    def initialize(params = {})
      testname = params.is_a?(Array) ? "LDAPRequest" : (params[:name] || "LDAPRequest")
      @doc = Nokogiri::XML(<<~EOS.strip_heredoc)
        <LDAPSampler guiclass="LdapTestSamplerGui" testclass="LDAPSampler" testname="#{testname}" enabled="true">
          <stringProp name="servername"/>
          <stringProp name="port"/>
          <stringProp name="rootdn"/>
          <boolProp name="user_defined">false</boolProp>
          <stringProp name="test">add</stringProp>
          <stringProp name="base_entry_dn"/>
          <elementProp name="arguments" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="#{testname}" enabled="true">
            <collectionProp name="Arguments.arguments"/>
          </elementProp>
          <stringProp name="ConfigTestElement.username"/>
          <stringProp name="ConfigTestElement.password"/>
        </LDAPSampler>
      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/ldap_request.rb