123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508 |
- require 'test_helper'
- require 'rexml/document'
- class IntegrationCtiControllerTest < ActionDispatch::IntegrationTest
- setup do
- Cti::Log.destroy_all
- Setting.set('cti_integration', true)
- Setting.set('cti_config', {
- outbound: {
- routing_table: [
- {
- dest: '41*',
- caller_id: '41715880339000',
- },
- {
- dest: '491714000000',
- caller_id: '41715880339000',
- },
- ],
- default_caller_id: '4930777000000',
- },
- inbound: {
- block_caller_ids: [
- {
- caller_id: '491715000000',
- note: 'some note',
- }
- ],
- notify_user_ids: {
- 2 => true,
- 4 => false,
- },
- }
- },)
- groups = Group.where(name: 'Users')
- roles = Role.where(name: %w[Agent])
- agent = User.create_or_update(
- login: 'cti-agent@example.com',
- firstname: 'E',
- lastname: 'S',
- email: 'cti-agent@example.com',
- password: 'agentpw',
- active: true,
- roles: roles,
- groups: groups,
- updated_by_id: 1,
- created_by_id: 1,
- )
- customer1 = User.create_or_update(
- login: 'ticket-caller_id_cti-customer1@example.com',
- firstname: 'CallerId',
- lastname: 'Customer1',
- email: 'ticket-caller_id_cti-customer1@example.com',
- password: 'customerpw',
- active: true,
- phone: '+49 99999 222222',
- fax: '+49 99999 222223',
- mobile: '+4912347114711',
- note: 'Phone at home: +49 99999 222224',
- updated_by_id: 1,
- created_by_id: 1,
- )
- customer2 = User.create_or_update(
- login: 'ticket-caller_id_cti-customer2@example.com',
- firstname: 'CallerId',
- lastname: 'Customer2',
- email: 'ticket-caller_id_cti-customer2@example.com',
- password: 'customerpw',
- active: true,
- phone: '+49 99999 222222 2',
- updated_by_id: 1,
- created_by_id: 1,
- )
- customer3 = User.create_or_update(
- login: 'ticket-caller_id_cti-customer3@example.com',
- firstname: 'CallerId',
- lastname: 'Customer3',
- email: 'ticket-caller_id_cti-customer3@example.com',
- password: 'customerpw',
- active: true,
- phone: '+49 99999 222222 2',
- updated_by_id: 1,
- created_by_id: 1,
- )
- Cti::CallerId.rebuild
- end
- test 'token check' do
- params = 'event=newCall&direction=in&from=4912347114711&to=4930600000000&call_id=4991155921769858278-1&user%5B%5D=user+1&user%5B%5D=user+2'
- post '/api/v1/cti/not_existing_token', params: params
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('Invalid token, please contact your admin!', result['error'])
- end
- test 'basic call' do
- token = Setting.get('cti_token')
- # inbound - I
- params = 'event=newCall&direction=in&from=4912347114711&to=4930600000000&call_id=4991155921769858278-1&user%5B%5D=user+1&user%5B%5D=user+2'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result.blank?)
- # inbound - II - block caller
- params = 'event=newCall&direction=in&from=491715000000&to=4930600000000&call_id=4991155921769858278-2&user%5B%5D=user+1&user%5B%5D=user+2'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('reject', result['action'])
- assert_equal('busy', result['reason'])
- # outbound - I - set default_caller_id
- params = 'event=newCall&direction=out&from=4930600000000&to=4912347114711&call_id=8621106404543334274-3&user%5B%5D=user+1'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('dial', result['action'])
- assert_equal('4912347114711', result['number'])
- assert_equal('4930777000000', result['caller_id'])
- # outbound - II - set caller_id based on routing_table by explicite number
- params = 'event=newCall&direction=out&from=4930600000000&to=491714000000&call_id=8621106404543334274-4&user%5B%5D=user+1'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('dial', result['action'])
- assert_equal('491714000000', result['number'])
- assert_equal('41715880339000', result['caller_id'])
- # outbound - III - set caller_id based on routing_table by 41*
- params = 'event=newCall&direction=out&from=4930600000000&to=4147110000000&call_id=8621106404543334274-5&user%5B%5D=user+1'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('dial', result['action'])
- assert_equal('4147110000000', result['number'])
- assert_equal('41715880339000', result['caller_id'])
- # no config
- Setting.set('cti_config', {})
- params = 'event=newCall&direction=in&from=4912347114711&to=4930600000000&call_id=4991155921769858278-6&user%5B%5D=user+1&user%5B%5D=user+2'
- post "/api/v1/cti/#{token}", params: params
- assert_response(422)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('Feature not configured, please contact your admin!', result['error'])
- end
- test 'log call' do
- token = Setting.get('cti_token')
- # outbound - I - new call
- params = 'event=newCall&direction=out&from=4930600000000&to=4912347114711&call_id=1234567890-1&user%5B%5D=user+1'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-1')
- assert(log)
- assert_equal('4930777000000', log.from)
- assert_equal('4912347114711', log.to)
- assert_equal('out', log.direction)
- assert_equal('user 1', log.from_comment)
- assert_equal('CallerId Customer1', log.to_comment)
- assert_nil(log.comment)
- assert_equal('newCall', log.state)
- assert_equal(true, log.done)
- assert(log.initialized_at)
- assert_nil(log.start_at)
- assert_nil(log.end_at)
- assert_nil(log.duration_waiting_time)
- assert_nil(log.duration_talking_time)
- # outbound - I - hangup by agent
- params = 'event=hangup&direction=out&call_id=1234567890-1&cause=cancel'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-1')
- assert(log)
- assert_equal('4930777000000', log.from)
- assert_equal('4912347114711', log.to)
- assert_equal('out', log.direction)
- assert_equal('user 1', log.from_comment)
- assert_equal('CallerId Customer1', log.to_comment)
- assert_equal('cancel', log.comment)
- assert_equal('hangup', log.state)
- assert_equal(true, log.done)
- assert(log.initialized_at)
- assert_nil(log.start_at)
- assert(log.end_at)
- assert(log.duration_waiting_time)
- assert_nil(log.duration_talking_time)
- # outbound - II - new call
- params = 'event=newCall&direction=out&from=4930600000000&to=4912347114711&call_id=1234567890-2&user%5B%5D=user+1'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-2')
- assert(log)
- assert_equal('4930777000000', log.from)
- assert_equal('4912347114711', log.to)
- assert_equal('out', log.direction)
- assert_equal('user 1', log.from_comment)
- assert_equal('CallerId Customer1', log.to_comment)
- assert_nil(log.comment)
- assert_equal('newCall', log.state)
- assert_equal(true, log.done)
- assert(log.initialized_at)
- assert_nil(log.start_at)
- assert_nil(log.end_at)
- assert_nil(log.duration_waiting_time)
- assert_nil(log.duration_talking_time)
- # outbound - II - answer by customer
- params = 'event=answer&direction=out&call_id=1234567890-2&from=4930600000000&to=4912347114711'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-2')
- assert(log)
- assert_equal('4930777000000', log.from)
- assert_equal('4912347114711', log.to)
- assert_equal('out', log.direction)
- assert_equal('user 1', log.from_comment)
- assert_equal('CallerId Customer1', log.to_comment)
- assert_nil(log.comment)
- assert_equal('answer', log.state)
- assert_equal(true, log.done)
- assert(log.initialized_at)
- assert(log.start_at)
- assert_nil(log.end_at)
- assert(log.duration_waiting_time)
- assert_nil(log.duration_talking_time)
- # outbound - II - hangup by customer
- params = 'event=hangup&direction=out&call_id=1234567890-2&cause=normalClearing&from=4930600000000&to=4912347114711'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-2')
- assert(log)
- assert_equal('4930777000000', log.from)
- assert_equal('4912347114711', log.to)
- assert_equal('out', log.direction)
- assert_equal('user 1', log.from_comment)
- assert_equal('CallerId Customer1', log.to_comment)
- assert_equal('normalClearing', log.comment)
- assert_equal('hangup', log.state)
- assert_equal(true, log.done)
- assert(log.initialized_at)
- assert(log.start_at)
- assert(log.end_at)
- assert(log.duration_waiting_time)
- assert(log.duration_talking_time)
- # inbound - I - new call
- params = 'event=newCall&direction=in&to=4930600000000&from=4912347114711&call_id=1234567890-3&user%5B%5D=user+1'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-3')
- assert(log)
- assert_equal('4930600000000', log.to)
- assert_equal('4912347114711', log.from)
- assert_equal('in', log.direction)
- assert_equal('user 1', log.to_comment)
- assert_equal('CallerId Customer1', log.from_comment)
- assert_nil(log.comment)
- assert_equal('newCall', log.state)
- assert_equal(false, log.done)
- assert(log.initialized_at)
- assert_nil(log.start_at)
- assert_nil(log.end_at)
- assert_nil(log.duration_waiting_time)
- assert_nil(log.duration_talking_time)
- # inbound - I - answer by customer
- params = 'event=answer&direction=in&call_id=1234567890-3&to=4930600000000&from=4912347114711'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-3')
- assert(log)
- assert_equal('4930600000000', log.to)
- assert_equal('4912347114711', log.from)
- assert_equal('in', log.direction)
- assert_equal('user 1', log.to_comment)
- assert_equal('CallerId Customer1', log.from_comment)
- assert_nil(log.comment)
- assert_equal('answer', log.state)
- assert_equal(true, log.done)
- assert(log.initialized_at)
- assert(log.start_at)
- assert_nil(log.end_at)
- assert(log.duration_waiting_time)
- assert_nil(log.duration_talking_time)
- # inbound - I - hangup by customer
- params = 'event=hangup&direction=in&call_id=1234567890-3&cause=normalClearing&to=4930600000000&from=4912347114711'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-3')
- assert(log)
- assert_equal('4930600000000', log.to)
- assert_equal('4912347114711', log.from)
- assert_equal('in', log.direction)
- assert_equal('user 1', log.to_comment)
- assert_equal('CallerId Customer1', log.from_comment)
- assert_equal('normalClearing', log.comment)
- assert_equal('hangup', log.state)
- assert_equal(true, log.done)
- assert(log.initialized_at)
- assert(log.start_at)
- assert(log.end_at)
- assert(log.duration_waiting_time)
- assert(log.duration_talking_time)
- # inbound - II - new call
- params = 'event=newCall&direction=in&to=4930600000000&from=4912347114711&call_id=1234567890-4&user%5B%5D=user+1,user+2'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-4')
- assert(log)
- assert_equal('4930600000000', log.to)
- assert_equal('4912347114711', log.from)
- assert_equal('in', log.direction)
- assert_equal('user 1,user 2', log.to_comment)
- assert_equal('CallerId Customer1', log.from_comment)
- assert_nil(log.comment)
- assert_equal('newCall', log.state)
- assert_equal(false, log.done)
- assert(log.initialized_at)
- assert_nil(log.start_at)
- assert_nil(log.end_at)
- assert_nil(log.duration_waiting_time)
- assert_nil(log.duration_talking_time)
- # inbound - II - answer by voicemail
- params = 'event=answer&direction=in&call_id=1234567890-4&to=4930600000000&from=4912347114711&user=voicemail'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-4')
- assert(log)
- assert_equal('4930600000000', log.to)
- assert_equal('4912347114711', log.from)
- assert_equal('in', log.direction)
- assert_equal('voicemail', log.to_comment)
- assert_equal('CallerId Customer1', log.from_comment)
- assert_nil(log.comment)
- assert_equal('answer', log.state)
- assert_equal(true, log.done)
- assert(log.initialized_at)
- assert(log.start_at)
- assert_nil(log.end_at)
- assert(log.duration_waiting_time)
- assert_nil(log.duration_talking_time)
- # inbound - II - hangup by customer
- params = 'event=hangup&direction=in&call_id=1234567890-4&cause=normalClearing&to=4930600000000&from=4912347114711'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-4')
- assert(log)
- assert_equal('4930600000000', log.to)
- assert_equal('4912347114711', log.from)
- assert_equal('in', log.direction)
- assert_equal('voicemail', log.to_comment)
- assert_equal('CallerId Customer1', log.from_comment)
- assert_equal('normalClearing', log.comment)
- assert_equal('hangup', log.state)
- assert_equal(false, log.done)
- assert(log.initialized_at)
- assert(log.start_at)
- assert(log.end_at)
- assert(log.duration_waiting_time)
- assert(log.duration_talking_time)
- # inbound - III - new call
- params = 'event=newCall&direction=in&to=4930600000000&from=4912347114711&call_id=1234567890-5&user%5B%5D=user+1,user+2'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-5')
- assert(log)
- assert_equal('4930600000000', log.to)
- assert_equal('4912347114711', log.from)
- assert_equal('in', log.direction)
- assert_equal('user 1,user 2', log.to_comment)
- assert_equal('CallerId Customer1', log.from_comment)
- assert_nil(log.comment)
- assert_equal('newCall', log.state)
- assert_equal(false, log.done)
- assert(log.initialized_at)
- assert_nil(log.start_at)
- assert_nil(log.end_at)
- assert_nil(log.duration_waiting_time)
- assert_nil(log.duration_talking_time)
- # inbound - III - hangup by customer
- params = 'event=hangup&direction=in&call_id=1234567890-5&cause=normalClearing&to=4930600000000&from=4912347114711'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-5')
- assert(log)
- assert_equal('4930600000000', log.to)
- assert_equal('4912347114711', log.from)
- assert_equal('in', log.direction)
- assert_equal('user 1,user 2', log.to_comment)
- assert_equal('CallerId Customer1', log.from_comment)
- assert_equal('normalClearing', log.comment)
- assert_equal('hangup', log.state)
- assert_equal(false, log.done)
- assert(log.initialized_at)
- assert_nil(log.start_at)
- assert(log.end_at)
- assert(log.duration_waiting_time)
- assert_nil(log.duration_talking_time)
- # inbound - IV - new call
- params = 'event=newCall&direction=in&to=4930600000000&from=49999992222222&call_id=1234567890-6&user%5B%5D=user+1,user+2'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-6')
- assert(log)
- assert_equal('4930600000000', log.to)
- assert_equal('49999992222222', log.from)
- assert_equal('in', log.direction)
- assert_equal('user 1,user 2', log.to_comment)
- assert_equal('CallerId Customer3,CallerId Customer2', log.from_comment)
- assert_not(log.preferences['to'])
- assert(log.preferences['from'])
- assert_nil(log.comment)
- assert_equal('newCall', log.state)
- assert_equal(false, log.done)
- assert(log.initialized_at)
- assert_nil(log.start_at)
- assert_nil(log.end_at)
- assert_nil(log.duration_waiting_time)
- assert_nil(log.duration_talking_time)
- # inbound - IV - new call
- params = 'event=newCall&direction=in&to=4930600000000&from=anonymous&call_id=1234567890-7&user%5B%5D=user+1,user+2'
- post "/api/v1/cti/#{token}", params: params
- assert_response(200)
- log = Cti::Log.find_by(call_id: '1234567890-7')
- assert(log)
- assert_equal('4930600000000', log.to)
- assert_equal('anonymous', log.from)
- assert_equal('in', log.direction)
- assert_equal('user 1,user 2', log.to_comment)
- assert_nil(log.from_comment)
- assert_not(log.preferences['to'])
- assert_not(log.preferences['from'])
- assert_nil(log.comment)
- assert_equal('newCall', log.state)
- assert_equal(false, log.done)
- assert(log.initialized_at)
- assert_nil(log.start_at)
- assert_nil(log.end_at)
- assert_nil(log.duration_waiting_time)
- assert_nil(log.duration_talking_time)
- # get caller list
- get '/api/v1/cti/log'
- assert_response(401)
- customer2 = User.lookup(login: 'ticket-caller_id_cti-customer2@example.com')
- customer3 = User.lookup(login: 'ticket-caller_id_cti-customer3@example.com')
- headers = { 'ACCEPT' => 'application/json', 'CONTENT_TYPE' => 'application/json' }
- credentials = ActionController::HttpAuthentication::Basic.encode_credentials('cti-agent@example.com', 'agentpw')
- get '/api/v1/cti/log', headers: headers.merge('Authorization' => credentials)
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(result['list'].class, Array)
- assert_equal(7, result['list'].count)
- assert(result['assets'])
- assert(result['assets']['User'])
- assert(result['assets']['User'][customer2.id.to_s])
- assert(result['assets']['User'][customer3.id.to_s])
- assert_equal('1234567890-7', result['list'][0]['call_id'])
- assert_equal('1234567890-6', result['list'][1]['call_id'])
- assert_equal('1234567890-5', result['list'][2]['call_id'])
- assert_equal('1234567890-4', result['list'][3]['call_id'])
- assert_equal('1234567890-3', result['list'][4]['call_id'])
- assert_equal('1234567890-2', result['list'][5]['call_id'])
- assert_equal('hangup', result['list'][5]['state'])
- assert_equal('4930777000000', result['list'][5]['from'])
- assert_equal('user 1', result['list'][5]['from_comment'])
- assert_equal('4912347114711', result['list'][5]['to'])
- assert_equal('CallerId Customer1', result['list'][5]['to_comment'])
- assert_equal('normalClearing', result['list'][5]['comment'])
- assert_equal('hangup', result['list'][5]['state'])
- assert_equal('1234567890-1', result['list'][6]['call_id'])
- end
- end
|