summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Maintenance/ExceptionFileLoggerTest.php
blob: b64a75afa7b0da95f0550805a370e12e3935b70e (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
<?php

namespace SMW\Tests\Maintenance\Jobs;

use SMW\Maintenance\ExceptionFileLogger;
use SMW\Options;

/**
 * @covers \SMW\Maintenance\ExceptionFileLogger
 * @group semantic-mediawiki
 *
 * @license GNU GPL v2+
 * @since 2.4
 *
 * @author mwjames
 */
class ExceptionFileLoggerTest extends \PHPUnit_Framework_TestCase {

	private $file;

	protected function setUp() {
		parent::setUp();

		$this->file = $this->getMockBuilder( '\SMW\Utils\File' )
			->disableOriginalConstructor()
			->getMock();
	}

	public function testCanConstruct() {

		$this->assertInstanceOf(
			ExceptionFileLogger::class,
			new ExceptionFileLogger()
		);
	}

	public function testGetter() {

		$instance = new ExceptionFileLogger();

		$instance->setOptions( new Options( [
			'exception-log' => __DIR__
		] ) );

		$this->assertInternalType(
			'boolean',
			$instance->getExceptionFile()
		);

		$this->assertInternalType(
			'integer',
			$instance->getExceptionCount()
		);
	}

	public function testDoWriteExceptionLog() {

		$this->file->expects( $this->once() )
			->method( 'write' );

		$instance = new ExceptionFileLogger( 'foo', $this->file );

		$instance->recordException(
			'Foo',
			new \Exception( 'Bar' )
		);

		$this->assertEquals(
			1,
			$instance->getExceptionCount()
		);

		$instance->doWrite();
	}

}