CommentStore: Hard-deprecate newKey()
[lhc/web/wiklou.git] / tests / phpunit / includes / MovePageTest.php
1 <?php
2
3 /**
4 * @group Database
5 */
6 class MovePageTest extends MediaWikiTestCase {
7
8 /**
9 * @dataProvider provideIsValidMove
10 * @covers MovePage::isValidMove
11 * @covers MovePage::isValidFileMove
12 */
13 public function testIsValidMove( $old, $new, $error ) {
14 $this->setMwGlobals( 'wgContentHandlerUseDB', false );
15 $mp = new MovePage(
16 Title::newFromText( $old ),
17 Title::newFromText( $new )
18 );
19 $status = $mp->isValidMove();
20 if ( $error === true ) {
21 $this->assertTrue( $status->isGood() );
22 } else {
23 $this->assertTrue( $status->hasMessage( $error ) );
24 }
25 }
26
27 /**
28 * This should be kept in sync with TitleTest::provideTestIsValidMoveOperation
29 */
30 public static function provideIsValidMove() {
31 return [
32 // for MovePage::isValidMove
33 [ 'Test', 'Test', 'selfmove' ],
34 [ 'Special:FooBar', 'Test', 'immobile-source-namespace' ],
35 [ 'Test', 'Special:FooBar', 'immobile-target-namespace' ],
36 [ 'MediaWiki:Common.js', 'Help:Some wikitext page', 'bad-target-model' ],
37 [ 'Page', 'File:Test.jpg', 'nonfile-cannot-move-to-file' ],
38 // for MovePage::isValidFileMove
39 [ 'File:Test.jpg', 'Page', 'imagenocrossnamespace' ],
40 ];
41 }
42
43 /**
44 * Integration test to catch regressions like T74870. Taken and modified
45 * from SemanticMediaWiki
46 *
47 * @covers Title::moveTo
48 */
49 public function testTitleMoveCompleteIntegrationTest() {
50 $oldTitle = Title::newFromText( 'Help:Some title' );
51 WikiPage::factory( $oldTitle )->doEditContent( new WikitextContent( 'foo' ), 'bar' );
52 $newTitle = Title::newFromText( 'Help:Some other title' );
53 $this->assertNull(
54 WikiPage::factory( $newTitle )->getRevision()
55 );
56
57 $this->assertTrue( $oldTitle->moveTo( $newTitle, false, 'test1', true ) );
58 $this->assertNotNull(
59 WikiPage::factory( $oldTitle )->getRevision()
60 );
61 $this->assertNotNull(
62 WikiPage::factory( $newTitle )->getRevision()
63 );
64 }
65 }