1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
<?php
namespace callnotifier;
class CallMonitorTest extends \PHPUnit_Framework_TestCase implements Logger
{
protected $handler;
protected $calls;
public function setUp()
{
$this->calls = array();
$config = new Config();
$log = new Log();
$log->addLogger($this, array('startingCall', 'finishedCall'));
$cm = new CallMonitor($config, $log);
$this->handler = new MessageHandler($config, $log, $cm);
}
protected function loadDump($file)
{
$this->handler->config->replayFile = __DIR__ . '/../dumps/' . $file;
$source = new Source_File($this->handler->config, $this->handler);
$source->run();
}
public function log($type, $arData)
{
$this->calls[$type][] = $arData['call'];
}
public function testIntCallToInt()
{
$this->loadDump('intern-22-zu-41.bin');
$this->assertCallCount(1, 1);
$this->assertFrom('22', $this->calls['startingCall'][0]);
$this->assertTo('**41', $this->calls['startingCall'][0]);
$this->assertFrom('22', $this->calls['finishedCall'][0]);
$this->assertTo('**41', $this->calls['finishedCall'][0]);
}
public function testIntCallToExternal()
{
$this->loadDump('intern-analog-zu-handy.bin');
$this->assertCallCount(1, 1);
$this->assertFrom('40862', $this->calls['startingCall'][0]);
$this->assertTo('01634779878', $this->calls['startingCall'][0]);
$this->assertFrom('40862', $this->calls['finishedCall'][0]);
$this->assertTo('01634779878', $this->calls['finishedCall'][0]);
}
public function testExtCallToIntGroup()
{
$this->loadDump('handy-zu-gruppe.bin');
$this->assertCallCount(1, 1);
$this->assertFrom('01634779878', $this->calls['startingCall'][0]);
$this->assertTo('40862', $this->calls['startingCall'][0]);
$this->assertFrom('01634779878', $this->calls['finishedCall'][0]);
$this->assertTo('40862', $this->calls['finishedCall'][0]);
}
protected function assertCallCount($starting, $finished)
{
$this->assertCount(
$starting, $this->calls['startingCall'],
'Number of starting calls does not match'
);
$this->assertCount(
$finished, $this->calls['finishedCall'],
'Number of finished calls does not match'
);
}
protected function assertFrom($number, CallMonitor_Call $call)
{
$this->assertSame(
$number, $call->from,
'Call "from" number does not match'
);
}
protected function assertTo($number, CallMonitor_Call $call)
{
$this->assertSame(
$number, $call->to,
'Call "to" number does not match'
);
}
}
?>
|