Class: Gridinit::Jmeter::HttpRequestDefaults

Inherits:
Object
  • Object
show all
Includes:
Helper
Defined in:
lib/gridinit-jmeter/idl/http_request_defaults.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Helper

#enabled, #update

Constructor Details

#initialize(name, params = {}) ⇒ HttpRequestDefaults

Returns a new instance of HttpRequestDefaults.



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/gridinit-jmeter/idl/http_request_defaults.rb', line 15

def initialize(name, params={})
  @doc = Nokogiri::XML(<<-EOS.strip_heredoc)
<ConfigTestElement guiclass="HttpDefaultsGui" testclass="ConfigTestElement" testname="#{name}" enabled="true">
  <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="#{name}" enabled="true">
    <collectionProp name="Arguments.arguments"/>
  </elementProp>
  <stringProp name="HTTPSampler.domain"/>
  <stringProp name="HTTPSampler.port"/>
  <stringProp name="HTTPSampler.connect_timeout"/>
  <stringProp name="HTTPSampler.response_timeout"/>
  <stringProp name="HTTPSampler.protocol"/>
  <stringProp name="HTTPSampler.contentEncoding"/>
  <stringProp name="HTTPSampler.path"/>
  <stringProp name="HTTPSampler.concurrentPool">4</stringProp>
</ConfigTestElement>)
  EOS
  update params
end

Instance Attribute Details

#docObject

Returns the value of attribute doc.



12
13
14
# File 'lib/gridinit-jmeter/idl/http_request_defaults.rb', line 12

def doc
  @doc
end