summaryrefslogtreecommitdiff
path: root/bin/reevotech/vendor/addwiki/mediawiki-datamodel/tests/RevisionsTest.php
blob: 6b7afbed21d22a41b5bb987277e198c4fdcdb397 (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
<?php

namespace Mediawiki\DataModel\Test;

use Mediawiki\DataModel\PageIdentifier;
use Mediawiki\DataModel\Revision;
use Mediawiki\DataModel\Revisions;

/**
 * @covers \Mediawiki\DataModel\Revisions
 * @author Addshore
 */
class RevisionsTest extends \PHPUnit_Framework_TestCase {

	/**
	 * @dataProvider provideValidConstruction
	 */
	public function testValidConstruction( $input, $expected ) {
		$revisions = new Revisions( $input );
		$this->assertEquals( $expected, $revisions->toArray() );
	}

	public function provideValidConstruction() {
		$mockContent = $this->getMockBuilder( 'Mediawiki\DataModel\Content' )
			->disableOriginalConstructor()
			->getMock();

		//todo mock these
		$rev1 = new Revision( $mockContent, new PageIdentifier( null, 1 ), 1 );
		$rev2 = new Revision( $mockContent, new PageIdentifier( null, 1 ), 2 );
		$rev4 = new Revision( $mockContent, new PageIdentifier( null, 1 ), 4 );

		return array(
			array( array( $rev1 ), array( 1 => $rev1 ) ),
			array( array( $rev2, $rev1 ), array( 1 => $rev1, 2 => $rev2 ) ),
			array( array( $rev4, $rev1 ), array( 1 => $rev1, 4 => $rev4 ) ),
			array( new Revisions( array( $rev4, $rev1 ) ), array( 1 => $rev1, 4 => $rev4 ) ),
		);
	}

}