summaryrefslogtreecommitdiff
path: root/test/Logger/EngelsystemLoggerTest.php
blob: 2219cdb2dca549768004111ab13000d0c55ab93a (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
<?php

namespace Engelsystem\Test\Logger;

use Engelsystem\Logger\EngelsystemLogger;
use PHPUnit\Framework\TestCase;
use Psr\Log\InvalidArgumentException;
use Psr\Log\LoggerInterface;
use Psr\Log\LogLevel;

class EngelsystemLoggerTest extends TestCase
{
    /**
     * @return LoggerInterface
     */
    public function getLogger()
    {
        return new EngelsystemLogger();
    }

    public function testImplements()
    {
        $this->assertInstanceOf('Psr\Log\LoggerInterface', $this->getLogger());
    }

    /**
     * @dataProvider provideLogLevels
     * @param string $level
     */
    public function testAllLevels($level)
    {
        $logger = $this->getLogger();

        LogEntries_clear_all();

        $logger->log($level, 'First log message');
        $logger->{$level}('Second log message');

        $entries = LogEntries();
        $this->assertCount(2, $entries);
    }

    /**
     * @return string[]
     */
    public function provideLogLevels()
    {
        return [
            [LogLevel::ALERT],
            [LogLevel::CRITICAL],
            [LogLevel::DEBUG],
            [LogLevel::EMERGENCY],
            [LogLevel::ERROR],
            [LogLevel::INFO],
            [LogLevel::NOTICE],
            [LogLevel::WARNING],
        ];
    }

    public function testContextReplacement()
    {
        $logger = $this->getLogger();
        LogEntries_clear_all();

        $logger->log(LogLevel::INFO, 'My username is {username}', ['username' => 'Foo']);

        $entry = $this->getLastEntry();
        $this->assertEquals('My username is Foo', $entry['message']);
        $this->assertEquals(LogLevel::INFO, $entry['level']);

        foreach (
            [
                ['Data and {context}', []],
                ['Data and ', ['context' => null]],
                ['Data and {context}', ['context' => new \stdClass()]],
            ] as $data
        ) {
            list($result, $context) = $data;

            $logger->log(LogLevel::INFO, 'Data and {context}', $context);

            $entry = $this->getLastEntry();
            $this->assertEquals($result, $entry['message']);
        }
    }

    public function testContextToString()
    {
        $logger = $this->getLogger();
        LogEntries_clear_all();

        $mock = $this->getMockBuilder('someDataProvider')
            ->setMethods(['__toString'])
            ->getMock();

        $mock->expects($this->atLeastOnce())
            ->method('__toString')
            ->will($this->returnValue('FooBar'));

        $logger->log(LogLevel::INFO, 'Some data and {context}', ['context' => $mock]);

        $entry = $this->getLastEntry();
        $this->assertEquals('Some data and FooBar', $entry['message']);
    }

    /**
     * @expectedException InvalidArgumentException
     */
    public function testThrowExceptionOnInvalidLevel()
    {
        $logger = $this->getLogger();

        $logger->log('This log level should never be defined', 'Some message');
    }

    /**
     * @return array
     */
    public function getLastEntry()
    {
        $entries = LogEntries();
        $entry = array_pop($entries);

        return $entry;
    }

    public function tearDown()
    {
        LogEntries_clear_all();
    }
}