freeclimb 5.0.0 → 5.1.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -1
- data/Gemfile +2 -1
- data/Gemfile.lock +21 -15
- data/README.md +5 -4
- data/docs/MessageResult.md +7 -1
- data/docs/TFNCampaign.md +34 -0
- data/lib/freeclimb/configuration.rb +1 -2
- data/lib/freeclimb/models/dequeue.rb +2 -4
- data/lib/freeclimb/models/message_result.rb +36 -5
- data/lib/freeclimb/models/remove_from_conference.rb +2 -4
- data/lib/freeclimb/models/start_record_call.rb +2 -4
- data/lib/freeclimb/models/terminate_conference.rb +2 -4
- data/lib/freeclimb/models/tfn_campaign.rb +370 -0
- data/lib/freeclimb/models/unpark.rb +2 -4
- data/lib/freeclimb/version.rb +1 -1
- data/lib/freeclimb.rb +1 -0
- data/openapi.json +93 -38
- data/spec/api/default_api_spec.rb +39 -117
- data/spec/models/account_request_spec.rb +113 -2
- data/spec/models/account_result_spec.rb +591 -28
- data/spec/models/account_status_spec.rb +1 -0
- data/spec/models/account_type_spec.rb +1 -0
- data/spec/models/add_to_conference_notification_webhook_spec.rb +654 -5
- data/spec/models/add_to_conference_spec.rb +471 -2
- data/spec/models/add_to_queue_notification_webhook_spec.rb +465 -2
- data/spec/models/answered_by_spec.rb +1 -0
- data/spec/models/application_list_spec.rb +323 -2
- data/spec/models/application_request_spec.rb +393 -2
- data/spec/models/application_result_spec.rb +723 -14
- data/spec/models/available_number_list_spec.rb +323 -2
- data/spec/models/available_number_spec.rb +380 -21
- data/spec/models/barge_in_reason_spec.rb +1 -0
- data/spec/models/buy_incoming_number_request_spec.rb +169 -2
- data/spec/models/call_control_webhook_spec.rb +281 -2
- data/spec/models/call_direction_spec.rb +1 -0
- data/spec/models/call_ended_reason_spec.rb +1 -0
- data/spec/models/call_list_spec.rb +323 -2
- data/spec/models/call_result_spec.rb +1020 -9
- data/spec/models/call_status_spec.rb +1 -0
- data/spec/models/call_status_webhook_spec.rb +501 -2
- data/spec/models/capabilities_spec.rb +191 -2
- data/spec/models/completion_request_spec.rb +54 -2
- data/spec/models/completion_result_spec.rb +93 -2
- data/spec/models/completion_result_status_spec.rb +1 -0
- data/spec/models/conference_list_spec.rb +323 -2
- data/spec/models/conference_participant_list_spec.rb +323 -2
- data/spec/models/conference_participant_result_spec.rb +532 -7
- data/spec/models/conference_recording_status_webhook_spec.rb +654 -5
- data/spec/models/conference_result_spec.rb +768 -55
- data/spec/models/conference_status_spec.rb +1 -0
- data/spec/models/conference_status_webhook_spec.rb +654 -5
- data/spec/models/create_conference_request_spec.rb +243 -2
- data/spec/models/create_conference_spec.rb +281 -2
- data/spec/models/create_conference_webhook_spec.rb +654 -5
- data/spec/models/create_web_rtc_token_spec.rb +151 -2
- data/spec/models/dequeue_spec.rb +1 -0
- data/spec/models/dequeue_webhook_spec.rb +565 -8
- data/spec/models/enqueue_spec.rb +225 -2
- data/spec/models/filter_logs_request_spec.rb +57 -2
- data/spec/models/get_digits_reason_spec.rb +1 -0
- data/spec/models/get_digits_spec.rb +379 -2
- data/spec/models/get_digits_webhook_spec.rb +623 -12
- data/spec/models/get_speech_reason_spec.rb +1 -0
- data/spec/models/get_speech_spec.rb +556 -11
- data/spec/models/get_speech_webhook_spec.rb +870 -15
- data/spec/models/grammar_file_built_in_spec.rb +1 -0
- data/spec/models/grammar_type_spec.rb +1 -0
- data/spec/models/hangup_spec.rb +57 -2
- data/spec/models/if_machine_spec.rb +1 -0
- data/spec/models/inbound_call_webhook_spec.rb +521 -2
- data/spec/models/incoming_number_list_spec.rb +323 -2
- data/spec/models/incoming_number_request_spec.rb +169 -2
- data/spec/models/incoming_number_result_spec.rb +930 -43
- data/spec/models/language_spec.rb +1 -0
- data/spec/models/leave_conference_webhook_spec.rb +465 -2
- data/spec/models/log_level_spec.rb +1 -0
- data/spec/models/log_list_spec.rb +323 -2
- data/spec/models/log_result_spec.rb +368 -9
- data/spec/models/machine_detected_webhook_spec.rb +565 -10
- data/spec/models/machine_type_spec.rb +1 -0
- data/spec/models/make_call_request_spec.rb +529 -6
- data/spec/models/message_delivery_webhook_spec.rb +565 -6
- data/spec/models/message_direction_spec.rb +1 -0
- data/spec/models/message_request_spec.rb +469 -2
- data/spec/models/message_result_spec.rb +1364 -225
- data/spec/models/message_status_spec.rb +1 -0
- data/spec/models/message_status_webhook_spec.rb +615 -20
- data/spec/models/messages_list_spec.rb +323 -2
- data/spec/models/mutable_resource_model_spec.rb +207 -2
- data/spec/models/out_dial_api_connect_webhook_spec.rb +521 -2
- data/spec/models/out_dial_connect_webhook_spec.rb +521 -2
- data/spec/models/out_dial_spec.rb +505 -2
- data/spec/models/out_dial_start_webhook_spec.rb +599 -24
- data/spec/models/pagination_model_spec.rb +285 -2
- data/spec/models/park_spec.rb +169 -2
- data/spec/models/pause_spec.rb +39 -2
- data/spec/models/percl_command_spec.rb +54 -2
- data/spec/models/percl_script_spec.rb +39 -2
- data/spec/models/play_beep_spec.rb +1 -0
- data/spec/models/play_early_media_spec.rb +57 -2
- data/spec/models/play_spec.rb +133 -2
- data/spec/models/queue_list_spec.rb +323 -2
- data/spec/models/queue_member_list_spec.rb +323 -2
- data/spec/models/queue_member_spec.rb +245 -2
- data/spec/models/queue_request_spec.rb +95 -2
- data/spec/models/queue_result_spec.rb +564 -15
- data/spec/models/queue_result_status_spec.rb +1 -0
- data/spec/models/queue_wait_webhook_spec.rb +616 -21
- data/spec/models/record_utterance_spec.rb +303 -2
- data/spec/models/record_utterance_term_reason_spec.rb +1 -0
- data/spec/models/record_webhook_spec.rb +868 -13
- data/spec/models/recording_list_spec.rb +323 -2
- data/spec/models/recording_result_spec.rb +469 -2
- data/spec/models/redirect_spec.rb +57 -2
- data/spec/models/redirect_webhook_spec.rb +521 -2
- data/spec/models/reject_spec.rb +57 -2
- data/spec/models/remove_from_conference_spec.rb +1 -0
- data/spec/models/remove_from_queue_notification_webhook_spec.rb +546 -9
- data/spec/models/request_type_spec.rb +1 -0
- data/spec/models/say_spec.rb +189 -2
- data/spec/models/send_digits_spec.rb +133 -2
- data/spec/models/set_dtmf_pass_through_spec.rb +39 -2
- data/spec/models/set_listen_spec.rb +39 -2
- data/spec/models/set_talk_spec.rb +39 -2
- data/spec/models/sms_spec.rb +225 -2
- data/spec/models/sms_ten_dlc_brand_alt_business_id_type_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_brand_entity_type_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_brand_identity_status_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_brand_relationship_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_brand_spec.rb +1969 -423
- data/spec/models/sms_ten_dlc_brand_stock_exchange_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_brands_list_result_spec.rb +323 -2
- data/spec/models/sms_ten_dlc_campaign_spec.rb +2224 -550
- data/spec/models/sms_ten_dlc_campaign_status_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_campaigns_list_result_spec.rb +323 -2
- data/spec/models/sms_ten_dlc_partner_campaign_brand_spec.rb +597 -17
- data/spec/models/sms_ten_dlc_partner_campaign_spec.rb +1537 -155
- data/spec/models/sms_ten_dlc_partner_campaign_status_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_partner_campaigns_list_result_spec.rb +323 -2
- data/spec/models/sms_toll_free_campaign_registration_status_spec.rb +1 -0
- data/spec/models/sms_toll_free_campaign_spec.rb +355 -2
- data/spec/models/sms_toll_free_campaigns_list_result_spec.rb +323 -2
- data/spec/models/start_record_call_spec.rb +1 -0
- data/spec/models/terminate_conference_spec.rb +1 -0
- data/spec/models/tfn_campaign_spec.rb +1089 -0
- data/spec/models/tfn_spec.rb +57 -2
- data/spec/models/transcribe_reason_spec.rb +1 -0
- data/spec/models/transcribe_term_reason_spec.rb +1 -0
- data/spec/models/transcribe_utterance_record_spec.rb +115 -2
- data/spec/models/transcribe_utterance_spec.rb +288 -21
- data/spec/models/transcribe_webhook_spec.rb +1049 -4
- data/spec/models/unpark_spec.rb +1 -0
- data/spec/models/update_call_request_spec.rb +37 -2
- data/spec/models/update_call_request_status_spec.rb +1 -0
- data/spec/models/update_conference_participant_request_spec.rb +115 -2
- data/spec/models/update_conference_request_spec.rb +129 -2
- data/spec/models/update_conference_request_status_spec.rb +1 -0
- data/spec/models/webhook_spec.rb +54 -2
- metadata +129 -125
data/spec/models/enqueue_spec.rb
CHANGED
@@ -13,6 +13,7 @@ OpenAPI Generator version: 7.9.0
|
|
13
13
|
require 'spec_helper'
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
|
+
include Freeclimb
|
16
17
|
|
17
18
|
# Unit tests for Freeclimb::Enqueue
|
18
19
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
@@ -28,72 +29,120 @@ describe Freeclimb::Enqueue do
|
|
28
29
|
|
29
30
|
describe 'test attribute "action_url"' do
|
30
31
|
it 'should work' do
|
32
|
+
|
31
33
|
instance.action_url = "TEST_STRING"
|
32
34
|
expect(instance.action_url).to eq("TEST_STRING")
|
33
35
|
|
36
|
+
|
37
|
+
|
34
38
|
end
|
35
39
|
end
|
36
40
|
|
37
41
|
describe 'test attribute "notification_url"' do
|
38
42
|
it 'should work' do
|
43
|
+
|
39
44
|
instance.notification_url = "TEST_STRING"
|
40
45
|
expect(instance.notification_url).to eq("TEST_STRING")
|
41
46
|
|
47
|
+
|
48
|
+
|
42
49
|
end
|
43
50
|
end
|
44
51
|
|
45
52
|
describe 'test attribute "queue_id"' do
|
46
53
|
it 'should work' do
|
54
|
+
|
47
55
|
instance.queue_id = "TEST_STRING"
|
48
56
|
expect(instance.queue_id).to eq("TEST_STRING")
|
49
57
|
|
58
|
+
|
59
|
+
|
50
60
|
end
|
51
61
|
end
|
52
62
|
|
53
63
|
describe 'test attribute "wait_url"' do
|
54
64
|
it 'should work' do
|
65
|
+
|
55
66
|
instance.wait_url = "TEST_STRING"
|
56
67
|
expect(instance.wait_url).to eq("TEST_STRING")
|
57
68
|
|
69
|
+
|
70
|
+
|
58
71
|
end
|
59
72
|
end
|
60
73
|
|
61
74
|
describe 'test method "initialize"' do
|
62
75
|
it 'properly initializes with values' do
|
63
76
|
expect { instance = Freeclimb::Enqueue.new(
|
77
|
+
|
64
78
|
action_url: "TS",
|
65
79
|
|
80
|
+
|
81
|
+
|
82
|
+
|
66
83
|
notification_url: "TS",
|
67
84
|
|
85
|
+
|
86
|
+
|
87
|
+
|
68
88
|
queue_id: "TS",
|
69
89
|
|
90
|
+
|
91
|
+
|
92
|
+
|
70
93
|
wait_url: "TS",
|
71
94
|
|
95
|
+
|
96
|
+
|
72
97
|
)}.not_to raise_error()
|
73
98
|
end
|
74
99
|
it 'fails to initialize with input argument that is not a hash in Freeclimb::Enqueue' do
|
75
100
|
expect { instance = Freeclimb::Enqueue.new(
|
101
|
+
|
76
102
|
action_url: "TS",
|
77
103
|
|
104
|
+
|
105
|
+
|
106
|
+
|
78
107
|
notification_url: "TS",
|
79
108
|
|
109
|
+
|
110
|
+
|
111
|
+
|
80
112
|
queue_id: "TS",
|
81
113
|
|
114
|
+
|
115
|
+
|
116
|
+
|
82
117
|
wait_url: "TS",
|
83
118
|
|
119
|
+
|
120
|
+
|
84
121
|
invalid_attribute: true
|
85
122
|
)}.to raise_error(ArgumentError)
|
86
123
|
end
|
87
124
|
it 'fails to initialize with invalid attribute' do
|
88
125
|
expect { instance = Freeclimb::Enqueue.new(
|
126
|
+
|
89
127
|
action_url: "TS",
|
90
128
|
|
129
|
+
|
130
|
+
|
131
|
+
|
91
132
|
notification_url: "TS",
|
92
133
|
|
134
|
+
|
135
|
+
|
136
|
+
|
93
137
|
queue_id: "TS",
|
94
138
|
|
139
|
+
|
140
|
+
|
141
|
+
|
95
142
|
wait_url: "TS",
|
96
143
|
|
144
|
+
|
145
|
+
|
97
146
|
invalid_attribute: true
|
98
147
|
)}.to raise_error(ArgumentError)
|
99
148
|
end
|
@@ -102,14 +151,26 @@ describe Freeclimb::Enqueue do
|
|
102
151
|
describe 'test method "valid"' do
|
103
152
|
it 'checks if properties are valid' do
|
104
153
|
instance = Freeclimb::Enqueue.new(
|
154
|
+
|
105
155
|
action_url: "TS",
|
106
156
|
|
157
|
+
|
158
|
+
|
159
|
+
|
107
160
|
notification_url: "TS",
|
108
161
|
|
162
|
+
|
163
|
+
|
164
|
+
|
109
165
|
queue_id: "TS",
|
110
166
|
|
167
|
+
|
168
|
+
|
169
|
+
|
111
170
|
wait_url: "TS",
|
112
171
|
|
172
|
+
|
173
|
+
|
113
174
|
)
|
114
175
|
expect(instance.valid?).to eq(true)
|
115
176
|
end
|
@@ -126,50 +187,101 @@ describe Freeclimb::Enqueue do
|
|
126
187
|
|
127
188
|
describe 'test method "eql?"' do
|
128
189
|
it 'checks if objects are equal' do
|
129
|
-
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
|
130
194
|
instance_1 = Freeclimb::Enqueue.new(
|
195
|
+
|
131
196
|
action_url: "TS",
|
132
197
|
|
198
|
+
|
199
|
+
|
200
|
+
|
133
201
|
notification_url: "TS",
|
134
202
|
|
203
|
+
|
204
|
+
|
205
|
+
|
135
206
|
queue_id: "TS",
|
136
207
|
|
208
|
+
|
209
|
+
|
210
|
+
|
137
211
|
wait_url: "TS",
|
138
212
|
|
213
|
+
|
214
|
+
|
139
215
|
)
|
140
216
|
instance_2 = Freeclimb::Enqueue.new(
|
217
|
+
|
141
218
|
action_url: "TS",
|
142
219
|
|
220
|
+
|
221
|
+
|
222
|
+
|
143
223
|
notification_url: "TS",
|
144
224
|
|
225
|
+
|
226
|
+
|
227
|
+
|
145
228
|
queue_id: "TS",
|
146
229
|
|
230
|
+
|
231
|
+
|
232
|
+
|
147
233
|
wait_url: "TS",
|
148
234
|
|
235
|
+
|
236
|
+
|
149
237
|
)
|
150
238
|
expect(instance_1.eql?(instance_2)).to eq(true)
|
151
239
|
end
|
152
240
|
|
153
241
|
it 'checks if objects are not equal' do
|
154
242
|
instance_1 = Freeclimb::Enqueue.new(
|
243
|
+
|
155
244
|
action_url: "TS",
|
156
245
|
|
246
|
+
|
247
|
+
|
248
|
+
|
157
249
|
notification_url: "TS",
|
158
250
|
|
251
|
+
|
252
|
+
|
253
|
+
|
159
254
|
queue_id: "TS",
|
160
255
|
|
256
|
+
|
257
|
+
|
258
|
+
|
161
259
|
wait_url: "TS",
|
162
260
|
|
261
|
+
|
262
|
+
|
163
263
|
)
|
164
264
|
instance_2 = Freeclimb::Enqueue.new(
|
265
|
+
|
165
266
|
action_url: "ST",
|
166
267
|
|
268
|
+
|
269
|
+
|
270
|
+
|
167
271
|
notification_url: "ST",
|
168
272
|
|
273
|
+
|
274
|
+
|
275
|
+
|
169
276
|
queue_id: "ST",
|
170
277
|
|
278
|
+
|
279
|
+
|
280
|
+
|
171
281
|
wait_url: "ST",
|
172
282
|
|
283
|
+
|
284
|
+
|
173
285
|
)
|
174
286
|
expect(instance_1.eql?(instance_2)).to eq(false)
|
175
287
|
end
|
@@ -178,14 +290,26 @@ describe Freeclimb::Enqueue do
|
|
178
290
|
describe 'test method "hash"' do
|
179
291
|
it 'calculates hash code' do
|
180
292
|
instance = Freeclimb::Enqueue.new(
|
293
|
+
|
181
294
|
action_url: "TS",
|
182
295
|
|
296
|
+
|
297
|
+
|
298
|
+
|
183
299
|
notification_url: "TS",
|
184
300
|
|
301
|
+
|
302
|
+
|
303
|
+
|
185
304
|
queue_id: "TS",
|
186
305
|
|
306
|
+
|
307
|
+
|
308
|
+
|
187
309
|
wait_url: "TS",
|
188
310
|
|
311
|
+
|
312
|
+
|
189
313
|
)
|
190
314
|
expect(instance.hash).to be_a_kind_of(Integer)
|
191
315
|
end
|
@@ -194,24 +318,48 @@ describe Freeclimb::Enqueue do
|
|
194
318
|
describe 'test method "build_from_hash"' do
|
195
319
|
it 'builds equivalent model from hash code' do
|
196
320
|
instance_1 = Freeclimb::Enqueue.new(
|
321
|
+
|
197
322
|
action_url: "TS",
|
198
323
|
|
324
|
+
|
325
|
+
|
326
|
+
|
199
327
|
notification_url: "TS",
|
200
328
|
|
329
|
+
|
330
|
+
|
331
|
+
|
201
332
|
queue_id: "TS",
|
202
333
|
|
334
|
+
|
335
|
+
|
336
|
+
|
203
337
|
wait_url: "TS",
|
204
338
|
|
339
|
+
|
340
|
+
|
205
341
|
)
|
206
342
|
instance_2 = Freeclimb::Enqueue.new(
|
343
|
+
|
207
344
|
action_url: "TS",
|
208
345
|
|
346
|
+
|
347
|
+
|
348
|
+
|
209
349
|
notification_url: "TS",
|
210
350
|
|
351
|
+
|
352
|
+
|
353
|
+
|
211
354
|
queue_id: "TS",
|
212
355
|
|
356
|
+
|
357
|
+
|
358
|
+
|
213
359
|
wait_url: "TS",
|
214
360
|
|
361
|
+
|
362
|
+
|
215
363
|
)
|
216
364
|
|
217
365
|
expect(instance_2.build_from_hash(instance_1.hash)).to eq(instance_1.build_from_hash(instance_1.hash))
|
@@ -220,40 +368,72 @@ describe Freeclimb::Enqueue do
|
|
220
368
|
|
221
369
|
describe 'test method "_deserialize"' do
|
222
370
|
instance = Freeclimb::Enqueue.new(
|
371
|
+
|
223
372
|
action_url: "TS",
|
224
373
|
|
374
|
+
|
375
|
+
|
376
|
+
|
225
377
|
notification_url: "TS",
|
226
378
|
|
379
|
+
|
380
|
+
|
381
|
+
|
227
382
|
queue_id: "TS",
|
228
383
|
|
384
|
+
|
385
|
+
|
386
|
+
|
229
387
|
wait_url: "TS",
|
230
388
|
|
389
|
+
|
390
|
+
|
231
391
|
)
|
232
392
|
it 'deserializes the data of action_url' do
|
233
393
|
expect(instance._deserialize("String", instance.action_url)).to be_a_kind_of(String)
|
234
394
|
end
|
395
|
+
|
396
|
+
|
235
397
|
it 'deserializes the data of notification_url' do
|
236
398
|
expect(instance._deserialize("String", instance.notification_url)).to be_a_kind_of(String)
|
237
399
|
end
|
400
|
+
|
401
|
+
|
238
402
|
it 'deserializes the data of queue_id' do
|
239
403
|
expect(instance._deserialize("String", instance.queue_id)).to be_a_kind_of(String)
|
240
404
|
end
|
405
|
+
|
406
|
+
|
241
407
|
it 'deserializes the data of wait_url' do
|
242
408
|
expect(instance._deserialize("String", instance.wait_url)).to be_a_kind_of(String)
|
243
409
|
end
|
410
|
+
|
411
|
+
|
244
412
|
end
|
245
413
|
|
246
414
|
describe 'test method "to_s"' do
|
247
415
|
it 'returns the string representation of the object' do
|
248
416
|
instance = Freeclimb::Enqueue.new(
|
417
|
+
|
249
418
|
action_url: "TS",
|
250
419
|
|
420
|
+
|
421
|
+
|
422
|
+
|
251
423
|
notification_url: "TS",
|
252
424
|
|
425
|
+
|
426
|
+
|
427
|
+
|
253
428
|
queue_id: "TS",
|
254
429
|
|
430
|
+
|
431
|
+
|
432
|
+
|
255
433
|
wait_url: "TS",
|
256
434
|
|
435
|
+
|
436
|
+
|
257
437
|
)
|
258
438
|
expect(instance.to_s).to eq(instance.to_hash.to_s)
|
259
439
|
end
|
@@ -262,38 +442,77 @@ describe Freeclimb::Enqueue do
|
|
262
442
|
describe 'test method "to_hash"' do
|
263
443
|
it 'returns the object in the form of hash' do
|
264
444
|
instance = Freeclimb::Enqueue.new(
|
445
|
+
|
265
446
|
action_url: "TS",
|
266
447
|
|
448
|
+
|
449
|
+
|
450
|
+
|
267
451
|
notification_url: "TS",
|
268
452
|
|
453
|
+
|
454
|
+
|
455
|
+
|
269
456
|
queue_id: "TS",
|
270
457
|
|
458
|
+
|
459
|
+
|
460
|
+
|
271
461
|
wait_url: "TS",
|
272
462
|
|
463
|
+
|
464
|
+
|
273
465
|
)
|
274
466
|
expect(instance.to_hash).to be_a_kind_of(Hash)
|
275
467
|
end
|
276
468
|
it 'creates equal hash for two equal objects' do
|
277
|
-
|
469
|
+
|
470
|
+
|
471
|
+
|
472
|
+
|
278
473
|
instance_1 = Freeclimb::Enqueue.new(
|
474
|
+
|
279
475
|
action_url: "TS",
|
280
476
|
|
477
|
+
|
478
|
+
|
479
|
+
|
281
480
|
notification_url: "TS",
|
282
481
|
|
482
|
+
|
483
|
+
|
484
|
+
|
283
485
|
queue_id: "TS",
|
284
486
|
|
487
|
+
|
488
|
+
|
489
|
+
|
285
490
|
wait_url: "TS",
|
286
491
|
|
492
|
+
|
493
|
+
|
287
494
|
)
|
288
495
|
instance_2 = Freeclimb::Enqueue.new(
|
496
|
+
|
289
497
|
action_url: "TS",
|
290
498
|
|
499
|
+
|
500
|
+
|
501
|
+
|
291
502
|
notification_url: "TS",
|
292
503
|
|
504
|
+
|
505
|
+
|
506
|
+
|
293
507
|
queue_id: "TS",
|
294
508
|
|
509
|
+
|
510
|
+
|
511
|
+
|
295
512
|
wait_url: "TS",
|
296
513
|
|
514
|
+
|
515
|
+
|
297
516
|
)
|
298
517
|
expect(instance_1.to_hash).to eq(instance_2.to_hash)
|
299
518
|
end
|
@@ -301,15 +520,19 @@ describe Freeclimb::Enqueue do
|
|
301
520
|
|
302
521
|
describe 'test method "_to_hash"' do
|
303
522
|
instance = Freeclimb::Enqueue.new(
|
523
|
+
|
304
524
|
action_url: "TS",
|
305
525
|
|
306
526
|
|
527
|
+
|
307
528
|
notification_url: "TS",
|
308
529
|
|
309
530
|
|
531
|
+
|
310
532
|
queue_id: "TS",
|
311
533
|
|
312
534
|
|
535
|
+
|
313
536
|
wait_url: "TS",
|
314
537
|
|
315
538
|
)
|
@@ -13,6 +13,7 @@ OpenAPI Generator version: 7.9.0
|
|
13
13
|
require 'spec_helper'
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
|
+
include Freeclimb
|
16
17
|
|
17
18
|
# Unit tests for Freeclimb::FilterLogsRequest
|
18
19
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
@@ -28,30 +29,42 @@ describe Freeclimb::FilterLogsRequest do
|
|
28
29
|
|
29
30
|
describe 'test attribute "pql"' do
|
30
31
|
it 'should work' do
|
32
|
+
|
31
33
|
instance.pql = "TEST_STRING"
|
32
34
|
expect(instance.pql).to eq("TEST_STRING")
|
33
35
|
|
36
|
+
|
37
|
+
|
34
38
|
end
|
35
39
|
end
|
36
40
|
|
37
41
|
describe 'test method "initialize"' do
|
38
42
|
it 'properly initializes with values' do
|
39
43
|
expect { instance = Freeclimb::FilterLogsRequest.new(
|
44
|
+
|
40
45
|
pql: "TS",
|
41
46
|
|
47
|
+
|
48
|
+
|
42
49
|
)}.not_to raise_error()
|
43
50
|
end
|
44
51
|
it 'fails to initialize with input argument that is not a hash in Freeclimb::FilterLogsRequest' do
|
45
52
|
expect { instance = Freeclimb::FilterLogsRequest.new(
|
53
|
+
|
46
54
|
pql: "TS",
|
47
55
|
|
56
|
+
|
57
|
+
|
48
58
|
invalid_attribute: true
|
49
59
|
)}.to raise_error(ArgumentError)
|
50
60
|
end
|
51
61
|
it 'fails to initialize with invalid attribute' do
|
52
62
|
expect { instance = Freeclimb::FilterLogsRequest.new(
|
63
|
+
|
53
64
|
pql: "TS",
|
54
65
|
|
66
|
+
|
67
|
+
|
55
68
|
invalid_attribute: true
|
56
69
|
)}.to raise_error(ArgumentError)
|
57
70
|
end
|
@@ -60,8 +73,11 @@ describe Freeclimb::FilterLogsRequest do
|
|
60
73
|
describe 'test method "valid"' do
|
61
74
|
it 'checks if properties are valid' do
|
62
75
|
instance = Freeclimb::FilterLogsRequest.new(
|
76
|
+
|
63
77
|
pql: "TS",
|
64
78
|
|
79
|
+
|
80
|
+
|
65
81
|
)
|
66
82
|
expect(instance.valid?).to eq(true)
|
67
83
|
end
|
@@ -78,26 +94,38 @@ describe Freeclimb::FilterLogsRequest do
|
|
78
94
|
|
79
95
|
describe 'test method "eql?"' do
|
80
96
|
it 'checks if objects are equal' do
|
81
|
-
|
97
|
+
|
82
98
|
instance_1 = Freeclimb::FilterLogsRequest.new(
|
99
|
+
|
83
100
|
pql: "TS",
|
84
101
|
|
102
|
+
|
103
|
+
|
85
104
|
)
|
86
105
|
instance_2 = Freeclimb::FilterLogsRequest.new(
|
106
|
+
|
87
107
|
pql: "TS",
|
88
108
|
|
109
|
+
|
110
|
+
|
89
111
|
)
|
90
112
|
expect(instance_1.eql?(instance_2)).to eq(true)
|
91
113
|
end
|
92
114
|
|
93
115
|
it 'checks if objects are not equal' do
|
94
116
|
instance_1 = Freeclimb::FilterLogsRequest.new(
|
117
|
+
|
95
118
|
pql: "TS",
|
96
119
|
|
120
|
+
|
121
|
+
|
97
122
|
)
|
98
123
|
instance_2 = Freeclimb::FilterLogsRequest.new(
|
124
|
+
|
99
125
|
pql: "ST",
|
100
126
|
|
127
|
+
|
128
|
+
|
101
129
|
)
|
102
130
|
expect(instance_1.eql?(instance_2)).to eq(false)
|
103
131
|
end
|
@@ -106,8 +134,11 @@ describe Freeclimb::FilterLogsRequest do
|
|
106
134
|
describe 'test method "hash"' do
|
107
135
|
it 'calculates hash code' do
|
108
136
|
instance = Freeclimb::FilterLogsRequest.new(
|
137
|
+
|
109
138
|
pql: "TS",
|
110
139
|
|
140
|
+
|
141
|
+
|
111
142
|
)
|
112
143
|
expect(instance.hash).to be_a_kind_of(Integer)
|
113
144
|
end
|
@@ -116,12 +147,18 @@ describe Freeclimb::FilterLogsRequest do
|
|
116
147
|
describe 'test method "build_from_hash"' do
|
117
148
|
it 'builds equivalent model from hash code' do
|
118
149
|
instance_1 = Freeclimb::FilterLogsRequest.new(
|
150
|
+
|
119
151
|
pql: "TS",
|
120
152
|
|
153
|
+
|
154
|
+
|
121
155
|
)
|
122
156
|
instance_2 = Freeclimb::FilterLogsRequest.new(
|
157
|
+
|
123
158
|
pql: "TS",
|
124
159
|
|
160
|
+
|
161
|
+
|
125
162
|
)
|
126
163
|
|
127
164
|
expect(instance_2.build_from_hash(instance_1.hash)).to eq(instance_1.build_from_hash(instance_1.hash))
|
@@ -130,19 +167,27 @@ describe Freeclimb::FilterLogsRequest do
|
|
130
167
|
|
131
168
|
describe 'test method "_deserialize"' do
|
132
169
|
instance = Freeclimb::FilterLogsRequest.new(
|
170
|
+
|
133
171
|
pql: "TS",
|
134
172
|
|
173
|
+
|
174
|
+
|
135
175
|
)
|
136
176
|
it 'deserializes the data of pql' do
|
137
177
|
expect(instance._deserialize("String", instance.pql)).to be_a_kind_of(String)
|
138
178
|
end
|
179
|
+
|
180
|
+
|
139
181
|
end
|
140
182
|
|
141
183
|
describe 'test method "to_s"' do
|
142
184
|
it 'returns the string representation of the object' do
|
143
185
|
instance = Freeclimb::FilterLogsRequest.new(
|
186
|
+
|
144
187
|
pql: "TS",
|
145
188
|
|
189
|
+
|
190
|
+
|
146
191
|
)
|
147
192
|
expect(instance.to_s).to eq(instance.to_hash.to_s)
|
148
193
|
end
|
@@ -151,20 +196,29 @@ describe Freeclimb::FilterLogsRequest do
|
|
151
196
|
describe 'test method "to_hash"' do
|
152
197
|
it 'returns the object in the form of hash' do
|
153
198
|
instance = Freeclimb::FilterLogsRequest.new(
|
199
|
+
|
154
200
|
pql: "TS",
|
155
201
|
|
202
|
+
|
203
|
+
|
156
204
|
)
|
157
205
|
expect(instance.to_hash).to be_a_kind_of(Hash)
|
158
206
|
end
|
159
207
|
it 'creates equal hash for two equal objects' do
|
160
|
-
|
208
|
+
|
161
209
|
instance_1 = Freeclimb::FilterLogsRequest.new(
|
210
|
+
|
162
211
|
pql: "TS",
|
163
212
|
|
213
|
+
|
214
|
+
|
164
215
|
)
|
165
216
|
instance_2 = Freeclimb::FilterLogsRequest.new(
|
217
|
+
|
166
218
|
pql: "TS",
|
167
219
|
|
220
|
+
|
221
|
+
|
168
222
|
)
|
169
223
|
expect(instance_1.to_hash).to eq(instance_2.to_hash)
|
170
224
|
end
|
@@ -172,6 +226,7 @@ describe Freeclimb::FilterLogsRequest do
|
|
172
226
|
|
173
227
|
describe 'test method "_to_hash"' do
|
174
228
|
instance = Freeclimb::FilterLogsRequest.new(
|
229
|
+
|
175
230
|
pql: "TS",
|
176
231
|
|
177
232
|
)
|