Class: RubyJmeter::AccessLogSampler
- Inherits:
-
Object
- Object
- RubyJmeter::AccessLogSampler
- Includes:
- Helper
- Defined in:
- lib/ruby-jmeter/dsl/access_log_sampler.rb
Instance Attribute Summary collapse
-
#doc ⇒ Object
Returns the value of attribute doc.
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ AccessLogSampler
constructor
A new instance of AccessLogSampler.
Methods included from Helper
#enabled, #enabled_disabled, #update, #update_at_xpath, #update_collection
Constructor Details
#initialize(params = {}) ⇒ AccessLogSampler
Returns a new instance of AccessLogSampler.
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/ruby-jmeter/dsl/access_log_sampler.rb', line 13 def initialize(params={}) testname = params.kind_of?(Array) ? 'AccessLogSampler' : (params[:name] || 'AccessLogSampler') @doc = Nokogiri::XML(<<-EOS.strip_heredoc) <AccessLogSampler guiclass="TestBeanGUI" testclass="AccessLogSampler" testname="#{testname}" enabled="true"> <elementProp name="HTTPsampler.Arguments" elementType="Arguments"> <collectionProp name="Arguments.arguments"/> </elementProp> <stringProp name="domain"/> <boolProp name="imageParsing">false</boolProp> <stringProp name="logFile"/> <stringProp name="parserClassName">org.apache.jmeter.protocol.http.util.accesslog.TCLogParser</stringProp> <stringProp name="portString"/> </AccessLogSampler>) EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end |
Instance Attribute Details
#doc ⇒ Object
Returns the value of attribute doc.
10 11 12 |
# File 'lib/ruby-jmeter/dsl/access_log_sampler.rb', line 10 def doc @doc end |