Class: RubyJmeter::HttpRequestDefaults
- Inherits:
-
Object
- Object
- RubyJmeter::HttpRequestDefaults
- Includes:
- Helper
- Defined in:
- lib/ruby-jmeter/dsl/http_request_defaults.rb
Instance Attribute Summary collapse
-
#doc ⇒ Object
Returns the value of attribute doc.
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ HttpRequestDefaults
constructor
A new instance of HttpRequestDefaults.
Methods included from Helper
#enabled, #enabled_disabled, #update, #update_at_xpath, #update_collection
Constructor Details
#initialize(params = {}) ⇒ HttpRequestDefaults
Returns a new instance of HttpRequestDefaults.
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/ruby-jmeter/dsl/http_request_defaults.rb', line 13 def initialize(params={}) testname = params.kind_of?(Array) ? 'HttpRequestDefaults' : (params[:name] || 'HttpRequestDefaults') @doc = Nokogiri::XML("<ConfigTestElement guiclass=\"HttpDefaultsGui\" testclass=\"ConfigTestElement\" testname=\"\#{testname}\" enabled=\"true\">\n <elementProp name=\"HTTPsampler.Arguments\" elementType=\"Arguments\" guiclass=\"HTTPArgumentsPanel\" testclass=\"Arguments\" testname=\"\#{testname}\" enabled=\"true\">\n<collectionProp name=\"Arguments.arguments\"/>\n </elementProp>\n <stringProp name=\"HTTPSampler.domain\"/>\n <stringProp name=\"HTTPSampler.port\"/>\n <stringProp name=\"HTTPSampler.connect_timeout\"/>\n <stringProp name=\"HTTPSampler.response_timeout\"/>\n <stringProp name=\"HTTPSampler.protocol\"/>\n <stringProp name=\"HTTPSampler.contentEncoding\"/>\n <stringProp name=\"HTTPSampler.path\">/</stringProp>\n <stringProp name=\"HTTPSampler.implementation\">HttpClient4</stringProp>\n <boolProp name=\"HTTPSampler.image_parser\">true</boolProp>\n <boolProp name=\"HTTPSampler.concurrentDwn\">true</boolProp>\n <stringProp name=\"HTTPSampler.concurrentPool\">4</stringProp>\n</ConfigTestElement>)\n EOS\n update params\n update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath]\nend\n".strip_heredoc) |
Instance Attribute Details
#doc ⇒ Object
Returns the value of attribute doc.
10 11 12 |
# File 'lib/ruby-jmeter/dsl/http_request_defaults.rb', line 10 def doc @doc end |