Sha256: 1ed8c5952de0a0c7dc8420d7221dc5edc1176866d97f742dd653cf801b9c4f51

Contents?: true

Size: 1.46 KB

Versions: 5

Compression:

Stored size: 1.46 KB

Contents

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

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

      def initialize(params = {})
        testname = params.is_a?(Array) ? "BeanShellSampler" : (params[:name] || "BeanShellSampler")
        @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc(
          <<~EOS
            <BeanShellSampler guiclass="BeanShellSamplerGui" testclass="BeanShellSampler" testname="#{testname}" enabled="true">
              <stringProp name="BeanShellSampler.query"/>
              <stringProp name="BeanShellSampler.filename"/>
              <stringProp name="BeanShellSampler.parameters"/>
              <boolProp name="BeanShellSampler.resetInterpreter">false</boolProp>
            </BeanShellSampler>
          EOS
        ))
        update params
        update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath]
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jmeter_perf-1.0.5 lib/jmeter_perf/dsl/bean_shell_sampler.rb
jmeter_perf-1.0.4 lib/jmeter_perf/dsl/bean_shell_sampler.rb
jmeter_perf-1.0.2 lib/jmeter_perf/dsl/bean_shell_sampler.rb
jmeter_perf-1.0.1 lib/jmeter_perf/dsl/bean_shell_sampler.rb
jmeter_perf-1.0.0 lib/jmeter_perf/dsl/bean_shell_sampler.rb