Sha256: 729ebd916ba98bdfd6aaf19a0331384b0f2c9c262bc57f55271fc26b007ded0d
Contents?: true
Size: 1.92 KB
Versions: 1
Compression:
Stored size: 1.92 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element LDAPExtendedRequest # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#ldapextendedrequest # @param [Hash] params Parameters for the LDAPExtendedRequest element (default: `{}`). # @yield block to attach to the LDAPExtendedRequest element # @return [JmeterPerf::LDAPExtendedRequest], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. def ldap_extended_request(params = {}, &) node = JmeterPerf::LDAPExtendedRequest.new(params) attach_node(node, &) end end class LDAPExtendedRequest attr_accessor :doc include Helper def initialize(params = {}) testname = params.is_a?(Array) ? "LDAPExtendedRequest" : (params[:name] || "LDAPExtendedRequest") @doc = Nokogiri::XML(<<~EOS.strip_heredoc) <LDAPExtSampler guiclass="LdapExtTestSamplerGui" testclass="LDAPExtSampler" testname="#{testname}" enabled="true"> <stringProp name="servername"/> <stringProp name="port"/> <stringProp name="rootdn"/> <stringProp name="scope">2</stringProp> <stringProp name="countlimit"/> <stringProp name="timelimit"/> <stringProp name="attributes"/> <stringProp name="return_object">false</stringProp> <stringProp name="deref_aliases">false</stringProp> <stringProp name="connection_timeout"/> <stringProp name="parseflag">false</stringProp> <stringProp name="secure">false</stringProp> <stringProp name="user_dn"/> <stringProp name="user_pw"/> <stringProp name="comparedn"/> <stringProp name="comparefilt"/> <stringProp name="modddn"/> <stringProp name="newdn"/> </LDAPExtSampler> 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_extended_request.rb |