pulpcore_client 3.110.3 → 3.111.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -48,6 +48,24 @@ module PulpcoreClient
48
48
  # If True, TLS peer validation must be performed.
49
49
  attr_accessor :tls_validation
50
50
 
51
+ # Total number of simultaneous connections. If not set then the default value will be used.
52
+ attr_accessor :download_concurrency
53
+
54
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
55
+ attr_accessor :max_retries
56
+
57
+ # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
58
+ attr_accessor :total_timeout
59
+
60
+ # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
61
+ attr_accessor :connect_timeout
62
+
63
+ # aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
64
+ attr_accessor :sock_connect_timeout
65
+
66
+ # aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
67
+ attr_accessor :sock_read_timeout
68
+
51
69
  # List of hidden (write only) fields
52
70
  attr_accessor :hidden_fields
53
71
 
@@ -96,6 +114,12 @@ module PulpcoreClient
96
114
  :'ca_cert' => :'ca_cert',
97
115
  :'client_cert' => :'client_cert',
98
116
  :'tls_validation' => :'tls_validation',
117
+ :'download_concurrency' => :'download_concurrency',
118
+ :'max_retries' => :'max_retries',
119
+ :'total_timeout' => :'total_timeout',
120
+ :'connect_timeout' => :'connect_timeout',
121
+ :'sock_connect_timeout' => :'sock_connect_timeout',
122
+ :'sock_read_timeout' => :'sock_read_timeout',
99
123
  :'hidden_fields' => :'hidden_fields',
100
124
  :'q_select' => :'q_select',
101
125
  :'last_replication' => :'last_replication',
@@ -122,6 +146,12 @@ module PulpcoreClient
122
146
  :'ca_cert' => :'String',
123
147
  :'client_cert' => :'String',
124
148
  :'tls_validation' => :'Boolean',
149
+ :'download_concurrency' => :'Integer',
150
+ :'max_retries' => :'Integer',
151
+ :'total_timeout' => :'Float',
152
+ :'connect_timeout' => :'Float',
153
+ :'sock_connect_timeout' => :'Float',
154
+ :'sock_read_timeout' => :'Float',
125
155
  :'hidden_fields' => :'Array<GenericRemoteResponseHiddenFieldsInner>',
126
156
  :'q_select' => :'String',
127
157
  :'last_replication' => :'Time',
@@ -135,6 +165,12 @@ module PulpcoreClient
135
165
  :'domain',
136
166
  :'ca_cert',
137
167
  :'client_cert',
168
+ :'download_concurrency',
169
+ :'max_retries',
170
+ :'total_timeout',
171
+ :'connect_timeout',
172
+ :'sock_connect_timeout',
173
+ :'sock_read_timeout',
138
174
  :'q_select',
139
175
  ])
140
176
  end
@@ -204,6 +240,30 @@ module PulpcoreClient
204
240
  self.tls_validation = attributes[:'tls_validation']
205
241
  end
206
242
 
243
+ if attributes.key?(:'download_concurrency')
244
+ self.download_concurrency = attributes[:'download_concurrency']
245
+ end
246
+
247
+ if attributes.key?(:'max_retries')
248
+ self.max_retries = attributes[:'max_retries']
249
+ end
250
+
251
+ if attributes.key?(:'total_timeout')
252
+ self.total_timeout = attributes[:'total_timeout']
253
+ end
254
+
255
+ if attributes.key?(:'connect_timeout')
256
+ self.connect_timeout = attributes[:'connect_timeout']
257
+ end
258
+
259
+ if attributes.key?(:'sock_connect_timeout')
260
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
261
+ end
262
+
263
+ if attributes.key?(:'sock_read_timeout')
264
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
265
+ end
266
+
207
267
  if attributes.key?(:'hidden_fields')
208
268
  if (value = attributes[:'hidden_fields']).is_a?(Array)
209
269
  self.hidden_fields = value
@@ -240,6 +300,26 @@ module PulpcoreClient
240
300
  invalid_properties.push('invalid value for "api_root", api_root cannot be nil.')
241
301
  end
242
302
 
303
+ if !@download_concurrency.nil? && @download_concurrency < 1
304
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
305
+ end
306
+
307
+ if !@total_timeout.nil? && @total_timeout < 0.0
308
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
309
+ end
310
+
311
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
312
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
313
+ end
314
+
315
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
316
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
317
+ end
318
+
319
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
320
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
321
+ end
322
+
243
323
  invalid_properties
244
324
  end
245
325
 
@@ -250,9 +330,64 @@ module PulpcoreClient
250
330
  return false if @name.nil?
251
331
  return false if @base_url.nil?
252
332
  return false if @api_root.nil?
333
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
334
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
335
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
336
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
337
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
253
338
  true
254
339
  end
255
340
 
341
+ # Custom attribute writer method with validation
342
+ # @param [Object] download_concurrency Value to be assigned
343
+ def download_concurrency=(download_concurrency)
344
+ if !download_concurrency.nil? && download_concurrency < 1
345
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
346
+ end
347
+
348
+ @download_concurrency = download_concurrency
349
+ end
350
+
351
+ # Custom attribute writer method with validation
352
+ # @param [Object] total_timeout Value to be assigned
353
+ def total_timeout=(total_timeout)
354
+ if !total_timeout.nil? && total_timeout < 0.0
355
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
356
+ end
357
+
358
+ @total_timeout = total_timeout
359
+ end
360
+
361
+ # Custom attribute writer method with validation
362
+ # @param [Object] connect_timeout Value to be assigned
363
+ def connect_timeout=(connect_timeout)
364
+ if !connect_timeout.nil? && connect_timeout < 0.0
365
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
366
+ end
367
+
368
+ @connect_timeout = connect_timeout
369
+ end
370
+
371
+ # Custom attribute writer method with validation
372
+ # @param [Object] sock_connect_timeout Value to be assigned
373
+ def sock_connect_timeout=(sock_connect_timeout)
374
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
375
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
376
+ end
377
+
378
+ @sock_connect_timeout = sock_connect_timeout
379
+ end
380
+
381
+ # Custom attribute writer method with validation
382
+ # @param [Object] sock_read_timeout Value to be assigned
383
+ def sock_read_timeout=(sock_read_timeout)
384
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
385
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
386
+ end
387
+
388
+ @sock_read_timeout = sock_read_timeout
389
+ end
390
+
256
391
  # Checks equality by comparing each attribute.
257
392
  # @param [Object] Object to be compared
258
393
  def ==(o)
@@ -269,6 +404,12 @@ module PulpcoreClient
269
404
  ca_cert == o.ca_cert &&
270
405
  client_cert == o.client_cert &&
271
406
  tls_validation == o.tls_validation &&
407
+ download_concurrency == o.download_concurrency &&
408
+ max_retries == o.max_retries &&
409
+ total_timeout == o.total_timeout &&
410
+ connect_timeout == o.connect_timeout &&
411
+ sock_connect_timeout == o.sock_connect_timeout &&
412
+ sock_read_timeout == o.sock_read_timeout &&
272
413
  hidden_fields == o.hidden_fields &&
273
414
  q_select == o.q_select &&
274
415
  last_replication == o.last_replication &&
@@ -284,7 +425,7 @@ module PulpcoreClient
284
425
  # Calculates hash code according to all attributes.
285
426
  # @return [Integer] Hash code
286
427
  def hash
287
- [pulp_href, prn, pulp_created, pulp_last_updated, name, base_url, api_root, domain, ca_cert, client_cert, tls_validation, hidden_fields, q_select, last_replication, policy].hash
428
+ [pulp_href, prn, pulp_created, pulp_last_updated, name, base_url, api_root, domain, ca_cert, client_cert, tls_validation, download_concurrency, max_retries, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, hidden_fields, q_select, last_replication, policy].hash
288
429
  end
289
430
 
290
431
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpcoreClient
14
- VERSION = '3.110.3'
14
+ VERSION = '3.111.1'
15
15
  end
@@ -38,6 +38,7 @@ describe 'ContentOpenpgpPublickeyApi' do
38
38
  # @param [Hash] opts the optional parameters
39
39
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
40
  # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
41
+ # @option opts [Boolean] :overwrite When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when &#39;repository&#39; is specified. Defaults to true.
41
42
  # @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
42
43
  # @option opts [File] :file An uploaded file that may be turned into the content unit.
43
44
  # @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
@@ -104,7 +104,7 @@ describe 'UpstreamPulpsApi' do
104
104
  # @option opts [String] :name__regex Filter results where name matches regex value
105
105
  # @option opts [String] :name__startswith Filter results where name starts with value
106
106
  # @option opts [Integer] :offset The initial index from which to return the results.
107
- # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;base_url&#x60; - Base url * &#x60;-base_url&#x60; - Base url (descending) * &#x60;api_root&#x60; - Api root * &#x60;-api_root&#x60; - Api root (descending) * &#x60;domain&#x60; - Domain * &#x60;-domain&#x60; - Domain (descending) * &#x60;ca_cert&#x60; - Ca cert * &#x60;-ca_cert&#x60; - Ca cert (descending) * &#x60;client_cert&#x60; - Client cert * &#x60;-client_cert&#x60; - Client cert (descending) * &#x60;client_key&#x60; - Client key * &#x60;-client_key&#x60; - Client key (descending) * &#x60;tls_validation&#x60; - Tls validation * &#x60;-tls_validation&#x60; - Tls validation (descending) * &#x60;username&#x60; - Username * &#x60;-username&#x60; - Username (descending) * &#x60;password&#x60; - Password * &#x60;-password&#x60; - Password (descending) * &#x60;q_select&#x60; - Q select * &#x60;-q_select&#x60; - Q select (descending) * &#x60;policy&#x60; - Policy * &#x60;-policy&#x60; - Policy (descending) * &#x60;last_replication&#x60; - Last replication * &#x60;-last_replication&#x60; - Last replication (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
107
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;base_url&#x60; - Base url * &#x60;-base_url&#x60; - Base url (descending) * &#x60;api_root&#x60; - Api root * &#x60;-api_root&#x60; - Api root (descending) * &#x60;domain&#x60; - Domain * &#x60;-domain&#x60; - Domain (descending) * &#x60;ca_cert&#x60; - Ca cert * &#x60;-ca_cert&#x60; - Ca cert (descending) * &#x60;client_cert&#x60; - Client cert * &#x60;-client_cert&#x60; - Client cert (descending) * &#x60;client_key&#x60; - Client key * &#x60;-client_key&#x60; - Client key (descending) * &#x60;tls_validation&#x60; - Tls validation * &#x60;-tls_validation&#x60; - Tls validation (descending) * &#x60;username&#x60; - Username * &#x60;-username&#x60; - Username (descending) * &#x60;password&#x60; - Password * &#x60;-password&#x60; - Password (descending) * &#x60;download_concurrency&#x60; - Download concurrency * &#x60;-download_concurrency&#x60; - Download concurrency (descending) * &#x60;max_retries&#x60; - Max retries * &#x60;-max_retries&#x60; - Max retries (descending) * &#x60;total_timeout&#x60; - Total timeout * &#x60;-total_timeout&#x60; - Total timeout (descending) * &#x60;connect_timeout&#x60; - Connect timeout * &#x60;-connect_timeout&#x60; - Connect timeout (descending) * &#x60;sock_connect_timeout&#x60; - Sock connect timeout * &#x60;-sock_connect_timeout&#x60; - Sock connect timeout (descending) * &#x60;sock_read_timeout&#x60; - Sock read timeout * &#x60;-sock_read_timeout&#x60; - Sock read timeout (descending) * &#x60;q_select&#x60; - Q select * &#x60;-q_select&#x60; - Q select (descending) * &#x60;policy&#x60; - Policy * &#x60;-policy&#x60; - Policy (descending) * &#x60;last_replication&#x60; - Last replication * &#x60;-last_replication&#x60; - Last replication (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
108
108
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
109
109
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
110
110
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
@@ -27,79 +27,79 @@ describe PulpcoreClient::ArtifactDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "content_guard_prn"' do
30
+ describe 'test attribute "base_url"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "hidden"' do
36
+ describe 'test attribute "pulp_labels"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "base_path"' do
42
+ describe 'test attribute "content_guard"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "content_guard"' do
48
+ describe 'test attribute "pulp_href"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "pulp_href"' do
54
+ describe 'test attribute "prn"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "no_content_change_since"' do
60
+ describe 'test attribute "name"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "name"' do
66
+ describe 'test attribute "no_content_change_since"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "prn"' do
72
+ describe 'test attribute "pulp_created"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "pulp_labels"' do
78
+ describe 'test attribute "pulp_last_updated"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "repository_version"' do
84
+ describe 'test attribute "content_guard_prn"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "base_url"' do
90
+ describe 'test attribute "hidden"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
94
94
  end
95
95
 
96
- describe 'test attribute "pulp_last_updated"' do
96
+ describe 'test attribute "base_path"' do
97
97
  it 'should work' do
98
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "pulp_created"' do
102
+ describe 'test attribute "repository_version"' do
103
103
  it 'should work' do
104
104
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
105
  end
@@ -87,6 +87,42 @@ describe PulpcoreClient::PatchedUpstreamPulp do
87
87
  end
88
88
  end
89
89
 
90
+ describe 'test attribute "download_concurrency"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
96
+ describe 'test attribute "max_retries"' do
97
+ it 'should work' do
98
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
+ end
100
+ end
101
+
102
+ describe 'test attribute "total_timeout"' do
103
+ it 'should work' do
104
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
+ end
106
+ end
107
+
108
+ describe 'test attribute "connect_timeout"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
114
+ describe 'test attribute "sock_connect_timeout"' do
115
+ it 'should work' do
116
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
+ end
118
+ end
119
+
120
+ describe 'test attribute "sock_read_timeout"' do
121
+ it 'should work' do
122
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
123
+ end
124
+ end
125
+
90
126
  describe 'test attribute "q_select"' do
91
127
  it 'should work' do
92
128
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -45,4 +45,10 @@ describe PulpcoreClient::RepositoryAddRemoveContent do
45
45
  end
46
46
  end
47
47
 
48
+ describe 'test attribute "overwrite"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
48
54
  end
@@ -93,6 +93,42 @@ describe PulpcoreClient::UpstreamPulpResponse do
93
93
  end
94
94
  end
95
95
 
96
+ describe 'test attribute "download_concurrency"' do
97
+ it 'should work' do
98
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
+ end
100
+ end
101
+
102
+ describe 'test attribute "max_retries"' do
103
+ it 'should work' do
104
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
+ end
106
+ end
107
+
108
+ describe 'test attribute "total_timeout"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
114
+ describe 'test attribute "connect_timeout"' do
115
+ it 'should work' do
116
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
+ end
118
+ end
119
+
120
+ describe 'test attribute "sock_connect_timeout"' do
121
+ it 'should work' do
122
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
123
+ end
124
+ end
125
+
126
+ describe 'test attribute "sock_read_timeout"' do
127
+ it 'should work' do
128
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
129
+ end
130
+ end
131
+
96
132
  describe 'test attribute "hidden_fields"' do
97
133
  it 'should work' do
98
134
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -87,6 +87,42 @@ describe PulpcoreClient::UpstreamPulp do
87
87
  end
88
88
  end
89
89
 
90
+ describe 'test attribute "download_concurrency"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
96
+ describe 'test attribute "max_retries"' do
97
+ it 'should work' do
98
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
+ end
100
+ end
101
+
102
+ describe 'test attribute "total_timeout"' do
103
+ it 'should work' do
104
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
+ end
106
+ end
107
+
108
+ describe 'test attribute "connect_timeout"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
114
+ describe 'test attribute "sock_connect_timeout"' do
115
+ it 'should work' do
116
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
+ end
118
+ end
119
+
120
+ describe 'test attribute "sock_read_timeout"' do
121
+ it 'should work' do
122
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
123
+ end
124
+ end
125
+
90
126
  describe 'test attribute "q_select"' do
91
127
  it 'should work' do
92
128
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/