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,101 @@
|
|
1
|
+
describe("Zest.Telephony.Views.AgentsView", function() {
|
2
|
+
describe("#initialize", function() {
|
3
|
+
var view;
|
4
|
+
|
5
|
+
beforeEach(function() {
|
6
|
+
jasmine.Ajax.useMock();
|
7
|
+
setFixtures("<div class='wrapper'> </div>");
|
8
|
+
});
|
9
|
+
|
10
|
+
describe("when agents are not provided", function() {
|
11
|
+
it("request a list of transferable agents for an agent", function() {
|
12
|
+
view = new Zest.Telephony.Views.AgentsView({
|
13
|
+
el: $('.wrapper'),
|
14
|
+
currentAgentId: 123
|
15
|
+
});
|
16
|
+
var request = mostRecentAjaxRequest();
|
17
|
+
|
18
|
+
expect(request.url).toBe('/zestphone/agents?csr_id=123');
|
19
|
+
});
|
20
|
+
});
|
21
|
+
});
|
22
|
+
|
23
|
+
describe("filter", function() {
|
24
|
+
var agents;
|
25
|
+
var view;
|
26
|
+
|
27
|
+
beforeEach(function() {
|
28
|
+
setFixtures("<div class='wrapper'> </div>");
|
29
|
+
|
30
|
+
agents = new Zest.Telephony.Collections.Agents([
|
31
|
+
{
|
32
|
+
id: 123,
|
33
|
+
name: 'abc',
|
34
|
+
csr_type: 'A'
|
35
|
+
},
|
36
|
+
{
|
37
|
+
id: 456,
|
38
|
+
name: 'xyz',
|
39
|
+
csr_type: 'B'
|
40
|
+
}
|
41
|
+
]);
|
42
|
+
|
43
|
+
view = new Zest.Telephony.Views.AgentsView({
|
44
|
+
el: $('.wrapper'),
|
45
|
+
agents: agents
|
46
|
+
});
|
47
|
+
});
|
48
|
+
|
49
|
+
describe("when the query is empty", function() {
|
50
|
+
it("shows all agents", function() {
|
51
|
+
spyOn(view.agents, "reset");
|
52
|
+
|
53
|
+
view.filter("");
|
54
|
+
expect(view.agents.reset).toHaveBeenCalledWith(agents.toJSON());
|
55
|
+
});
|
56
|
+
});
|
57
|
+
|
58
|
+
describe("when query is provided", function() {
|
59
|
+
it("shows matched agents only", function() {
|
60
|
+
spyOn(view.agents, "reset");
|
61
|
+
|
62
|
+
view.filter("xyz");
|
63
|
+
expect(view.agents.reset).toHaveBeenCalledWith([agents.at(1).toJSON()]);
|
64
|
+
});
|
65
|
+
});
|
66
|
+
});
|
67
|
+
|
68
|
+
describe("#render", function(){
|
69
|
+
var agents, view;
|
70
|
+
|
71
|
+
beforeEach(function() {
|
72
|
+
setFixtures("<div class='wrapper'/>");
|
73
|
+
|
74
|
+
agents = new Zest.Telephony.Collections.Agents([
|
75
|
+
{
|
76
|
+
id: 123,
|
77
|
+
name: 'abc',
|
78
|
+
csr_id: 1000,
|
79
|
+
csr_type: 'A'
|
80
|
+
},
|
81
|
+
{
|
82
|
+
id: 456,
|
83
|
+
name: 'xyz',
|
84
|
+
csr_id: 1001,
|
85
|
+
csr_type: 'B'
|
86
|
+
}
|
87
|
+
]);
|
88
|
+
|
89
|
+
view = new Zest.Telephony.Views.AgentsView({
|
90
|
+
el: $('.wrapper'),
|
91
|
+
currentAgentId: 1000,
|
92
|
+
agents: agents
|
93
|
+
});
|
94
|
+
});
|
95
|
+
|
96
|
+
it ("excludes the current agent", function() {
|
97
|
+
view.render();
|
98
|
+
expect($('li', view.el).length).toBe(1);
|
99
|
+
});
|
100
|
+
});
|
101
|
+
});
|
@@ -0,0 +1,74 @@
|
|
1
|
+
describe('Zest.Telephony.Views.ApplicationView', function () {
|
2
|
+
describe('#initialize', function() {
|
3
|
+
describe('on a page that does not have a "#telephony-widget"', function() {
|
4
|
+
var logger = { log: function() {} };
|
5
|
+
|
6
|
+
beforeEach(function() {
|
7
|
+
spyOn(logger, 'log');
|
8
|
+
new Zest.Telephony.Views.ApplicationView({logger: logger});
|
9
|
+
});
|
10
|
+
|
11
|
+
it('logs an error', function() {
|
12
|
+
expect(logger.log).toHaveBeenCalled();
|
13
|
+
});
|
14
|
+
});
|
15
|
+
});
|
16
|
+
|
17
|
+
describe('#render', function () {
|
18
|
+
var applicationView;
|
19
|
+
|
20
|
+
beforeEach(function () {
|
21
|
+
setFixtures('<div id="telephony-widget" />');
|
22
|
+
|
23
|
+
applicationView = new Zest.Telephony.Views.ApplicationView();
|
24
|
+
applicationView.render();
|
25
|
+
});
|
26
|
+
|
27
|
+
it('displays the telephony widget', function () {
|
28
|
+
expect($(applicationView.el)).toContain('.telephony-widget-container');
|
29
|
+
});
|
30
|
+
});
|
31
|
+
|
32
|
+
describe("#init", function() {
|
33
|
+
var agent;
|
34
|
+
|
35
|
+
beforeEach(function () {
|
36
|
+
setFixtures('<div id="telephony-widget" />');
|
37
|
+
agent = new Zest.Telephony.Models.Agent();
|
38
|
+
|
39
|
+
spyOn(agent, 'isValid');
|
40
|
+
|
41
|
+
Zest.Telephony.Application.init(agent);
|
42
|
+
});
|
43
|
+
|
44
|
+
it("validates agent's data", function() {
|
45
|
+
expect(agent.isValid).toHaveBeenCalled();
|
46
|
+
});
|
47
|
+
});
|
48
|
+
|
49
|
+
describe("#setupAgent", function() {
|
50
|
+
beforeEach(function() {
|
51
|
+
setFixtures('<div id="telephony-widget" ' +
|
52
|
+
'data-csr_id="123" data-csr_type="A" data-agent_name="Some Agent" ' +
|
53
|
+
'data-agent_phone_number="555-555-1234" data-agent_phone_ext="010" ' +
|
54
|
+
'data-agent_sip_number="0432" data-agent_call_center_name="Some Place" ' +
|
55
|
+
'data-agent_transferable_agents="[1]"' +
|
56
|
+
'data-agent_generate_caller_id="true"' +
|
57
|
+
'data-agent_phone_type="phone" />');
|
58
|
+
});
|
59
|
+
|
60
|
+
it("returns the agent with attributes from #telephony-widget container", function() {
|
61
|
+
agent = Zest.Telephony.Application.setupAgent();
|
62
|
+
|
63
|
+
expect(agent.get('csr_generate_caller_id')).toBeTruthy();
|
64
|
+
expect(agent.get('csr_name')).toEqual('Some Agent');
|
65
|
+
expect(agent.get('csr_phone_ext')).toEqual('010');
|
66
|
+
expect(agent.get('csr_type')).toEqual("A");
|
67
|
+
expect(agent.get('csr_sip_number')).toEqual('0432');
|
68
|
+
expect(agent.get('csr_call_center_name')).toEqual("Some Place");
|
69
|
+
expect(agent.get('csr_phone_number')).toEqual("555-555-1234");
|
70
|
+
expect(agent.get('csr_transferable_agents')).toEqual("[1]");
|
71
|
+
expect(agent.get('csr_phone_type')).toEqual("phone");
|
72
|
+
});
|
73
|
+
});
|
74
|
+
});
|
@@ -0,0 +1,626 @@
|
|
1
|
+
describe("Zest.Telephony.Views.ConversationView", function() {
|
2
|
+
describe("#render", function() {
|
3
|
+
var view;
|
4
|
+
|
5
|
+
beforeEach(function() {
|
6
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
7
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
8
|
+
view.render();
|
9
|
+
});
|
10
|
+
|
11
|
+
it("displays conversation controls", function() {
|
12
|
+
expect(view.el).toContain("input[name=number]");
|
13
|
+
expect(view.el).toContain("button.initiate-conversation");
|
14
|
+
});
|
15
|
+
|
16
|
+
it("does not display a conversation message", function() {
|
17
|
+
expect(view.$('.friendly-message')).toHaveText("");
|
18
|
+
});
|
19
|
+
});
|
20
|
+
|
21
|
+
describe('event handling', function() {
|
22
|
+
describe("receiving an outbound telephony:Connect event", function() {
|
23
|
+
var view;
|
24
|
+
|
25
|
+
beforeEach(function() {
|
26
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
27
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
28
|
+
view.render();
|
29
|
+
view.conversation.set({state: 'connecting'});
|
30
|
+
var data = {
|
31
|
+
conversation_id: 10,
|
32
|
+
conversation_state: "connecting",
|
33
|
+
call_id: 20,
|
34
|
+
number: "1111111111"
|
35
|
+
};
|
36
|
+
|
37
|
+
$(document).trigger('telephony:Connect', data);
|
38
|
+
});
|
39
|
+
|
40
|
+
it("displays a ringing message", function() {
|
41
|
+
expect(view.el).toHaveText(/Ringing/);
|
42
|
+
});
|
43
|
+
|
44
|
+
it("displays the phone number", function() {
|
45
|
+
expect(view.$("[name='number']")).toHaveValue("1111111111");
|
46
|
+
});
|
47
|
+
});
|
48
|
+
|
49
|
+
describe("receiving a telephony:InitializeWidget event", function () {
|
50
|
+
var view;
|
51
|
+
|
52
|
+
beforeEach(function () {
|
53
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
54
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
55
|
+
view.render();
|
56
|
+
|
57
|
+
view.friendlyMessage = "Call Ended";
|
58
|
+
$(document).trigger('telephony:InitializeWidget');
|
59
|
+
});
|
60
|
+
|
61
|
+
it("clears the friendly message", function () {
|
62
|
+
expect(view.$(".friendly-message")).toHaveText("");
|
63
|
+
});
|
64
|
+
});
|
65
|
+
|
66
|
+
describe("receiving an inbound telephony:Connect event", function () {
|
67
|
+
var view;
|
68
|
+
|
69
|
+
beforeEach(function () {
|
70
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
71
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
72
|
+
view.render();
|
73
|
+
var data = {
|
74
|
+
conversation_id: 10,
|
75
|
+
conversation_state: "connecting",
|
76
|
+
number: "1111111111",
|
77
|
+
call_id: 20
|
78
|
+
};
|
79
|
+
|
80
|
+
$(document).trigger('telephony:Connect', data);
|
81
|
+
});
|
82
|
+
|
83
|
+
it("displays the inbound number", function () {
|
84
|
+
expect(view.$("[name='number']")).toHaveValue("1111111111");
|
85
|
+
});
|
86
|
+
});
|
87
|
+
|
88
|
+
describe("receiving a telephony:Start event", function() {
|
89
|
+
var view;
|
90
|
+
|
91
|
+
beforeEach(function() {
|
92
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
93
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
94
|
+
view.render();
|
95
|
+
var data = {
|
96
|
+
conversation_id: 10,
|
97
|
+
conversation_state: "connecting",
|
98
|
+
call_id: 20,
|
99
|
+
number: "1111111111"
|
100
|
+
};
|
101
|
+
|
102
|
+
$(document).trigger('telephony:Start', data);
|
103
|
+
});
|
104
|
+
|
105
|
+
it("displays a connected message", function() {
|
106
|
+
expect(view.el).toHaveText(/Connected/);
|
107
|
+
});
|
108
|
+
|
109
|
+
it("displays the phone number", function() {
|
110
|
+
expect(view.$("[name='number']")).toHaveValue("1111111111");
|
111
|
+
});
|
112
|
+
});
|
113
|
+
|
114
|
+
describe("receiving a telephony:Terminate event", function() {
|
115
|
+
var view;
|
116
|
+
|
117
|
+
beforeEach(function() {
|
118
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
119
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
120
|
+
view.conversation.set({ state: 'on_a_call',
|
121
|
+
isCancelable: true });
|
122
|
+
view.render();
|
123
|
+
|
124
|
+
var data = {
|
125
|
+
conversation_id: 10
|
126
|
+
};
|
127
|
+
|
128
|
+
runs(function() {
|
129
|
+
view.friendlyMessageFadeOutTime = 100;
|
130
|
+
$(document).trigger('telephony:Terminate', data);
|
131
|
+
});
|
132
|
+
|
133
|
+
waitsFor(function() {
|
134
|
+
return view.$('.friendly-message').css('opacity') < 1;
|
135
|
+
}, "didn't fade out the call ended message");
|
136
|
+
});
|
137
|
+
|
138
|
+
it("fades outs a call ended message", function() {
|
139
|
+
runs(function() {
|
140
|
+
expect(view.el).toHaveText(/Call Ended/);
|
141
|
+
});
|
142
|
+
});
|
143
|
+
|
144
|
+
it('re-displays the call button', function() {
|
145
|
+
runs(function() {
|
146
|
+
expect(view.$('.initiate-conversation')).not.toHaveClass('hidden');
|
147
|
+
});
|
148
|
+
});
|
149
|
+
|
150
|
+
it("does not display the phone number", function() {
|
151
|
+
runs(function() {
|
152
|
+
expect(view.$("[name='number']")).toHaveValue("");
|
153
|
+
});
|
154
|
+
});
|
155
|
+
|
156
|
+
it("does not display the cancel transfer button", function() {
|
157
|
+
runs(function() {
|
158
|
+
expect(view.$('.cancel-transfer')).toHaveClass('hidden');
|
159
|
+
});
|
160
|
+
});
|
161
|
+
});
|
162
|
+
|
163
|
+
describe("receiving a telephony:InitiateOneStepTransfer event", function() {
|
164
|
+
var view;
|
165
|
+
|
166
|
+
beforeEach(function() {
|
167
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
168
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
169
|
+
view.render();
|
170
|
+
});
|
171
|
+
|
172
|
+
describe("for agent 1", function() {
|
173
|
+
beforeEach(function() {
|
174
|
+
var data = {
|
175
|
+
transferrer: true,
|
176
|
+
agent_name: "Some Name",
|
177
|
+
agent_ext: 10,
|
178
|
+
agent_type: 'A',
|
179
|
+
number: "1111111111"
|
180
|
+
};
|
181
|
+
|
182
|
+
$(view.el).text('Connected');
|
183
|
+
$(document).trigger('telephony:InitiateOneStepTransfer', data);
|
184
|
+
});
|
185
|
+
|
186
|
+
it("does not display a one step transfer initiated message", function() {
|
187
|
+
expect(view.el).toHaveText(/Connected/);
|
188
|
+
});
|
189
|
+
});
|
190
|
+
|
191
|
+
describe("for agent 2", function() {
|
192
|
+
beforeEach(function() {
|
193
|
+
var data = {
|
194
|
+
transferrer: false,
|
195
|
+
agent_name: "Another Name",
|
196
|
+
agent_ext: 11,
|
197
|
+
agent_type: 'A',
|
198
|
+
number: "1111111112"
|
199
|
+
};
|
200
|
+
|
201
|
+
$(document).trigger('telephony:InitiateOneStepTransfer', data);
|
202
|
+
});
|
203
|
+
|
204
|
+
it("displays a one step transfer initiated message", function() {
|
205
|
+
expect(view.el).toHaveText(/1-step transfer from A - Another Name x11/);
|
206
|
+
});
|
207
|
+
|
208
|
+
it("displays the phone number", function() {
|
209
|
+
expect(view.$("[name='number']")).toHaveValue("1111111112");
|
210
|
+
});
|
211
|
+
});
|
212
|
+
});
|
213
|
+
|
214
|
+
describe("receiving a telephony:CompleteOneStepTransfer event", function() {
|
215
|
+
var view;
|
216
|
+
|
217
|
+
beforeEach(function() {
|
218
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
219
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
220
|
+
view.render();
|
221
|
+
var data = {
|
222
|
+
agent_name: "Some Name",
|
223
|
+
agent_ext: 10,
|
224
|
+
agent_type: 'A',
|
225
|
+
number: "1111111111"
|
226
|
+
};
|
227
|
+
|
228
|
+
$(document).trigger('telephony:CompleteOneStepTransfer', data);
|
229
|
+
});
|
230
|
+
|
231
|
+
it("displays a one step transfer completed message", function() {
|
232
|
+
expect(view.el).toHaveText(/Connected/);
|
233
|
+
});
|
234
|
+
|
235
|
+
it("displays the phone number", function() {
|
236
|
+
expect(view.$("[name='number']")).toHaveValue("1111111111");
|
237
|
+
});
|
238
|
+
});
|
239
|
+
|
240
|
+
describe("receiving a telephony:FailOneStepTransfer event", function() {
|
241
|
+
var view;
|
242
|
+
|
243
|
+
beforeEach(function() {
|
244
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
245
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
246
|
+
view.render();
|
247
|
+
});
|
248
|
+
|
249
|
+
describe('for agent1', function() {
|
250
|
+
beforeEach(function() {
|
251
|
+
var data = {
|
252
|
+
transferrer: true,
|
253
|
+
agent_name: "Some Name",
|
254
|
+
agent_ext: 10,
|
255
|
+
agent_type: 'A',
|
256
|
+
number: "1111111111"
|
257
|
+
};
|
258
|
+
|
259
|
+
$(document).trigger('telephony:FailOneStepTransfer', data);
|
260
|
+
});
|
261
|
+
|
262
|
+
it("does not display a one step transfer failed message", function() {
|
263
|
+
expect(view.el).not.toHaveText(/Missed 1-step transfer/);
|
264
|
+
});
|
265
|
+
|
266
|
+
it('terminates its conversation', function() {
|
267
|
+
expect(view.conversation.get('state')).toEqual('terminated');
|
268
|
+
});
|
269
|
+
});
|
270
|
+
|
271
|
+
describe('for agent2', function() {
|
272
|
+
beforeEach(function() {
|
273
|
+
var data = {
|
274
|
+
transferrer: false,
|
275
|
+
agent_name: "Some Name",
|
276
|
+
agent_ext: 10,
|
277
|
+
agent_type: 'A',
|
278
|
+
number: "1111111111"
|
279
|
+
};
|
280
|
+
|
281
|
+
$(document).trigger('telephony:FailOneStepTransfer', data);
|
282
|
+
});
|
283
|
+
|
284
|
+
it("displays a one step transfer failed message", function() {
|
285
|
+
expect(view.el).toHaveText(/Missed 1-step transfer from A - Some Name x10/);
|
286
|
+
});
|
287
|
+
|
288
|
+
it('terminates its conversation', function() {
|
289
|
+
expect(view.conversation.get('state')).toEqual('terminated');
|
290
|
+
});
|
291
|
+
});
|
292
|
+
});
|
293
|
+
|
294
|
+
describe("receiving a telephony:InitiateTwoStepTransfer event", function() {
|
295
|
+
var view;
|
296
|
+
|
297
|
+
beforeEach(function() {
|
298
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
299
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
300
|
+
view.render();
|
301
|
+
});
|
302
|
+
|
303
|
+
describe("for the initiator of the transfer", function() {
|
304
|
+
beforeEach(function() {
|
305
|
+
var data = {
|
306
|
+
transferrer: true,
|
307
|
+
agent_name: "Some Name",
|
308
|
+
agent_ext: 10,
|
309
|
+
agent_type: 'A',
|
310
|
+
number: "1111111111"
|
311
|
+
};
|
312
|
+
|
313
|
+
$(document).trigger('telephony:InitiateTwoStepTransfer', data);
|
314
|
+
});
|
315
|
+
|
316
|
+
it("displays a two step transfer initiated message", function() {
|
317
|
+
expect(view.el).toHaveText(/Ringing A - Some Name x10/);
|
318
|
+
});
|
319
|
+
|
320
|
+
it("displays the phone number", function() {
|
321
|
+
expect(view.$("[name='number']")).toHaveValue("1111111111");
|
322
|
+
});
|
323
|
+
});
|
324
|
+
|
325
|
+
describe("for the recipient of the transfer", function() {
|
326
|
+
beforeEach(function() {
|
327
|
+
var data = {
|
328
|
+
transferrer: false,
|
329
|
+
agent_name: "Some Name",
|
330
|
+
agent_ext: 10,
|
331
|
+
agent_type: 'A',
|
332
|
+
number: "1111111111"
|
333
|
+
};
|
334
|
+
|
335
|
+
$(document).trigger('telephony:InitiateTwoStepTransfer', data);
|
336
|
+
});
|
337
|
+
|
338
|
+
it("displays a two step transfer initiated message", function() {
|
339
|
+
expect(view.el).toHaveText(/2-step transfer from A - Some Name x10/);
|
340
|
+
});
|
341
|
+
|
342
|
+
it("displays the phone number", function() {
|
343
|
+
expect(view.$("[name='number']")).toHaveValue("1111111111");
|
344
|
+
});
|
345
|
+
});
|
346
|
+
});
|
347
|
+
|
348
|
+
describe("receiving a telephony:FailTwoStepTransfer event", function() {
|
349
|
+
var view;
|
350
|
+
|
351
|
+
beforeEach(function() {
|
352
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
353
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
354
|
+
view.render();
|
355
|
+
});
|
356
|
+
|
357
|
+
describe('for agent1', function() {
|
358
|
+
beforeEach(function() {
|
359
|
+
var data = {
|
360
|
+
transferrer: true,
|
361
|
+
agent_name: "Agent 2",
|
362
|
+
agent_ext: 10,
|
363
|
+
number: "1111111111"
|
364
|
+
};
|
365
|
+
|
366
|
+
runs(function() {
|
367
|
+
view.friendlyMessageFadeOutTime = 100;
|
368
|
+
$(document).trigger('telephony:FailTwoStepTransfer', data);
|
369
|
+
});
|
370
|
+
|
371
|
+
waitsFor(function() {
|
372
|
+
return view.$('.friendly-message').css('opacity') < 1;
|
373
|
+
}, "didn't fade out the two step transfer failed message", 1000);
|
374
|
+
});
|
375
|
+
|
376
|
+
it("displays a two step transfer failed message", function() {
|
377
|
+
expect(view.$('.friendly-message')).toHaveText("No Answer - Agent 2 x10");
|
378
|
+
});
|
379
|
+
|
380
|
+
it("displays agent2's phone number", function() {
|
381
|
+
runs(function() {
|
382
|
+
expect(view.$("[name='number']")).toHaveValue("1111111111");
|
383
|
+
});
|
384
|
+
});
|
385
|
+
});
|
386
|
+
|
387
|
+
describe('for agent2', function() {
|
388
|
+
beforeEach(function() {
|
389
|
+
var data = {
|
390
|
+
transferrer: false,
|
391
|
+
agent_name: "Other Name",
|
392
|
+
agent_ext: 11,
|
393
|
+
agent_type: 'B',
|
394
|
+
number: "1111111111"
|
395
|
+
};
|
396
|
+
|
397
|
+
$(document).trigger('telephony:FailTwoStepTransfer', data);
|
398
|
+
});
|
399
|
+
|
400
|
+
it("displays a two step transfer failed message", function() {
|
401
|
+
expect(view.el).toHaveText(/Missed 2-step transfer from B - Other Name x11/);
|
402
|
+
});
|
403
|
+
});
|
404
|
+
});
|
405
|
+
|
406
|
+
describe("receiving a telephony:CompleteTwoStepTransfer event", function() {
|
407
|
+
var view;
|
408
|
+
|
409
|
+
beforeEach(function() {
|
410
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
411
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
412
|
+
view.render();
|
413
|
+
var data = {
|
414
|
+
agent_name: "Some Name",
|
415
|
+
agent_ext: 10,
|
416
|
+
agent_type: 'A',
|
417
|
+
number: "1111111111"
|
418
|
+
};
|
419
|
+
|
420
|
+
$(document).trigger('telephony:CompleteTwoStepTransfer', data);
|
421
|
+
});
|
422
|
+
|
423
|
+
it("displays a two step transfer completed message", function() {
|
424
|
+
expect(view.el).toHaveText(/Connected to A - Some Name x10/);
|
425
|
+
});
|
426
|
+
|
427
|
+
it("displays the phone number", function() {
|
428
|
+
expect(view.$("[name='number']")).toHaveValue("1111111111");
|
429
|
+
});
|
430
|
+
});
|
431
|
+
|
432
|
+
describe("receiving a telephony:LeaveTwoStepTransfer event", function() {
|
433
|
+
var view;
|
434
|
+
|
435
|
+
beforeEach(function() {
|
436
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
437
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
438
|
+
view.render();
|
439
|
+
var data = {
|
440
|
+
number: "1111111111"
|
441
|
+
};
|
442
|
+
|
443
|
+
$(document).trigger('telephony:LeaveTwoStepTransfer', data);
|
444
|
+
});
|
445
|
+
|
446
|
+
it("displays a leave two step transfer message", function() {
|
447
|
+
expect(view.el).toHaveText(/Connected/);
|
448
|
+
});
|
449
|
+
|
450
|
+
it("displays the phone number", function() {
|
451
|
+
expect(view.$("[name='number']")).toHaveValue("1111111111");
|
452
|
+
});
|
453
|
+
});
|
454
|
+
|
455
|
+
describe("receiving a telephony:CustomerLeftTwoStepTransfer event", function() {
|
456
|
+
var view;
|
457
|
+
|
458
|
+
beforeEach(function() {
|
459
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
460
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
461
|
+
view.render();
|
462
|
+
var data = {
|
463
|
+
agent_name: "Some Name",
|
464
|
+
agent_ext: 10,
|
465
|
+
agent_type: 'A',
|
466
|
+
number: "1111111111"
|
467
|
+
};
|
468
|
+
|
469
|
+
$(document).trigger('telephony:CustomerLeftTwoStepTransfer', data);
|
470
|
+
});
|
471
|
+
|
472
|
+
it("displays a customer left two step transfer message", function() {
|
473
|
+
expect(view.el).toHaveText(/Connected to A - Some Name x10/);
|
474
|
+
});
|
475
|
+
|
476
|
+
it("displays the phone number", function() {
|
477
|
+
expect(view.$("[name='number']")).toHaveValue("1111111111");
|
478
|
+
});
|
479
|
+
});
|
480
|
+
|
481
|
+
describe("receiving a telephony:ClickToCall event", function() {
|
482
|
+
var view;
|
483
|
+
|
484
|
+
beforeEach(function() {
|
485
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
486
|
+
view = new Zest.Telephony.Views.ConversationView({el: $("#conversation-wrapper")});
|
487
|
+
view.render();
|
488
|
+
var data = {
|
489
|
+
loan_id: '1',
|
490
|
+
to: '3003004002',
|
491
|
+
to_id: '9',
|
492
|
+
to_type: 'borrower',
|
493
|
+
callee_name: 'Some Name'
|
494
|
+
};
|
495
|
+
|
496
|
+
$(document).trigger('telephony:ClickToCall', data);
|
497
|
+
});
|
498
|
+
|
499
|
+
it("displays the callee name", function() {
|
500
|
+
expect(view.el).toHaveText(/Some Name/);
|
501
|
+
});
|
502
|
+
|
503
|
+
it("updates the conversation", function() {
|
504
|
+
var convo = view.conversation;
|
505
|
+
expect(convo.get('to')).toBe('3003004002');
|
506
|
+
expect(convo.get('toId')).toBe('9');
|
507
|
+
expect(convo.get('toType')).toBe('borrower');
|
508
|
+
});
|
509
|
+
|
510
|
+
it("displays the phone number", function() {
|
511
|
+
expect(view.$("[name='number']")).toHaveValue("3003004002");
|
512
|
+
});
|
513
|
+
});
|
514
|
+
|
515
|
+
describe('receiving a transferFailed event from its TransferView subview', function() {
|
516
|
+
var view;
|
517
|
+
|
518
|
+
beforeEach(function() {
|
519
|
+
setFixtures('<div id="conversation-wrapper"></div>');
|
520
|
+
view = new Zest.Telephony.Views.ConversationView();
|
521
|
+
view.render();
|
522
|
+
|
523
|
+
$(document).trigger('transferFailed', 'Agent is unavailable');
|
524
|
+
});
|
525
|
+
|
526
|
+
it('displays a transfer failed message', function() {
|
527
|
+
expect(view.$('.friendly-message')).toHaveText('Agent is unavailable');
|
528
|
+
});
|
529
|
+
});
|
530
|
+
});
|
531
|
+
|
532
|
+
describe("submitting a conversation", function() {
|
533
|
+
var view;
|
534
|
+
|
535
|
+
beforeEach(function() {
|
536
|
+
setFixtures('<div id="conversation-wrapper" />');
|
537
|
+
view = new Zest.Telephony.Views.ConversationView({loanId: 123});
|
538
|
+
view.conversation.set({ state: 'not_initiated' });
|
539
|
+
view.render();
|
540
|
+
jasmine.Ajax.useMock();
|
541
|
+
});
|
542
|
+
|
543
|
+
describe('with a valid phone number', function() {
|
544
|
+
beforeEach(function() {
|
545
|
+
view.$('input[name=number]').val("300-300-4000");
|
546
|
+
});
|
547
|
+
|
548
|
+
it("creates a new conversation", function() {
|
549
|
+
view.$('button.initiate-conversation').click();
|
550
|
+
var request = mostRecentAjaxRequest();
|
551
|
+
|
552
|
+
expect(request.url).toBe('/zestphone/conversations');
|
553
|
+
expect(request.method).toBe('POST');
|
554
|
+
expect(request.params).toMatch('loan_id=123');
|
555
|
+
});
|
556
|
+
|
557
|
+
it("disables the phone number input", function() {
|
558
|
+
view.$('button.initiate-conversation').click();
|
559
|
+
|
560
|
+
expect(view.$('input[name=number]')).toBeDisabled();
|
561
|
+
expect(view.$('input[name=number]')).toHaveValue('300-300-4000');
|
562
|
+
});
|
563
|
+
|
564
|
+
it("disables the call button", function() {
|
565
|
+
view.$('button.initiate-conversation').click();
|
566
|
+
|
567
|
+
expect(view.$('button.initiate-conversation')).toBeDisabled();
|
568
|
+
});
|
569
|
+
});
|
570
|
+
|
571
|
+
describe('with an invalid phone number', function() {
|
572
|
+
beforeEach(function() {
|
573
|
+
view.conversation.set({state: "not_initiated"});
|
574
|
+
view.$('input[name=number]').val('');
|
575
|
+
view.$('button.initiate-conversation').click();
|
576
|
+
});
|
577
|
+
|
578
|
+
it('displays an error message', function() {
|
579
|
+
expect(view.$('.friendly-message')).toHaveText(/Please enter a 10-digit phone number/);
|
580
|
+
});
|
581
|
+
});
|
582
|
+
});
|
583
|
+
|
584
|
+
describe("submitting a conversation without a page reload", function() {
|
585
|
+
var view;
|
586
|
+
beforeEach(function() {
|
587
|
+
setFixtures('<div class="conversation-wrapper" />');
|
588
|
+
view = new Zest.Telephony.Views.ConversationView();
|
589
|
+
view.render();
|
590
|
+
view.$('input[name=number]').val("3003004000");
|
591
|
+
jasmine.Ajax.useMock();
|
592
|
+
});
|
593
|
+
|
594
|
+
it("creates a new conversation every time", function() {
|
595
|
+
var data = '{"id":110,"caller_call_id":238,"callee_call_id":239}';
|
596
|
+
// First call
|
597
|
+
view.$('button.initiate-conversation').click();
|
598
|
+
firstCallRequest = mostRecentAjaxRequest();
|
599
|
+
firstCallRequest.response({ status:200, responseText:data });
|
600
|
+
expect(firstCallRequest.url).toBe('/zestphone/conversations');
|
601
|
+
|
602
|
+
// Enable calling
|
603
|
+
view.conversation.set({state: 'terminated'});
|
604
|
+
// Second call
|
605
|
+
view.$('button.initiate-conversation').click();
|
606
|
+
secondCallRequest = mostRecentAjaxRequest();
|
607
|
+
expect(secondCallRequest.url).toBe('/zestphone/conversations');
|
608
|
+
});
|
609
|
+
});
|
610
|
+
|
611
|
+
describe("#disableCallControl", function() {
|
612
|
+
var view;
|
613
|
+
|
614
|
+
beforeEach(function() {
|
615
|
+
setFixtures('<div id="conversation-wrapper" />');
|
616
|
+
view = new Zest.Telephony.Views.ConversationView();
|
617
|
+
view.render();
|
618
|
+
var data = { callingDisabled: true };
|
619
|
+
view.disableCallControl(data);
|
620
|
+
});
|
621
|
+
|
622
|
+
it("disables the initiate conversation button", function() {
|
623
|
+
expect(view.$('button.initiate-conversation')).toBeDisabled();
|
624
|
+
});
|
625
|
+
});
|
626
|
+
});
|