1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
|
# -*- coding: utf-8 -*-
from nose.tools import assert_equal
from six import u
from tests.unit.twiml import TwilioTest
from twilio.twiml.voice_response import VoiceResponse, Dial, Enqueue, Gather
class TestResponse(TwilioTest):
def test_empty_response(self):
r = VoiceResponse()
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response />'
)
def test_response(self):
r = VoiceResponse()
r.hangup()
r.leave()
r.sms(
'twilio sms',
to='+11234567890',
from_='+10987654321'
)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Hangup /><Leave />'
'<Sms from="+10987654321" to="+11234567890">twilio sms</Sms></Response>'
)
def test_response_chain(self):
with VoiceResponse() as r:
r.hangup()
r.leave()
r.sms(
'twilio sms',
to='+11234567890',
from_='+10987654321'
)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Hangup /><Leave />'
'<Sms from="+10987654321" to="+11234567890">twilio sms</Sms></Response>'
)
def test_nested_verbs(self):
with VoiceResponse() as r:
with r.gather() as g:
g.say('Hello', voice='man')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Gather><Say voice="man">Hello</Say></Gather></Response>'
)
class TestSay(TwilioTest):
def test_empty_say(self):
""" should be a say with no text """
r = VoiceResponse()
r.say('')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Say /></Response>'
)
def test_say_hello_world(self):
""" should say hello world """
r = VoiceResponse()
r.say('Hello World')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Say>Hello World</Say></Response>'
)
def test_say_french(self):
""" should say hello monkey """
r = VoiceResponse()
r.say(u('n\xe9cessaire et d\'autres'))
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Say>nécessaire et d\'autres</Say></Response>'
)
def test_say_loop(self):
""" should say hello monkey and loop 3 times """
r = VoiceResponse()
r.say('Hello Monkey', loop=3)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Say loop="3">Hello Monkey</Say></Response>'
)
def test_say_loop_gb(self):
""" should say have a woman say hello monkey and loop 3 times """
r = VoiceResponse()
r.say('Hello Monkey', language='en-gb')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Say language="en-gb">Hello Monkey</Say></Response>'
)
def test_say_loop_woman(self):
""" should say have a woman say hello monkey and loop 3 times """
r = VoiceResponse()
r.say('Hello Monkey', loop=3, voice='woman')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Say loop="3" voice="woman">Hello Monkey</Say></Response>'
)
def test_say_all(self):
""" convenience method: should say have a woman say hello monkey and loop 3 times and be in french """
r = VoiceResponse()
r.say('Hello Monkey', loop=3, voice='man', language='fr')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Say language="fr" loop="3" voice="man">'
'Hello Monkey</Say></Response>'
)
class TestPlay(TwilioTest):
def test_empty_play(self):
""" should play hello monkey """
r = VoiceResponse()
r.play()
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Play /></Response>'
)
def test_play_hello(self):
""" should play hello monkey """
r = VoiceResponse()
r.play(url='http://hellomonkey.mp3')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Play>http://hellomonkey.mp3</Play></Response>'
)
def test_play_hello_loop(self):
""" should play hello monkey loop """
r = VoiceResponse()
r.play(url='http://hellomonkey.mp3', loop=3)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Play loop="3">http://hellomonkey.mp3</Play></Response>'
)
def test_play_digits(self):
""" should play digits """
r = VoiceResponse()
r.play(digits='w123')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Play digits="w123" /></Response>'
)
class TestRecord(TwilioTest):
def test_record_empty(self):
""" should record """
r = VoiceResponse()
r.record()
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Record /></Response>'
)
def test_record_action_method(self):
""" should record with an action and a get method """
r = VoiceResponse()
r.record(action='example.com', method='GET')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Record action="example.com" method="GET" /></Response>'
)
def test_record_max_length_finish_timeout(self):
""" should record with an maxLength, finishOnKey, and timeout """
r = VoiceResponse()
r.record(timeout=4, finish_on_key='#', max_length=30)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Record finishOnKey="#" maxLength="30" timeout="4" '
'/></Response>'
)
def test_record_transcribe(self):
""" should record with a transcribe and transcribeCallback """
r = VoiceResponse()
r.record(transcribe_callback='example.com')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Record transcribeCallback="example.com" /></Response>'
)
class TestRedirect(TwilioTest):
def test_redirect_empty(self):
r = VoiceResponse()
r.redirect('')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Redirect /></Response>'
)
def test_redirect_method(self):
r = VoiceResponse()
r.redirect('example.com', method='POST')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Redirect method="POST">example.com</Redirect></Response>'
)
def test_redirect_method_params(self):
r = VoiceResponse()
r.redirect('example.com?id=34&action=hey', method='POST')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response>'
'<Redirect method="POST">example.com?id=34&action=hey</Redirect></Response>'
)
class TestHangup(TwilioTest):
def test_hangup(self):
""" convenience: should Hangup to a url via POST """
r = VoiceResponse()
r.hangup()
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Hangup /></Response>'
)
class TestLeave(TwilioTest):
def test_leave(self):
""" convenience: should Hangup to a url via POST """
r = VoiceResponse()
r.leave()
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Leave /></Response>'
)
class TestReject(TwilioTest):
def test_reject(self):
""" should be a Reject with default reason """
r = VoiceResponse()
r.reject()
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Reject /></Response>'
)
class TestSms(TwilioTest):
def test_empty(self):
""" Test empty sms verb """
r = VoiceResponse()
r.sms('')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Sms /></Response>'
)
def test_body(self):
""" Test hello world """
r = VoiceResponse()
r.sms('Hello, World')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Sms>Hello, World</Sms></Response>'
)
def test_to_from_action(self):
""" Test the to, from, and status callback """
r = VoiceResponse()
r.sms('Hello, World', to=1231231234, from_=3453453456, status_callback='example.com?id=34&action=hey')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response>'
'<Sms from="3453453456" statusCallback="example.com?id=34&action=hey" to="1231231234">'
'Hello, World</Sms></Response>'
)
def test_action_method(self):
""" Test the action and method parameters on Sms """
r = VoiceResponse()
r.sms('Hello', method='POST', action='example.com?id=34&action=hey')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response>'
'<Sms action="example.com?id=34&action=hey" method="POST">Hello</Sms></Response>'
)
class TestConference(TwilioTest):
def test_conference(self):
d = Dial()
d.conference(
'TestConferenceAttributes',
beep=False,
wait_url='',
start_conference_on_enter=True,
end_conference_on_exit=True
)
r = VoiceResponse()
r.append(d)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial>'
'<Conference beep="false" endConferenceOnExit="true" startConferenceOnEnter="true" waitUrl="">'
'TestConferenceAttributes</Conference></Dial></Response>'
)
def test_muted_conference(self):
d = Dial()
d.conference(
'TestConferenceMutedAttribute',
beep=False,
muted=True,
wait_url='',
start_conference_on_enter=True,
end_conference_on_exit=True
)
r = VoiceResponse()
r.append(d)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial>'
'<Conference beep="false" endConferenceOnExit="true" muted="true" startConferenceOnEnter="true" waitUrl="">'
'TestConferenceMutedAttribute</Conference></Dial></Response>'
)
class TestQueue(TwilioTest):
def test_queue(self):
d = Dial()
d.queue('TestQueueAttribute', url='', method='GET')
r = VoiceResponse()
r.append(d)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial>'
'<Queue method="GET" url="">TestQueueAttribute</Queue></Dial></Response>'
)
class TestEcho(TwilioTest):
def test_echo(self):
r = VoiceResponse()
r.echo()
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Echo /></Response>'
)
class TestEnqueue(TwilioTest):
def test_enqueue(self):
r = VoiceResponse()
r.enqueue(
'TestEnqueueAttribute',
action='act',
method='GET',
wait_url='wait',
wait_url_method='POST'
)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response>'
'<Enqueue action="act" method="GET" waitUrl="wait" waitUrlMethod="POST">TestEnqueueAttribute</Enqueue>'
'</Response>'
)
def test_task_string(self):
e = Enqueue(None, workflowSid='123123123')
e.task('{"account_sid": "AC123123123"}')
r = VoiceResponse()
r.append(e)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Enqueue workflowSid="123123123">'
'<Task>{"account_sid": "AC123123123"}</Task></Enqueue></Response>'
)
def test_task_dict(self):
e = Enqueue(None, workflowSid='123123123')
e.task({"account_sid": "AC123123123"})
r = VoiceResponse()
r.append(e)
assert_equal(
'<?xml version="1.0" encoding="UTF-8"?><Response><Enqueue workflowSid="123123123">'
'<Task>{"account_sid": "AC123123123"}</Task></Enqueue></Response>',
self.strip(r)
)
class TestDial(TwilioTest):
def test_dial(self):
""" should redirect the call """
r = VoiceResponse()
r.dial("1231231234")
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial>1231231234</Dial></Response>'
)
def test_sim(self):
d = Dial()
d.sim('123123123')
r = VoiceResponse()
r.append(d)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial><Sim>123123123</Sim></Dial></Response>'
)
def test_sip(self):
""" should redirect the call """
d = Dial()
d.sip('foo@example.com')
r = VoiceResponse()
r.append(d)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial><Sip>foo@example.com</Sip></Dial></Response>'
)
def test_sip_username_password(self):
""" should redirect the call """
d = Dial()
d.sip('foo@example.com', username='foo', password='bar')
r = VoiceResponse()
r.append(d)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial>'
'<Sip password="bar" username="foo">foo@example.com</Sip></Dial></Response>'
)
def test_add_number(self):
""" add a number to a dial """
d = Dial()
d.number('1231231234')
r = VoiceResponse()
r.append(d)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial><Number>1231231234</Number></Dial></Response>'
)
def test_add_number_status_callback_event(self):
""" add a number to a dial with status callback events"""
d = Dial()
d.number('1231231234', status_callback='http://example.com', status_callback_event='initiated completed')
r = VoiceResponse()
r.append(d)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial>'
'<Number statusCallback="http://example.com" statusCallbackEvent="initiated completed">1231231234</Number>'
'</Dial></Response>'
)
def test_add_conference(self):
""" add a conference to a dial """
d = Dial()
d.conference('My Room')
r = VoiceResponse()
r.append(d)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial><Conference>My Room</Conference></Dial></Response>'
)
def test_add_queue(self):
""" add a queue to a dial """
d = Dial()
d.queue('The Cute Queue')
r = VoiceResponse()
r.append(d)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial><Queue>The Cute Queue</Queue></Dial></Response>'
)
def test_add_empty_client(self):
""" add an empty client to a dial """
d = Dial()
d.client('')
r = VoiceResponse()
r.append(d)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial><Client /></Dial></Response>'
)
def test_add_client(self):
""" add a client to a dial """
d = Dial()
d.client('alice')
r = VoiceResponse()
r.append(d)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Dial><Client>alice</Client></Dial></Response>'
)
class TestGather(TwilioTest):
def test_empty(self):
""" a gather with nothing inside """
r = VoiceResponse()
r.gather()
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Gather /></Response>'
)
def test_gather_say(self):
g = Gather()
g.say('Hello')
r = VoiceResponse()
r.append(g)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Gather><Say>Hello</Say></Gather></Response>'
)
def test_nested_say_play_pause(self):
""" a gather with a say, play, and pause """
g = Gather()
g.say('Hey')
g.play(url='hey.mp3')
g.pause()
r = VoiceResponse()
r.append(g)
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><Gather><Say>Hey</Say><Play>hey.mp3</Play>'
'<Pause /></Gather></Response>'
)
class TestText(TwilioTest):
def test_text(self):
r = VoiceResponse()
r.append('No tags!')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response>No tags!</Response>'
)
def text_mixed(self):
r = VoiceResponse()
r.append('before')
r.say('Content')
r.append('after')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response>before<Say>Content</Say>after</Response>'
)
def test_add_child(self):
with VoiceResponse() as r:
with r.add_child('alexa', omnipresent='true') as alexa:
alexa.add_child('purchase', 'Kindle')
assert_equal(
self.strip(r),
'<?xml version="1.0" encoding="UTF-8"?><Response><alexa omnipresent="true">'
'<purchase>Kindle</purchase></alexa></Response>'
)
|