summaryrefslogtreecommitdiff
path: root/tests/Feature/Model/LogEntriesModelTest.php
blob: 036f5692a4e299c2cfa451b356561e9f8f3435a4 (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
<?php

namespace Engelsystem\Test\Feature\Model;

use PHPUnit\Framework\TestCase;
use Psr\Log\LogLevel;

class LogEntriesModelTest extends TestCase
{
    public static function setUpBeforeClass()
    {
        require_once __DIR__ . '/../../../includes/engelsystem.php';
    }

    public function testCreateLogEntry()
    {
        LogEntries_clear_all();
        $count = count(LogEntries());
        $this->assertNotFalse(LogEntry_create(LogLevel::WARNING, 'test_LogEntry_create'));

        // There should be one more log entry now
        $this->assertEquals(count(LogEntries()), $count + 1);
    }

    public function testClearAllLogEntries()
    {
        LogEntry_create(LogLevel::WARNING, 'test');
        $this->assertTrue(count(LogEntries()) > 0);

        $this->assertNotFalse(LogEntries_clear_all());
        $this->assertCount(0, LogEntries());
    }

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