aboutsummaryrefslogtreecommitdiff
path: root/tests/callnotifier/CallMonitorTest.php
blob: f40f47df242130ace46973721b06c17dc6cf673e (plain)
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?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->assertOutgoing($this->calls['startingCall'][0]);
        $this->assertFrom('22', $this->calls['startingCall'][0]);
        $this->assertTo('**41', $this->calls['startingCall'][0]);

        $this->assertOutgoing($this->calls['finishedCall'][0]);
        $this->assertFrom('22', $this->calls['finishedCall'][0]);
        $this->assertTo('**41', $this->calls['finishedCall'][0]);
    }

    public function testAnalogIntCallToExternal()
    {
        $this->loadDump('intern-analog-zu-handy.bin');
        $this->assertCallCount(1, 1);

        $this->assertOutgoing($this->calls['startingCall'][0]);
        $this->assertFrom('40862', $this->calls['startingCall'][0]);
        $this->assertTo('01634779878', $this->calls['startingCall'][0]);

        $this->assertOutgoing($this->calls['finishedCall'][0]);
        $this->assertFrom('40862', $this->calls['finishedCall'][0]);
        $this->assertTo('01634779878', $this->calls['finishedCall'][0]);
    }

    public function testIsdnIntCallToExternal()
    {
        $this->loadDump('intern-22-zu-handy.bin');
        $this->assertCallCount(1, 1);

        $this->assertOutgoing($this->calls['startingCall'][0]);
        $this->assertFrom('40862', $this->calls['startingCall'][0]);
        $this->assertTo('01634779878', $this->calls['startingCall'][0]);

        $this->assertOutgoing($this->calls['finishedCall'][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->assertIncoming($this->calls['startingCall'][0]);
        $this->assertFrom('01634779878', $this->calls['startingCall'][0]);
        $this->assertTo('40862', $this->calls['startingCall'][0]);

        $this->assertIncoming($this->calls['finishedCall'][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'
        );
    }

    protected function assertIncoming(CallMonitor_Call $call)
    {
        $this->assertSame(
            CallMonitor_Call::INCOMING, $call->type,
            'Call should be "incoming"'
        );
    }

    protected function assertOutgoing(CallMonitor_Call $call)
    {
        $this->assertSame(
            CallMonitor_Call::OUTGOING, $call->type,
            'Call should be "outgoing"'
        );
    }

}

?>