X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=t%2Fcti%2Fcall_link.t;fp=t%2Fcti%2Fcall_link.t;h=66e585177f86af3425f8374d1576aa4575bae96b;hp=994a348566dfd1a5079bc11f3dea5add535c6f3e;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44 diff --git a/t/cti/call_link.t b/t/cti/call_link.t index 994a34856..66e585177 100644 --- a/t/cti/call_link.t +++ b/t/cti/call_link.t @@ -1,4 +1,4 @@ -use Test::More tests => 9; +use Test::More tests => 17; use strict; use lib 't'; @@ -6,10 +6,8 @@ use utf8; use_ok 'SL::CTI'; -{ - no warnings 'once'; - $::lx_office_conf{cti}->{international_dialing_prefix} = '00'; -} +$::lx_office_conf{cti}->{international_dialing_prefix} = '00'; +$::lx_office_conf{cti}->{dial_command} = 'dummy'; is SL::CTI->call_link(number => '0371 5347 620'), 'controller.pl?action=CTI/call&number=03715347620'; is SL::CTI->call_link(number => '0049(0)421-22232 22'), 'controller.pl?action=CTI/call&number=00494212223222'; @@ -20,3 +18,15 @@ is SL::CTI->call_link(number => '0371 5347 620', internal => 1), 'control is SL::CTI->call_link(number => '0049(0)421-22232 22', internal => 1), 'controller.pl?action=CTI/call&number=00494212223222&internal=1'; is SL::CTI->call_link(number => '+49(0)421-22232 22', internal => 1), 'controller.pl?action=CTI/call&number=00494212223222&internal=1'; is SL::CTI->call_link(number => 'Tel: +49 40 809064 0', internal => 1), 'controller.pl?action=CTI/call&number=0049408090640&internal=1'; + +$::lx_office_conf{cti}->{dial_command} = ''; + +is SL::CTI->call_link(number => '0371 5347 620'), 'callto://03715347620'; +is SL::CTI->call_link(number => '0049(0)421-22232 22'), 'callto://00494212223222'; +is SL::CTI->call_link(number => '+49(0)421-22232 22'), 'callto://00494212223222'; +is SL::CTI->call_link(number => 'Tel: +49 40 809064 0'), 'callto://0049408090640'; + +is SL::CTI->call_link(number => '0371 5347 620', internal => 1), 'callto://03715347620'; +is SL::CTI->call_link(number => '0049(0)421-22232 22', internal => 1), 'callto://00494212223222'; +is SL::CTI->call_link(number => '+49(0)421-22232 22', internal => 1), 'callto://00494212223222'; +is SL::CTI->call_link(number => 'Tel: +49 40 809064 0', internal => 1), 'callto://0049408090640';