telephony 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/README.md +105 -0
- data/Rakefile +39 -0
- data/app/assets/fonts/telephony/zest-telephony.eot +0 -0
- data/app/assets/fonts/telephony/zest-telephony.svg +73 -0
- data/app/assets/fonts/telephony/zest-telephony.ttf +0 -0
- data/app/assets/fonts/telephony/zest-telephony.woff +0 -0
- data/app/assets/images/telephony/backspace.png +0 -0
- data/app/assets/images/telephony/icon-spinner.gif +0 -0
- data/app/assets/javascripts/telephony/application.js +12 -0
- data/app/assets/javascripts/telephony/collections/agents.js +4 -0
- data/app/assets/javascripts/telephony/config.js.erb +11 -0
- data/app/assets/javascripts/telephony/models/agent.js +103 -0
- data/app/assets/javascripts/telephony/models/conversation.js +226 -0
- data/app/assets/javascripts/telephony/models/device.js +30 -0
- data/app/assets/javascripts/telephony/models/transfer.js +65 -0
- data/app/assets/javascripts/telephony/namespace.js +6 -0
- data/app/assets/javascripts/telephony/push.js +80 -0
- data/app/assets/javascripts/telephony/vendor/backbone.js +1159 -0
- data/app/assets/javascripts/telephony/vendor/chosen.jquery.js +1018 -0
- data/app/assets/javascripts/telephony/vendor/jquery.form.js +1117 -0
- data/app/assets/javascripts/telephony/vendor/pusher.js +1304 -0
- data/app/assets/javascripts/telephony/vendor/test_dependencies.js +18 -0
- data/app/assets/javascripts/telephony/vendor/underscore.js +839 -0
- data/app/assets/javascripts/telephony/views/agents_view.js +69 -0
- data/app/assets/javascripts/telephony/views/application_view.js +78 -0
- data/app/assets/javascripts/telephony/views/call_queue_view.js +21 -0
- data/app/assets/javascripts/telephony/views/conversation_buttons_view.js +15 -0
- data/app/assets/javascripts/telephony/views/conversation_view.js +322 -0
- data/app/assets/javascripts/telephony/views/status_view.js +36 -0
- data/app/assets/javascripts/telephony/views/transfer_view.js +87 -0
- data/app/assets/javascripts/telephony/views/twilio_client_view.js +117 -0
- data/app/assets/javascripts/telephony/views/widget_view.js +55 -0
- data/app/assets/javascripts/telephony/widget.js +5 -0
- data/app/assets/javascripts/templates/telephony/agents_view.jst.ejs +8 -0
- data/app/assets/javascripts/templates/telephony/call_queue_view.jst.ejs +2 -0
- data/app/assets/javascripts/templates/telephony/conversation_buttons_view.jst.ejs +23 -0
- data/app/assets/javascripts/templates/telephony/conversation_view.jst.ejs +10 -0
- data/app/assets/javascripts/templates/telephony/status_view.jst.ejs +4 -0
- data/app/assets/javascripts/templates/telephony/transfer_view.jst.ejs +38 -0
- data/app/assets/javascripts/templates/telephony/twilio_client_view.jst.ejs +10 -0
- data/app/assets/stylesheets/telephony/font.css +43 -0
- data/app/assets/stylesheets/telephony/reset.css.scss +10 -0
- data/app/assets/stylesheets/telephony/widget.css.scss +512 -0
- data/app/controllers/telephony/agents_controller.rb +46 -0
- data/app/controllers/telephony/application_controller.rb +4 -0
- data/app/controllers/telephony/call_centers_controller.rb +9 -0
- data/app/controllers/telephony/conversations_controller.rb +74 -0
- data/app/controllers/telephony/inbound/conversation_queues_controller.rb +21 -0
- data/app/controllers/telephony/playable_listeners_controller.rb +43 -0
- data/app/controllers/telephony/providers/twilio/application_controller.rb +26 -0
- data/app/controllers/telephony/providers/twilio/calls_controller.rb +130 -0
- data/app/controllers/telephony/providers/twilio/inbound_calls_controller.rb +54 -0
- data/app/controllers/telephony/providers/twilio/musics_controller.rb +12 -0
- data/app/controllers/telephony/providers/twilio/voicemails_controller.rb +29 -0
- data/app/controllers/telephony/signals/agents/presences_controller.rb +64 -0
- data/app/controllers/telephony/transfers_controller.rb +18 -0
- data/app/controllers/telephony/twilio_client_controller.rb +37 -0
- data/app/controllers/telephony/voicemails_controller.rb +13 -0
- data/app/controllers/telephony/widget_controller.rb +10 -0
- data/app/helpers/telephony/application_helper.rb +4 -0
- data/app/helpers/telephony/calls_helper.rb +13 -0
- data/app/models/telephony/agent.rb +186 -0
- data/app/models/telephony/agent_state_machine.rb +54 -0
- data/app/models/telephony/base.rb +7 -0
- data/app/models/telephony/blacklisted_number.rb +5 -0
- data/app/models/telephony/call.rb +94 -0
- data/app/models/telephony/call_center.rb +26 -0
- data/app/models/telephony/call_state_machine.rb +98 -0
- data/app/models/telephony/conversation.rb +273 -0
- data/app/models/telephony/conversation_state_machine.rb +109 -0
- data/app/models/telephony/conversations_presenter.rb +83 -0
- data/app/models/telephony/events.rb +6 -0
- data/app/models/telephony/events/answer.rb +6 -0
- data/app/models/telephony/events/base.rb +118 -0
- data/app/models/telephony/events/busy.rb +6 -0
- data/app/models/telephony/events/call_answered.rb +22 -0
- data/app/models/telephony/events/call_fail.rb +6 -0
- data/app/models/telephony/events/complete_hold.rb +28 -0
- data/app/models/telephony/events/complete_one_step_transfer.rb +17 -0
- data/app/models/telephony/events/complete_resume.rb +28 -0
- data/app/models/telephony/events/complete_two_step_transfer.rb +6 -0
- data/app/models/telephony/events/conference.rb +6 -0
- data/app/models/telephony/events/connect.rb +22 -0
- data/app/models/telephony/events/customer_left_two_step_transfer.rb +6 -0
- data/app/models/telephony/events/dial_agent.rb +6 -0
- data/app/models/telephony/events/ended.rb +19 -0
- data/app/models/telephony/events/enqueue.rb +6 -0
- data/app/models/telephony/events/fail_one_step_transfer.rb +9 -0
- data/app/models/telephony/events/fail_two_step_transfer.rb +6 -0
- data/app/models/telephony/events/initialize_widget.rb +15 -0
- data/app/models/telephony/events/initiate_hold.rb +6 -0
- data/app/models/telephony/events/initiate_one_step_transfer.rb +6 -0
- data/app/models/telephony/events/initiate_resume.rb +6 -0
- data/app/models/telephony/events/initiate_two_step_transfer.rb +6 -0
- data/app/models/telephony/events/leave_two_step_transfer.rb +17 -0
- data/app/models/telephony/events/leave_voicemail.rb +22 -0
- data/app/models/telephony/events/no_answer.rb +6 -0
- data/app/models/telephony/events/play_closed_greeting.rb +6 -0
- data/app/models/telephony/events/play_message.rb +6 -0
- data/app/models/telephony/events/reject.rb +6 -0
- data/app/models/telephony/events/rona.rb +6 -0
- data/app/models/telephony/events/start.rb +17 -0
- data/app/models/telephony/events/straight_to_voicemail.rb +6 -0
- data/app/models/telephony/events/terminate.rb +6 -0
- data/app/models/telephony/events/transfer.rb +35 -0
- data/app/models/telephony/inbound_conversation_queue.rb +101 -0
- data/app/models/telephony/playable.rb +7 -0
- data/app/models/telephony/playable_listener.rb +42 -0
- data/app/models/telephony/pusher_event_publisher.rb +26 -0
- data/app/models/telephony/recording.rb +4 -0
- data/app/models/telephony/voicemail.rb +36 -0
- data/app/observers/telephony/agent_observer.rb +8 -0
- data/app/observers/telephony/call_observer.rb +15 -0
- data/app/observers/telephony/conversation_observer.rb +9 -0
- data/app/observers/telephony/event_observer.rb +9 -0
- data/app/views/layouts/telephony/application.html.erb +14 -0
- data/app/views/telephony/providers/twilio/calls/child_detached.builder +5 -0
- data/app/views/telephony/providers/twilio/calls/complete_hold.builder +6 -0
- data/app/views/telephony/providers/twilio/calls/connect.builder +13 -0
- data/app/views/telephony/providers/twilio/calls/dial.builder +14 -0
- data/app/views/telephony/providers/twilio/calls/done.builder +5 -0
- data/app/views/telephony/providers/twilio/calls/join_conference.builder +7 -0
- data/app/views/telephony/providers/twilio/calls/whisper_tone.builder +3 -0
- data/app/views/telephony/providers/twilio/inbound_calls/closed_hours.builder +7 -0
- data/app/views/telephony/providers/twilio/inbound_calls/create.builder +8 -0
- data/app/views/telephony/providers/twilio/inbound_calls/enqueue.builder +8 -0
- data/app/views/telephony/providers/twilio/inbound_calls/reject.builder +5 -0
- data/app/views/telephony/providers/twilio/inbound_calls/wait_music.builder +5 -0
- data/app/views/telephony/providers/twilio/musics/hold.builder +5 -0
- data/app/views/telephony/providers/twilio/voicemails/new.builder +6 -0
- data/app/views/telephony/twilio_client/index.html.erb +74 -0
- data/app/views/telephony/widget/index.erb +3 -0
- data/config/cucumber.yml +8 -0
- data/config/database.yml +57 -0
- data/config/environment.rb +67 -0
- data/config/initializers/pusher.rb +21 -0
- data/config/initializers/telephony.rb +44 -0
- data/config/routes.rb +94 -0
- data/config/wopr.yml.example +38 -0
- data/db/migrate/20130806213053_bootstrap_db.rb +105 -0
- data/db/migrate/20131009204026_create_telephony_blacklisted_numbers.rb +11 -0
- data/lib/agent_generator.rb +24 -0
- data/lib/tasks/cucumber.rake +65 -0
- data/lib/tasks/jasmine.rake +8 -0
- data/lib/tasks/telephony_tasks.rake +4 -0
- data/lib/telephony.rb +34 -0
- data/lib/telephony/concerns/controllers/twilio_request_verifier.rb +39 -0
- data/lib/telephony/conversation_data.rb +67 -0
- data/lib/telephony/engine.rb +19 -0
- data/lib/telephony/error.rb +8 -0
- data/lib/telephony/error/agent_on_a_call.rb +2 -0
- data/lib/telephony/error/base.rb +3 -0
- data/lib/telephony/error/connection.rb +2 -0
- data/lib/telephony/error/not_in_progress.rb +2 -0
- data/lib/telephony/error/queue_empty.rb +2 -0
- data/lib/telephony/helper.rb +11 -0
- data/lib/telephony/jobs/agent_offline.rb +28 -0
- data/lib/telephony/jobs/pusher_event.rb +21 -0
- data/lib/telephony/providers/twilio_provider.rb +162 -0
- data/lib/telephony/version.rb +3 -0
- data/spec/controllers/telephony/agents_controller_spec.rb +117 -0
- data/spec/controllers/telephony/call_centers_controller_spec.rb +25 -0
- data/spec/controllers/telephony/conversations_controller_spec.rb +229 -0
- data/spec/controllers/telephony/playable_listeners_controller_spec.rb +138 -0
- data/spec/controllers/telephony/providers/twilio/calls_controller_spec.rb +33 -0
- data/spec/controllers/telephony/providers/twilio/musics_controller_spec.rb +20 -0
- data/spec/controllers/telephony/signals/agents/presences_controller_spec.rb +154 -0
- data/spec/controllers/telephony/twilio_client_controller_spec.rb +58 -0
- data/spec/controllers/telephony/widget_controller_spec.rb +25 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +6 -0
- data/spec/dummy/app/assets/javascripts/lib/event_logger.js +82 -0
- data/spec/dummy/app/assets/javascripts/vendor/backbone.js +1159 -0
- data/spec/dummy/app/assets/javascripts/vendor/chosen.jquery.js +1018 -0
- data/spec/dummy/app/assets/javascripts/vendor/jquery.form.js +1117 -0
- data/spec/dummy/app/assets/javascripts/vendor/underscore.js +839 -0
- data/spec/dummy/app/assets/stylesheets/application.css +23 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/controllers/widget_host_controller.rb +2 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +12 -0
- data/spec/dummy/app/views/widget_host/index.html.erb +53 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +61 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/call_centers.yml +35 -0
- data/spec/dummy/config/call_centers.yml.example +35 -0
- data/spec/dummy/config/database.yml +56 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/cucumber.rb +39 -0
- data/spec/dummy/config/environments/development.rb +39 -0
- data/spec/dummy/config/environments/production.rb +67 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/pusher.yml +14 -0
- data/spec/dummy/config/pusher.yml.example +14 -0
- data/spec/dummy/config/routes.rb +5 -0
- data/spec/dummy/config/sms_whitelist.json.example +4 -0
- data/spec/dummy/config/twilio.yml +57 -0
- data/spec/dummy/config/twilio.yml.example +57 -0
- data/spec/dummy/db/schema.rb +122 -0
- data/spec/dummy/db/seeds.rb +6 -0
- data/spec/dummy/log/production.log +156 -0
- data/spec/dummy/log/test.log +13812 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/assets/application-628309db7ce8c0abdd91f8f796881599.js +32 -0
- data/spec/dummy/public/assets/application-628309db7ce8c0abdd91f8f796881599.js.gz +0 -0
- data/spec/dummy/public/assets/application-6c551430f3bdd32ba57c9c41e5f91846.css +24 -0
- data/spec/dummy/public/assets/application-6c551430f3bdd32ba57c9c41e5f91846.css.gz +0 -0
- data/spec/dummy/public/assets/telephony/backspace-9f5b195e049ed90eb20ecdda6e264b0a.png +0 -0
- data/spec/dummy/public/assets/telephony/icon-spinner-ddbae473a70c5425810aeee31d4a8ad7.gif +0 -0
- data/spec/dummy/public/assets/telephony/zest-telephony-0e6b13673634da80de9ae09bcca253e3.eot +0 -0
- data/spec/dummy/public/assets/telephony/zest-telephony-37f394757ccb11b978f16d9fd32cb3b5.ttf +0 -0
- data/spec/dummy/public/assets/telephony/zest-telephony-e7efdbc60c0a1c8404951bc79c7fb3a8.woff +0 -0
- data/spec/dummy/public/assets/telephony/zest-telephony-f34287df626936908408f53a33db9e83.svg +73 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/tmp/cache/assets/C98/020/sprockets%2Fa83f8254d688334ff179984e423f502f +0 -0
- data/spec/dummy/tmp/cache/assets/CA4/550/sprockets%2F407f9191fe573f2435c55c017cb0d022 +0 -0
- data/spec/dummy/tmp/cache/assets/CAA/6A0/sprockets%2F3265550e2d2c7f5a864ca85d255504c2 +0 -0
- data/spec/dummy/tmp/cache/assets/CB0/F60/sprockets%2F462f9efed31e6710732376ae06c27208 +0 -0
- data/spec/dummy/tmp/cache/assets/CB6/E20/sprockets%2Fa7092cd9f16917099d754f1380af13e1 +0 -0
- data/spec/dummy/tmp/cache/assets/CC7/9F0/sprockets%2F0517100815cd45c43fec1d8510fcb630 +0 -0
- data/spec/dummy/tmp/cache/assets/CCA/BF0/sprockets%2F16ea15e0b5d367c34b812612a4207e3e +0 -0
- data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/CF1/960/sprockets%2F36ef26985821ec702c74dae4af789903 +0 -0
- data/spec/dummy/tmp/cache/assets/D07/F30/sprockets%2Fd12862f20df0c9ef7aa2b4216d247079 +0 -0
- data/spec/dummy/tmp/cache/assets/D09/BF0/sprockets%2F5c8595efaa8cc5235a09801c60e25a16 +0 -0
- data/spec/dummy/tmp/cache/assets/D0D/250/sprockets%2F5e759d66e374910dae5a51b221e6e3a4 +0 -0
- data/spec/dummy/tmp/cache/assets/D0D/E30/sprockets%2Fa282879e0788ba133f5bdc211cf134e8 +0 -0
- data/spec/dummy/tmp/cache/assets/D11/8E0/sprockets%2F2a193a8af29963f1113bef05788e02ff +0 -0
- data/spec/dummy/tmp/cache/assets/D14/270/sprockets%2F7f95a752910ed33d728532f8fabd340d +0 -0
- data/spec/dummy/tmp/cache/assets/D17/BE0/sprockets%2F58749d7aea4ca766c2520801f0f96b9b +0 -0
- data/spec/dummy/tmp/cache/assets/D18/270/sprockets%2Fbb2d88813b1795a97e9a7c14100eef77 +0 -0
- data/spec/dummy/tmp/cache/assets/D22/310/sprockets%2Fbae9148ce1229214dfbb0c425b0054d0 +0 -0
- data/spec/dummy/tmp/cache/assets/D30/EB0/sprockets%2F2c668b88beb4c9805d91ed4587f549e7 +0 -0
- data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/D3C/690/sprockets%2F681ba175fdd2da8d590b7e624b6135a6 +0 -0
- data/spec/dummy/tmp/cache/assets/D44/BC0/sprockets%2F7214f66dd91fdd51f00c3882293f5eea +0 -0
- data/spec/dummy/tmp/cache/assets/D46/FA0/sprockets%2F4f9543cd9e68ba3141fd488afb13681b +0 -0
- data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy/tmp/cache/assets/D51/9A0/sprockets%2Fb6e4cbcf30f6f611671695f79ea846d5 +0 -0
- data/spec/dummy/tmp/cache/assets/D55/920/sprockets%2F0a02242aa4c4febcc796419aba103c69 +0 -0
- data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/D5F/6F0/sprockets%2F155e7bc44f326371cce0ca8bc5b2414e +0 -0
- data/spec/dummy/tmp/cache/assets/D6B/250/sprockets%2Fe4eecce7a3371b11038c92f07cb28e67 +0 -0
- data/spec/dummy/tmp/cache/assets/D6B/E70/sprockets%2F103a456ae3692e3cca20b7696fdee8f0 +0 -0
- data/spec/dummy/tmp/cache/assets/D7F/AD0/sprockets%2Fb1c02d12303b1fe2f981771cbb0c4cbd +0 -0
- data/spec/dummy/tmp/cache/assets/D81/D00/sprockets%2F0c68b6d9dce98681a2a710d9fc3f7e39 +0 -0
- data/spec/dummy/tmp/cache/assets/D94/4D0/sprockets%2F4608a5bdf27ddf11bcaed1375911e9a2 +0 -0
- data/spec/dummy/tmp/cache/assets/D9A/580/sprockets%2F433005b19aaf7ed5cba9c7f8cd30b775 +0 -0
- data/spec/dummy/tmp/cache/assets/DA4/270/sprockets%2F860ab3bd30204e02c0a5d82bd4bbabe1 +0 -0
- data/spec/dummy/tmp/cache/assets/DA4/480/sprockets%2F53e39285bb57a2ddb6ff856b2eb491da +0 -0
- data/spec/dummy/tmp/cache/assets/DA6/3C0/sprockets%2F587c7e35f47442eadaa530acc5e9f5e6 +0 -0
- data/spec/dummy/tmp/cache/assets/DAB/DA0/sprockets%2Fb8fb5e8518ed3d38a7f6a8f18a9208aa +0 -0
- data/spec/dummy/tmp/cache/assets/DB2/700/sprockets%2Ffa85cb79b94fce1b8344d983ea863d2e +0 -0
- data/spec/dummy/tmp/cache/assets/DCC/4F0/sprockets%2Fbc0f3c61e16afb5a285ba8b39846ed8b +0 -0
- data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/DDC/BE0/sprockets%2F2c0a4d4675a61b014aedbbabb3f071fc +0 -0
- data/spec/dummy/tmp/cache/assets/E04/640/sprockets%2F3c5ddf2bbefd9d70f1b506b519cf856e +0 -0
- data/spec/dummy/tmp/cache/assets/E04/7F0/sprockets%2F35f1b2ff729a5ec21f6dc5f7d6faa67b +0 -0
- data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/E07/230/sprockets%2Febd4f2dd708879d593aff008ccb75acc +0 -0
- data/spec/dummy/tmp/cache/assets/E17/9D0/sprockets%2F8db2b79f6c4eabe7a9ebe7a7898ec066 +0 -0
- data/spec/dummy/tmp/cache/assets/E31/F10/sprockets%2Fcebacf56667da1cc2961b59fd922eafb +0 -0
- data/spec/factories/agent.rb +26 -0
- data/spec/factories/calls.rb +106 -0
- data/spec/factories/conversations.rb +171 -0
- data/spec/factories/events.rb +250 -0
- data/spec/factories/playable_listeners.rb +6 -0
- data/spec/factories/recordings.rb +6 -0
- data/spec/factories/voicemails.rb +8 -0
- data/spec/fixtures/vcr_cassettes/Authenticating_an_online_user.yml +90 -0
- data/spec/fixtures/vcr_cassettes/Creating_a_conversation/creates_a_new_call.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Creating_a_conversation/creates_a_new_conversation.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Creating_a_conversation/returns_the_conversation_as_JSON.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Pusher_channel_as_JSON.yml +90 -0
- data/spec/fixtures/vcr_cassettes/Pusher_to_publish_the_event.yml +32 -0
- data/spec/fixtures/vcr_cassettes/Reloading_the_widget_during_a_call/_create/during_a_call/after_a_failed_transfer/pushes_the_event_for_the_active_call.yml +1110 -0
- data/spec/fixtures/vcr_cassettes/Telephony_ConversationsController/_create/by_default/creates_a_new_call.yml +45 -0
- data/spec/fixtures/vcr_cassettes/Telephony_ConversationsController/_create/by_default/creates_a_new_conversation.yml +43 -0
- data/spec/fixtures/vcr_cassettes/Telephony_ConversationsController/_create/by_default/returns_the_conversation_as_JSON.yml +44 -0
- data/spec/fixtures/vcr_cassettes/Telephony_Providers_TwilioProvider/_call/allows_the_phone_to_ring_for_60_seconds.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Telephony_Providers_TwilioProvider/_call/includes_a_status_change_callback_url.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Telephony_Providers_TwilioProvider/_call/places_a_call.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Telephony_Providers_TwilioProvider/_dial_into_conference/allows_the_phone_to_ring_for_15_seconds.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Telephony_Providers_TwilioProvider/_dial_into_conference/places_a_call_to_redirect_the_participant_to_a_conference.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Telephony_Providers_TwilioProvider/_hangup/by_default/hangs_up_the_call.yml +42 -0
- data/spec/fixtures/vcr_cassettes/buying_number_for_an_area_code.yml +42 -0
- data/spec/fixtures/vcr_cassettes/returns_success.yml +90 -0
- data/spec/javascripts/helpers/jasmine-jquery.js +546 -0
- data/spec/javascripts/helpers/mock-ajax.js +207 -0
- data/spec/javascripts/support/jasmine.yml +80 -0
- data/spec/javascripts/telephony/models/agent_spec.js +40 -0
- data/spec/javascripts/telephony/models/conversation_spec.js +515 -0
- data/spec/javascripts/telephony/models/device_spec.js +80 -0
- data/spec/javascripts/telephony/models/transfer_spec.js +22 -0
- data/spec/javascripts/telephony/push_spec.js +427 -0
- data/spec/javascripts/telephony/views/agents_view_spec.js +101 -0
- data/spec/javascripts/telephony/views/application_view_spec.js +74 -0
- data/spec/javascripts/telephony/views/conversation_view_spec.js +626 -0
- data/spec/javascripts/telephony/views/status_view_spec.js +30 -0
- data/spec/javascripts/telephony/views/transfer_view_spec.js +187 -0
- data/spec/javascripts/telephony/views/twilio_client_view_spec.js +77 -0
- data/spec/javascripts/telephony/views/widget_view_spec.js +20 -0
- data/spec/lib/telephony/concerns/controllers/twilio_request_verifier_spec.rb +77 -0
- data/spec/lib/telephony/conversation_data_spec.rb +342 -0
- data/spec/lib/telephony/helper_spec.rb +24 -0
- data/spec/lib/telephony/jobs/agent_offline_spec.rb +37 -0
- data/spec/lib/telephony/jobs/pusher_event_spec.rb +39 -0
- data/spec/lib/telephony/providers/twilio_provider_spec.rb +439 -0
- data/spec/lib/telephony_spec.rb +104 -0
- data/spec/models/telephony/agent_spec.rb +479 -0
- data/spec/models/telephony/agent_state_machine_spec.rb +131 -0
- data/spec/models/telephony/call_center_spec.rb +32 -0
- data/spec/models/telephony/call_spec.rb +597 -0
- data/spec/models/telephony/call_state_machine_spec.rb +472 -0
- data/spec/models/telephony/conversation_spec.rb +751 -0
- data/spec/models/telephony/conversation_state_machine_spec.rb +387 -0
- data/spec/models/telephony/conversations_presenter_spec.rb +40 -0
- data/spec/models/telephony/event_spec.rb +716 -0
- data/spec/models/telephony/inbound_conversation_queue_spec.rb +243 -0
- data/spec/models/telephony/playable_listener_spec.rb +43 -0
- data/spec/models/telephony/pusher_event_publisher_spec.rb +36 -0
- data/spec/models/telephony/recording_spec.rb +6 -0
- data/spec/models/telephony/voicemail_spec.rb +96 -0
- data/spec/observers/telephony/agent_observer_spec.rb +21 -0
- data/spec/observers/telephony/event_observer_spec.rb +19 -0
- data/spec/requests/create_conversation_spec.rb +39 -0
- data/spec/requests/dequeue_call_spec.rb +42 -0
- data/spec/requests/list_conversations_spec.rb +33 -0
- data/spec/requests/presences_spec.rb +51 -0
- data/spec/requests/providers/twilio/calls/child_answered_spec.rb +24 -0
- data/spec/requests/providers/twilio/calls/child_detached_spec.rb +249 -0
- data/spec/requests/providers/twilio/calls/dial_spec.rb +132 -0
- data/spec/requests/providers/twilio/calls/done_spec.rb +69 -0
- data/spec/requests/providers/twilio/calls/join_conference_spec.rb +56 -0
- data/spec/requests/providers/twilio/calls/leave_queue_spec.rb +44 -0
- data/spec/requests/providers/twilio/calls/parent_answered_spec.rb +59 -0
- data/spec/requests/providers/twilio/inbound/connect_dequeued_call_spec.rb +124 -0
- data/spec/requests/providers/twilio/inbound/enqueue_inbound_call_spec.rb +108 -0
- data/spec/requests/providers/twilio/inbound/enqueued_call_wait_music_spec.rb +13 -0
- data/spec/requests/providers/twilio/voicemails/leave_voicemail_spec.rb +78 -0
- data/spec/requests/search_conversations_spec.rb +101 -0
- data/spec/requests/transfer_spec.rb +65 -0
- data/spec/requests/voicemail_api_spec.rb +58 -0
- data/spec/spec_helper.rb +27 -0
- data/spec/support/factory_girl.rb +5 -0
- data/spec/support/matchers/be_complete_hold.rb +20 -0
- data/spec/support/matchers/be_whisper_tone.rb +35 -0
- data/spec/support/matchers/join_conference.rb +23 -0
- data/spec/support/nokogiri.rb +1 -0
- data/spec/support/pusher_helper.rb +24 -0
- data/spec/support/vcr.rb +12 -0
- data/spec/support/webmock.rb +1 -0
- metadata +692 -0
@@ -0,0 +1,207 @@
|
|
1
|
+
/*
|
2
|
+
Jasmine-Ajax : a set of helpers for testing AJAX requests under the Jasmine
|
3
|
+
BDD framework for JavaScript.
|
4
|
+
|
5
|
+
Supports both Prototype.js and jQuery.
|
6
|
+
|
7
|
+
http://github.com/pivotal/jasmine-ajax
|
8
|
+
|
9
|
+
Jasmine Home page: http://pivotal.github.com/jasmine
|
10
|
+
|
11
|
+
Copyright (c) 2008-2010 Pivotal Labs
|
12
|
+
|
13
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
14
|
+
a copy of this software and associated documentation files (the
|
15
|
+
"Software"), to deal in the Software without restriction, including
|
16
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
17
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
18
|
+
permit persons to whom the Software is furnished to do so, subject to
|
19
|
+
the following conditions:
|
20
|
+
|
21
|
+
The above copyright notice and this permission notice shall be
|
22
|
+
included in all copies or substantial portions of the Software.
|
23
|
+
|
24
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
25
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
26
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
27
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
28
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
29
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
30
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
31
|
+
|
32
|
+
*/
|
33
|
+
|
34
|
+
// Jasmine-Ajax interface
|
35
|
+
var ajaxRequests = [];
|
36
|
+
|
37
|
+
function mostRecentAjaxRequest() {
|
38
|
+
if (ajaxRequests.length > 0) {
|
39
|
+
return ajaxRequests[ajaxRequests.length - 1];
|
40
|
+
} else {
|
41
|
+
return null;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
function clearAjaxRequests() {
|
46
|
+
ajaxRequests = [];
|
47
|
+
}
|
48
|
+
|
49
|
+
// Fake XHR for mocking Ajax Requests & Responses
|
50
|
+
function FakeXMLHttpRequest() {
|
51
|
+
var extend = Object.extend || $.extend;
|
52
|
+
extend(this, {
|
53
|
+
requestHeaders: {},
|
54
|
+
|
55
|
+
open: function() {
|
56
|
+
this.method = arguments[0];
|
57
|
+
this.url = arguments[1];
|
58
|
+
this.readyState = 1;
|
59
|
+
},
|
60
|
+
|
61
|
+
setRequestHeader: function(header, value) {
|
62
|
+
this.requestHeaders[header] = value;
|
63
|
+
},
|
64
|
+
|
65
|
+
abort: function() {
|
66
|
+
this.readyState = 0;
|
67
|
+
},
|
68
|
+
|
69
|
+
readyState: 0,
|
70
|
+
|
71
|
+
onreadystatechange: function(isTimeout) {
|
72
|
+
},
|
73
|
+
|
74
|
+
status: null,
|
75
|
+
|
76
|
+
send: function(data) {
|
77
|
+
this.params = data;
|
78
|
+
this.readyState = 2;
|
79
|
+
},
|
80
|
+
|
81
|
+
getResponseHeader: function(name) {
|
82
|
+
return this.responseHeaders[name];
|
83
|
+
},
|
84
|
+
|
85
|
+
getAllResponseHeaders: function() {
|
86
|
+
var responseHeaders = [];
|
87
|
+
for (var i in this.responseHeaders) {
|
88
|
+
if (this.responseHeaders.hasOwnProperty(i)) {
|
89
|
+
responseHeaders.push(i + ': ' + this.responseHeaders[i]);
|
90
|
+
}
|
91
|
+
}
|
92
|
+
return responseHeaders.join('\r\n');
|
93
|
+
},
|
94
|
+
|
95
|
+
responseText: null,
|
96
|
+
|
97
|
+
response: function(response) {
|
98
|
+
this.status = response.status;
|
99
|
+
this.responseText = response.responseText || "";
|
100
|
+
this.readyState = 4;
|
101
|
+
this.responseHeaders = response.responseHeaders ||
|
102
|
+
{"Content-type": response.contentType || "application/json" };
|
103
|
+
// uncomment for jquery 1.3.x support
|
104
|
+
// jasmine.Clock.tick(20);
|
105
|
+
|
106
|
+
this.onreadystatechange();
|
107
|
+
},
|
108
|
+
responseTimeout: function() {
|
109
|
+
this.readyState = 4;
|
110
|
+
jasmine.Clock.tick(jQuery.ajaxSettings.timeout || 30000);
|
111
|
+
this.onreadystatechange('timeout');
|
112
|
+
}
|
113
|
+
});
|
114
|
+
|
115
|
+
return this;
|
116
|
+
}
|
117
|
+
|
118
|
+
|
119
|
+
jasmine.Ajax = {
|
120
|
+
|
121
|
+
isInstalled: function() {
|
122
|
+
return jasmine.Ajax.installed == true;
|
123
|
+
},
|
124
|
+
|
125
|
+
assertInstalled: function() {
|
126
|
+
if (!jasmine.Ajax.isInstalled()) {
|
127
|
+
throw new Error("Mock ajax is not installed, use jasmine.Ajax.useMock()")
|
128
|
+
}
|
129
|
+
},
|
130
|
+
|
131
|
+
useMock: function() {
|
132
|
+
if (!jasmine.Ajax.isInstalled()) {
|
133
|
+
var spec = jasmine.getEnv().currentSpec;
|
134
|
+
spec.after(jasmine.Ajax.uninstallMock);
|
135
|
+
|
136
|
+
jasmine.Ajax.installMock();
|
137
|
+
}
|
138
|
+
},
|
139
|
+
|
140
|
+
installMock: function() {
|
141
|
+
if (typeof jQuery != 'undefined') {
|
142
|
+
jasmine.Ajax.installJquery();
|
143
|
+
} else if (typeof Prototype != 'undefined') {
|
144
|
+
jasmine.Ajax.installPrototype();
|
145
|
+
} else {
|
146
|
+
throw new Error("jasmine.Ajax currently only supports jQuery and Prototype");
|
147
|
+
}
|
148
|
+
jasmine.Ajax.installed = true;
|
149
|
+
},
|
150
|
+
|
151
|
+
installJquery: function() {
|
152
|
+
jasmine.Ajax.mode = 'jQuery';
|
153
|
+
jasmine.Ajax.real = jQuery.ajaxSettings.xhr;
|
154
|
+
jQuery.ajaxSettings.xhr = jasmine.Ajax.jQueryMock;
|
155
|
+
|
156
|
+
},
|
157
|
+
|
158
|
+
installPrototype: function() {
|
159
|
+
jasmine.Ajax.mode = 'Prototype';
|
160
|
+
jasmine.Ajax.real = Ajax.getTransport;
|
161
|
+
|
162
|
+
Ajax.getTransport = jasmine.Ajax.prototypeMock;
|
163
|
+
},
|
164
|
+
|
165
|
+
uninstallMock: function() {
|
166
|
+
jasmine.Ajax.assertInstalled();
|
167
|
+
if (jasmine.Ajax.mode == 'jQuery') {
|
168
|
+
jQuery.ajaxSettings.xhr = jasmine.Ajax.real;
|
169
|
+
} else if (jasmine.Ajax.mode == 'Prototype') {
|
170
|
+
Ajax.getTransport = jasmine.Ajax.real;
|
171
|
+
}
|
172
|
+
jasmine.Ajax.reset();
|
173
|
+
},
|
174
|
+
|
175
|
+
reset: function() {
|
176
|
+
jasmine.Ajax.installed = false;
|
177
|
+
jasmine.Ajax.mode = null;
|
178
|
+
jasmine.Ajax.real = null;
|
179
|
+
},
|
180
|
+
|
181
|
+
jQueryMock: function() {
|
182
|
+
var newXhr = new FakeXMLHttpRequest();
|
183
|
+
ajaxRequests.push(newXhr);
|
184
|
+
return newXhr;
|
185
|
+
},
|
186
|
+
|
187
|
+
prototypeMock: function() {
|
188
|
+
return new FakeXMLHttpRequest();
|
189
|
+
},
|
190
|
+
|
191
|
+
installed: false,
|
192
|
+
mode: null
|
193
|
+
}
|
194
|
+
|
195
|
+
|
196
|
+
// Jasmine-Ajax Glue code for Prototype.js
|
197
|
+
if (typeof Prototype != 'undefined' && Ajax && Ajax.Request) {
|
198
|
+
Ajax.Request.prototype.originalRequest = Ajax.Request.prototype.request;
|
199
|
+
Ajax.Request.prototype.request = function(url) {
|
200
|
+
this.originalRequest(url);
|
201
|
+
ajaxRequests.push(this);
|
202
|
+
};
|
203
|
+
|
204
|
+
Ajax.Request.prototype.response = function(responseOptions) {
|
205
|
+
return this.transport.response(responseOptions);
|
206
|
+
};
|
207
|
+
}
|
@@ -0,0 +1,80 @@
|
|
1
|
+
# src_files
|
2
|
+
#
|
3
|
+
# Return an array of filepaths relative to src_dir to include before jasmine specs.
|
4
|
+
# Default: []
|
5
|
+
#
|
6
|
+
# EXAMPLE:
|
7
|
+
#
|
8
|
+
# src_files:
|
9
|
+
# - lib/source1.js
|
10
|
+
# - lib/source2.js
|
11
|
+
# - dist/**/*.js
|
12
|
+
#
|
13
|
+
src_files:
|
14
|
+
- telephony/vendor/test_dependencies.js
|
15
|
+
- telephony/application.js
|
16
|
+
|
17
|
+
# stylesheets
|
18
|
+
#
|
19
|
+
# Return an array of stylesheet filepaths relative to src_dir to include before jasmine specs.
|
20
|
+
# Default: []
|
21
|
+
#
|
22
|
+
# EXAMPLE:
|
23
|
+
#
|
24
|
+
# stylesheets:
|
25
|
+
# - css/style.css
|
26
|
+
# - stylesheets/*.css
|
27
|
+
#
|
28
|
+
stylesheets:
|
29
|
+
# - stylesheets/**/*.css
|
30
|
+
|
31
|
+
# helpers
|
32
|
+
#
|
33
|
+
# Return an array of filepaths relative to spec_dir to include before jasmine specs.
|
34
|
+
# Default: ["helpers/**/*.js"]
|
35
|
+
#
|
36
|
+
# EXAMPLE:
|
37
|
+
#
|
38
|
+
# helpers:
|
39
|
+
# - helpers/**/*.js
|
40
|
+
#
|
41
|
+
helpers:
|
42
|
+
- 'helpers/**/*.js'
|
43
|
+
|
44
|
+
# spec_files
|
45
|
+
#
|
46
|
+
# Return an array of filepaths relative to spec_dir to include.
|
47
|
+
# Default: ["**/*[sS]pec.js"]
|
48
|
+
#
|
49
|
+
# EXAMPLE:
|
50
|
+
#
|
51
|
+
# spec_files:
|
52
|
+
# - '**/*[sS]pec.js'
|
53
|
+
#
|
54
|
+
spec_files:
|
55
|
+
- '**/*[sS]pec.js'
|
56
|
+
|
57
|
+
# src_dir
|
58
|
+
#
|
59
|
+
# Source directory path. Your src_files must be returned relative to this path. Will use root if left blank.
|
60
|
+
# Default: project root
|
61
|
+
#
|
62
|
+
# EXAMPLE:
|
63
|
+
#
|
64
|
+
# src_dir: public
|
65
|
+
#
|
66
|
+
src_dir: 'app/assets/javascripts'
|
67
|
+
|
68
|
+
# spec_dir
|
69
|
+
#
|
70
|
+
# Spec directory path. Your spec_files must be returned relative to this path.
|
71
|
+
# Default: spec/javascripts
|
72
|
+
#
|
73
|
+
# EXAMPLE:
|
74
|
+
#
|
75
|
+
# spec_dir: spec/javascripts
|
76
|
+
#
|
77
|
+
spec_dir: spec/javascripts
|
78
|
+
|
79
|
+
asset_paths:
|
80
|
+
- "vendor/assets/javascripts"
|
@@ -0,0 +1,40 @@
|
|
1
|
+
describe("Zest.Telephony.Models.Agent", function() {
|
2
|
+
describe("#status", function() {
|
3
|
+
it("defaults to 'offline'", function() {
|
4
|
+
var agent = new Zest.Telephony.Models.Agent();
|
5
|
+
expect(agent.status()).toBe("loading...");
|
6
|
+
});
|
7
|
+
});
|
8
|
+
|
9
|
+
describe("#url", function() {
|
10
|
+
it("uses the correct path", function() {
|
11
|
+
var agent = new Zest.Telephony.Models.Agent({csr_id: 123});
|
12
|
+
expect(agent.url()).toBe("/zestphone/agents/123");
|
13
|
+
});
|
14
|
+
});
|
15
|
+
|
16
|
+
describe("#toggleAvailable", function() {
|
17
|
+
var agent;
|
18
|
+
var request;
|
19
|
+
var data;
|
20
|
+
|
21
|
+
beforeEach(function() {
|
22
|
+
jasmine.Ajax.useMock();
|
23
|
+
agent = new Zest.Telephony.Models.Agent({csr_id: 123});
|
24
|
+
spyOn(agent, 'done');
|
25
|
+
|
26
|
+
agent.toggleAvailable();
|
27
|
+
request = mostRecentAjaxRequest();
|
28
|
+
data = { status: "available" };
|
29
|
+
request.response({status: 200, responseText: JSON.stringify(data)});
|
30
|
+
})
|
31
|
+
|
32
|
+
it("trigger an event", function() {
|
33
|
+
expect(agent.done).toHaveBeenCalled();
|
34
|
+
expect(agent.done.mostRecentCall.args[0]).toEqual(data);
|
35
|
+
expect(request.method).toEqual('PUT');
|
36
|
+
expect(request.params).toEqual('event=toggle_available');
|
37
|
+
expect(request.url).toEqual('/zestphone/agents/123/status');
|
38
|
+
});
|
39
|
+
});
|
40
|
+
});
|
@@ -0,0 +1,515 @@
|
|
1
|
+
describe("Zest.Telephony.Models.Conversation", function() {
|
2
|
+
var conversation;
|
3
|
+
|
4
|
+
beforeEach(function() {
|
5
|
+
conversation = new Zest.Telephony.Models.Conversation();
|
6
|
+
});
|
7
|
+
|
8
|
+
describe("#url", function() {
|
9
|
+
it("uses the correct path", function() {
|
10
|
+
var convo = new Zest.Telephony.Models.Conversation();
|
11
|
+
expect(convo.url()).toEqual('/zestphone/conversations');
|
12
|
+
});
|
13
|
+
});
|
14
|
+
|
15
|
+
describe("#create", function() {
|
16
|
+
describe("when succeeds", function() {
|
17
|
+
it("creates a conversation remotely", function() {
|
18
|
+
jasmine.Ajax.useMock();
|
19
|
+
|
20
|
+
var convo = new Zest.Telephony.Models.Conversation();
|
21
|
+
spyOn(convo, 'createSuccess');
|
22
|
+
convo.set({
|
23
|
+
loanId: '123',
|
24
|
+
to: "3003004002",
|
25
|
+
toId: '9',
|
26
|
+
toType: 'borrower',
|
27
|
+
from: "3003004000",
|
28
|
+
fromId: '1'
|
29
|
+
});
|
30
|
+
convo.create();
|
31
|
+
|
32
|
+
var request = mostRecentAjaxRequest();
|
33
|
+
var response = { id: 100, caller_call_id: 200, callee_call_id: 201 };
|
34
|
+
request.response({status: 200, responseText: JSON.stringify(response)});
|
35
|
+
|
36
|
+
expect(convo.createSuccess).toHaveBeenCalled();
|
37
|
+
expect(request.method).toEqual('POST');
|
38
|
+
var data = {
|
39
|
+
loan_id: '123',
|
40
|
+
from: '3003004000',
|
41
|
+
from_id: '1',
|
42
|
+
from_type: 'csr',
|
43
|
+
to: '3003004002',
|
44
|
+
to_id: '9',
|
45
|
+
to_type: 'borrower'
|
46
|
+
};
|
47
|
+
expect(request.params).toEqual($.param(data));
|
48
|
+
});
|
49
|
+
});
|
50
|
+
|
51
|
+
describe("when fails", function() {
|
52
|
+
var failHandler;
|
53
|
+
|
54
|
+
beforeEach(function() {
|
55
|
+
failHandler = jasmine.createSpy('fail');
|
56
|
+
$(document).bind('callFailed', failHandler);
|
57
|
+
});
|
58
|
+
|
59
|
+
it("returns an error message", function() {
|
60
|
+
jasmine.Ajax.useMock();
|
61
|
+
|
62
|
+
var convo = new Zest.Telephony.Models.Conversation();
|
63
|
+
convo.create();
|
64
|
+
|
65
|
+
var request = mostRecentAjaxRequest();
|
66
|
+
var response = { errors: ['some error'] };
|
67
|
+
request.response({status: 500, responseText: JSON.stringify(response)});
|
68
|
+
|
69
|
+
expect(failHandler).toHaveBeenCalled();
|
70
|
+
expect(failHandler.mostRecentCall.args[1]).toEqual('some error');
|
71
|
+
});
|
72
|
+
});
|
73
|
+
});
|
74
|
+
|
75
|
+
describe('#hold', function() {
|
76
|
+
it("changes state to 'initiating_hold'", function() {
|
77
|
+
jasmine.Ajax.useMock();
|
78
|
+
|
79
|
+
conversation.hold();
|
80
|
+
expect(conversation.get('state')).toEqual('initiating_hold');
|
81
|
+
});
|
82
|
+
});
|
83
|
+
|
84
|
+
describe('#resume', function() {
|
85
|
+
it("changes state to 'initiating_resume'", function() {
|
86
|
+
jasmine.Ajax.useMock();
|
87
|
+
|
88
|
+
conversation.resume();
|
89
|
+
expect(conversation.get('state')).toEqual('initiating_resume');
|
90
|
+
});
|
91
|
+
});
|
92
|
+
|
93
|
+
describe('#uiDisableCall', function() {
|
94
|
+
describe('given a new conversation', function() {
|
95
|
+
beforeEach(function() {
|
96
|
+
conversation.set({ state: 'not_initiated' });
|
97
|
+
});
|
98
|
+
|
99
|
+
it('enables the button', function() {
|
100
|
+
expect(conversation.uiDisableCall()).toEqual('');
|
101
|
+
});
|
102
|
+
});
|
103
|
+
|
104
|
+
describe('given a terminated conversation', function() {
|
105
|
+
beforeEach(function() {
|
106
|
+
conversation.set({ state: 'terminated' });
|
107
|
+
});
|
108
|
+
|
109
|
+
it('returns true', function() {
|
110
|
+
expect(conversation.uiDisableCall()).toEqual('');
|
111
|
+
});
|
112
|
+
});
|
113
|
+
|
114
|
+
describe('given a conversation in progress', function() {
|
115
|
+
beforeEach(function() {
|
116
|
+
conversation.set({ state: 'in_progress' });
|
117
|
+
});
|
118
|
+
|
119
|
+
it('disables the call controls', function() {
|
120
|
+
expect(conversation.uiDisableCall()).toEqual('disabled');
|
121
|
+
});
|
122
|
+
});
|
123
|
+
|
124
|
+
describe('given a conversation with calling disabled', function() {
|
125
|
+
beforeEach(function() {
|
126
|
+
conversation.set({ callingDisabled: true });
|
127
|
+
});
|
128
|
+
|
129
|
+
it('disables the call controls', function() {
|
130
|
+
expect(conversation.uiDisableCall()).toEqual('disabled');
|
131
|
+
});
|
132
|
+
});
|
133
|
+
});
|
134
|
+
|
135
|
+
describe('#uiShowCall', function() {
|
136
|
+
describe('given a new conversation', function() {
|
137
|
+
beforeEach(function() {
|
138
|
+
conversation.set({ state: 'not_initiated' });
|
139
|
+
});
|
140
|
+
|
141
|
+
it('returns true', function() {
|
142
|
+
expect(conversation.uiShowCall()).toEqual('');
|
143
|
+
});
|
144
|
+
});
|
145
|
+
|
146
|
+
describe('given a connecting conversation', function() {
|
147
|
+
beforeEach(function() {
|
148
|
+
conversation.set({ state: 'connecting' });
|
149
|
+
});
|
150
|
+
|
151
|
+
it('returns true', function() {
|
152
|
+
expect(conversation.uiShowCall()).toEqual('');
|
153
|
+
});
|
154
|
+
});
|
155
|
+
|
156
|
+
describe('given a terminated conversation', function() {
|
157
|
+
beforeEach(function() {
|
158
|
+
conversation.set({ state: 'terminated' });
|
159
|
+
});
|
160
|
+
|
161
|
+
it('returns true', function() {
|
162
|
+
expect(conversation.uiShowCall()).toEqual('');
|
163
|
+
});
|
164
|
+
});
|
165
|
+
|
166
|
+
describe('given a conversation in progress', function() {
|
167
|
+
beforeEach(function() {
|
168
|
+
conversation.set({ state: 'in_progress' });
|
169
|
+
});
|
170
|
+
|
171
|
+
it('hides the button', function() {
|
172
|
+
expect(conversation.uiShowCall()).toEqual('hidden');
|
173
|
+
});
|
174
|
+
});
|
175
|
+
});
|
176
|
+
|
177
|
+
describe("#uiShowHold", function() {
|
178
|
+
describe("given the 'in_progress' coversation", function() {
|
179
|
+
it("shows the hold button", function() {
|
180
|
+
conversation.set({state: "in_progress"});
|
181
|
+
|
182
|
+
expect(conversation.uiShowHold()).toEqual("");
|
183
|
+
});
|
184
|
+
});
|
185
|
+
|
186
|
+
describe("given the 'in_progress_two_step_transfer' coversation", function() {
|
187
|
+
it("shows the hold button", function() {
|
188
|
+
conversation.set({state: "in_progress_two_step_transfer"});
|
189
|
+
|
190
|
+
expect(conversation.uiShowHold()).toEqual("");
|
191
|
+
});
|
192
|
+
});
|
193
|
+
|
194
|
+
describe("given the 'initiating_hold' coversation", function() {
|
195
|
+
it("shows the hold button", function() {
|
196
|
+
conversation.set({state: "initiating_hold"});
|
197
|
+
|
198
|
+
expect(conversation.uiShowHold()).toEqual("");
|
199
|
+
});
|
200
|
+
});
|
201
|
+
});
|
202
|
+
|
203
|
+
describe('#uiDisableTransfer', function() {
|
204
|
+
describe('given an in progress conversation', function() {
|
205
|
+
beforeEach(function() {
|
206
|
+
conversation.set({ state: 'in_progress' });
|
207
|
+
});
|
208
|
+
|
209
|
+
it('enables the button', function() {
|
210
|
+
expect(conversation.uiDisableTransfer()).toEqual('');
|
211
|
+
});
|
212
|
+
});
|
213
|
+
|
214
|
+
describe('given an "initiating_hold" conversation', function() {
|
215
|
+
beforeEach(function() {
|
216
|
+
conversation.set({ state: 'initiating_hold' });
|
217
|
+
});
|
218
|
+
|
219
|
+
it('disables the button', function() {
|
220
|
+
expect(conversation.uiDisableTransfer()).toEqual('disabled');
|
221
|
+
});
|
222
|
+
});
|
223
|
+
|
224
|
+
describe('given a "on-hold" conversation', function() {
|
225
|
+
beforeEach(function() {
|
226
|
+
conversation.set({ state: 'in_progress_hold' });
|
227
|
+
});
|
228
|
+
|
229
|
+
it('enables the button', function() {
|
230
|
+
expect(conversation.uiDisableTransfer()).toEqual('');
|
231
|
+
});
|
232
|
+
});
|
233
|
+
|
234
|
+
describe('given a "initiating_resume" conversation', function() {
|
235
|
+
beforeEach(function() {
|
236
|
+
conversation.set({ state: 'initiating_resume' });
|
237
|
+
});
|
238
|
+
|
239
|
+
it('disables the button', function() {
|
240
|
+
expect(conversation.uiDisableTransfer()).toEqual('disabled');
|
241
|
+
});
|
242
|
+
});
|
243
|
+
|
244
|
+
describe('given a not in progress conversation', function() {
|
245
|
+
beforeEach(function() {
|
246
|
+
conversation.set({ state: 'connecting'});
|
247
|
+
});
|
248
|
+
|
249
|
+
it('returns true', function() {
|
250
|
+
expect(conversation.uiDisableTransfer()).toEqual('disabled');
|
251
|
+
});
|
252
|
+
});
|
253
|
+
});
|
254
|
+
|
255
|
+
describe('#uiShowTransfer', function() {
|
256
|
+
describe('given a cancelable conversation', function() {
|
257
|
+
beforeEach(function() {
|
258
|
+
conversation.set({ state: 'in_progress', isCancelable: true });
|
259
|
+
});
|
260
|
+
|
261
|
+
it('hides the button', function() {
|
262
|
+
expect(conversation.uiShowTransfer()).toEqual('hidden');
|
263
|
+
});
|
264
|
+
});
|
265
|
+
|
266
|
+
describe('given a transferable conversation', function() {
|
267
|
+
var displayableStates;
|
268
|
+
|
269
|
+
beforeEach(function() {
|
270
|
+
displayableStates = ['in_progress', 'one_step_transferring',
|
271
|
+
'in_progress_hold', 'two_step_transferring', 'in_progress_two_step_transfer',
|
272
|
+
'initiating_hold', 'initiating_resume'];
|
273
|
+
});
|
274
|
+
|
275
|
+
it('shows the button', function() {
|
276
|
+
_.each(displayableStates, function(state) {
|
277
|
+
conversation.set({ state: state });
|
278
|
+
expect(conversation.uiShowTransfer()).toEqual('');
|
279
|
+
});
|
280
|
+
});
|
281
|
+
});
|
282
|
+
|
283
|
+
describe('given a non-transferable conversation', function() {
|
284
|
+
beforeEach(function() {
|
285
|
+
conversation.set({ state: 'connecting'});
|
286
|
+
});
|
287
|
+
|
288
|
+
it('hides the button', function() {
|
289
|
+
expect(conversation.uiShowTransfer()).toEqual('hidden');
|
290
|
+
});
|
291
|
+
});
|
292
|
+
});
|
293
|
+
|
294
|
+
describe("#uiDisableResume", function() {
|
295
|
+
describe("given an 'initiating_resume' conversation", function() {
|
296
|
+
it("disables the button", function() {
|
297
|
+
conversation.set({state: 'initiating_resume', owner: true});
|
298
|
+
|
299
|
+
expect(conversation.uiDisableResume()).toEqual("disabled");
|
300
|
+
});
|
301
|
+
});
|
302
|
+
|
303
|
+
describe("given an 'in_progress' conversation", function() {
|
304
|
+
describe("for the conversation owner", function() {
|
305
|
+
it("enables the button", function() {
|
306
|
+
conversation.set({state: 'in_progress', owner: true});
|
307
|
+
|
308
|
+
expect(conversation.uiDisableResume()).toEqual("");
|
309
|
+
});
|
310
|
+
});
|
311
|
+
|
312
|
+
describe("for the conversation non-owner", function() {
|
313
|
+
it("disables the button", function() {
|
314
|
+
conversation.set({state: 'in_progress', owner: false});
|
315
|
+
|
316
|
+
expect(conversation.uiDisableResume()).toEqual("disabled");
|
317
|
+
});
|
318
|
+
});
|
319
|
+
});
|
320
|
+
});
|
321
|
+
|
322
|
+
describe("#uiDisableHold", function() {
|
323
|
+
describe("given an 'initiating_hold' conversation", function() {
|
324
|
+
it("disables the button", function() {
|
325
|
+
conversation.set({state: 'initiating_hold', owner: true});
|
326
|
+
|
327
|
+
expect(conversation.uiDisableHold()).toEqual("disabled");
|
328
|
+
});
|
329
|
+
});
|
330
|
+
|
331
|
+
describe("given an 'in_progress' conversation", function() {
|
332
|
+
describe("for the conversation owner", function() {
|
333
|
+
it("enables the button", function() {
|
334
|
+
conversation.set({state: 'in_progress', owner: true});
|
335
|
+
|
336
|
+
expect(conversation.uiDisableHold()).toEqual("");
|
337
|
+
});
|
338
|
+
});
|
339
|
+
|
340
|
+
describe("for the conversation non-owner", function() {
|
341
|
+
it("disables the button", function() {
|
342
|
+
conversation.set({state: 'in_progress', owner: false});
|
343
|
+
|
344
|
+
expect(conversation.uiDisableHold()).toEqual("disabled");
|
345
|
+
});
|
346
|
+
});
|
347
|
+
});
|
348
|
+
});
|
349
|
+
|
350
|
+
describe("#uiShowResume", function() {
|
351
|
+
describe("given an 'in_progress_hold' conversation", function() {
|
352
|
+
it("shows the button", function() {
|
353
|
+
conversation.set({state: 'in_progress_hold'});
|
354
|
+
|
355
|
+
expect(conversation.uiShowResume()).toEqual("");
|
356
|
+
});
|
357
|
+
});
|
358
|
+
|
359
|
+
describe("given an 'initiating_resume' conversation", function() {
|
360
|
+
it("shows the button", function() {
|
361
|
+
conversation.set({state: 'initiating_resume'});
|
362
|
+
|
363
|
+
expect(conversation.uiShowResume()).toEqual("");
|
364
|
+
});
|
365
|
+
});
|
366
|
+
|
367
|
+
describe("given an 'in_progress' conversation", function() {
|
368
|
+
it("hides the button", function() {
|
369
|
+
conversation.set({state: 'in_progress'});
|
370
|
+
|
371
|
+
expect(conversation.uiShowResume()).toEqual("hidden");
|
372
|
+
});
|
373
|
+
});
|
374
|
+
});
|
375
|
+
|
376
|
+
describe('#uiShowCancelTransfer', function() {
|
377
|
+
describe('given a cancelable conversation', function() {
|
378
|
+
beforeEach(function() {
|
379
|
+
conversation.set({ isCancelable: true });
|
380
|
+
});
|
381
|
+
|
382
|
+
it('returns true', function() {
|
383
|
+
expect(conversation.uiShowCancelTransfer()).toEqual('');
|
384
|
+
});
|
385
|
+
});
|
386
|
+
|
387
|
+
describe('given a not-cancelable conversation', function() {
|
388
|
+
beforeEach(function() {
|
389
|
+
conversation.set({ isCancelable: false });
|
390
|
+
});
|
391
|
+
|
392
|
+
it('hides the button', function() {
|
393
|
+
expect(conversation.uiShowCancelTransfer()).toEqual('hidden');
|
394
|
+
});
|
395
|
+
});
|
396
|
+
});
|
397
|
+
|
398
|
+
describe('#uiShowCallSpinner', function() {
|
399
|
+
describe('given a connecting conversation', function() {
|
400
|
+
beforeEach(function() {
|
401
|
+
conversation.set({ state: 'connecting' });
|
402
|
+
});
|
403
|
+
|
404
|
+
it('returns true', function() {
|
405
|
+
expect(conversation.uiShowCallSpinner()).toEqual('display');
|
406
|
+
});
|
407
|
+
});
|
408
|
+
|
409
|
+
describe('given a not-connecting conversation', function() {
|
410
|
+
beforeEach(function() {
|
411
|
+
conversation.set({ state: 'in_progress' });
|
412
|
+
});
|
413
|
+
|
414
|
+
it('shows the button', function() {
|
415
|
+
expect(conversation.uiShowCallSpinner()).toEqual('');
|
416
|
+
});
|
417
|
+
});
|
418
|
+
});
|
419
|
+
|
420
|
+
describe("#uiShowHoldSpinner", function() {
|
421
|
+
describe("given 'intiating_hold' conversation", function() {
|
422
|
+
it("shows the spinner", function() {
|
423
|
+
conversation.set({ state: 'initiating_hold' });
|
424
|
+
|
425
|
+
expect(conversation.uiShowHoldSpinner()).toEqual('display');
|
426
|
+
});
|
427
|
+
});
|
428
|
+
|
429
|
+
describe("given an 'in_progress' conversation", function() {
|
430
|
+
it("doesn't show the spinner", function() {
|
431
|
+
conversation.set({ state: 'in_progress' });
|
432
|
+
|
433
|
+
expect(conversation.uiShowHoldSpinner()).toEqual('');
|
434
|
+
});
|
435
|
+
});
|
436
|
+
});
|
437
|
+
|
438
|
+
describe("#uiShowResumeSpinner", function() {
|
439
|
+
describe("given 'intiating_resume' conversation", function() {
|
440
|
+
it("shows the spinner", function() {
|
441
|
+
conversation.set({ state: 'initiating_resume' });
|
442
|
+
|
443
|
+
expect(conversation.uiShowResumeSpinner()).toEqual('display');
|
444
|
+
});
|
445
|
+
});
|
446
|
+
|
447
|
+
describe("given an 'in_progress' conversation", function() {
|
448
|
+
it("doesn't show the spinner", function() {
|
449
|
+
conversation.set({ state: 'in_progress' });
|
450
|
+
|
451
|
+
expect(conversation.uiShowResumeSpinner()).toEqual('');
|
452
|
+
});
|
453
|
+
});
|
454
|
+
});
|
455
|
+
|
456
|
+
describe('#isValid', function() {
|
457
|
+
var conversation;
|
458
|
+
|
459
|
+
describe('given a conversation with a valid phone number', function() {
|
460
|
+
var validPhoneNumbers;
|
461
|
+
|
462
|
+
beforeEach(function() {
|
463
|
+
validPhoneNumbers = ['555-111-1111', '+1 222-222-2222'];
|
464
|
+
});
|
465
|
+
|
466
|
+
it('returns true', function() {
|
467
|
+
_.each(validPhoneNumbers, function(phoneNumber) {
|
468
|
+
conversation = new Zest.Telephony.Models.Conversation({
|
469
|
+
from: '222-333-4444',
|
470
|
+
to: phoneNumber
|
471
|
+
});
|
472
|
+
expect(conversation.isValid()).toBeTruthy(phoneNumber + ' is not valid');
|
473
|
+
});
|
474
|
+
});
|
475
|
+
});
|
476
|
+
|
477
|
+
describe('given a conversation with an invalid phone number', function() {
|
478
|
+
var invalidPhoneNumbers;
|
479
|
+
|
480
|
+
beforeEach(function() {
|
481
|
+
invalidPhoneNumbers = [null, '', 111, '(111)', '111-111-1111', '+2 333-333-3333'];
|
482
|
+
});
|
483
|
+
|
484
|
+
it('returns false', function() {
|
485
|
+
_.each(invalidPhoneNumbers, function(phoneNumber) {
|
486
|
+
conversation = new Zest.Telephony.Models.Conversation({
|
487
|
+
from: '222-333-4444',
|
488
|
+
to: phoneNumber
|
489
|
+
});
|
490
|
+
expect(conversation.isValid()).toBeFalsy(phoneNumber + ' is valid');
|
491
|
+
expect(conversation.errorMessage).toEqual('Please enter a 10-digit phone number');
|
492
|
+
});
|
493
|
+
});
|
494
|
+
});
|
495
|
+
|
496
|
+
describe('given a conversation from and to the same number', function() {
|
497
|
+
var agentNumber;
|
498
|
+
|
499
|
+
beforeEach(function() {
|
500
|
+
agentNumber = '222-333-4444';
|
501
|
+
});
|
502
|
+
|
503
|
+
it('returns false', function() {
|
504
|
+
_.each(['222-333-4444', '2223334444', '(222) 333-4444'], function(callee) {
|
505
|
+
conversation = new Zest.Telephony.Models.Conversation({
|
506
|
+
from: agentNumber,
|
507
|
+
to: callee
|
508
|
+
});
|
509
|
+
expect(conversation.isValid()).toBeFalsy();
|
510
|
+
expect(conversation.errorMessage).toEqual('Please input a customer phone number');
|
511
|
+
});
|
512
|
+
});
|
513
|
+
});
|
514
|
+
});
|
515
|
+
});
|