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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787
|
<?php
namespace MediaWiki\Tests\Api;
use MediaWiki\Api\ApiUsageException;
use MediaWiki\Block\DatabaseBlock;
use MediaWiki\CommentStore\CommentStoreComment;
use MediaWiki\Content\JavaScriptContent;
use MediaWiki\Content\WikitextContent;
use MediaWiki\Context\RequestContext;
use MediaWiki\MainConfigNames;
use MediaWiki\Revision\RevisionRecord;
use MediaWiki\Status\Status;
use MediaWiki\Tests\User\TempUser\TempUserTestTrait;
use MediaWiki\Title\Title;
use MediaWiki\Title\TitleValue;
use MediaWiki\User\User;
use MediaWiki\Utils\MWTimestamp;
use RevisionDeleter;
use Wikimedia\Rdbms\IDBAccessObject;
use WikiPage;
/**
* Tests for MediaWiki api.php?action=edit.
*
* @author Daniel Kinzler
*
* @group API
* @group Database
* @group medium
*
* @covers \MediaWiki\Api\ApiEditPage
*/
class ApiEditPageTest extends ApiTestCase {
use TempUserTestTrait;
protected function setUp(): void {
parent::setUp();
$this->overrideConfigValues( [
MainConfigNames::ExtraNamespaces => [
12312 => 'Dummy',
12313 => 'Dummy_talk',
12314 => 'DummyNonText',
12315 => 'DummyNonText_talk',
],
MainConfigNames::NamespaceContentModels => [
12312 => 'testing',
12314 => 'testing-nontext',
],
MainConfigNames::WatchlistExpiry => true,
MainConfigNames::WatchlistExpiryMaxDuration => '6 months',
] );
$this->mergeMwGlobalArrayValue( 'wgContentHandlers', [
'testing' => 'DummyContentHandlerForTesting',
'testing-nontext' => 'DummyNonTextContentHandler',
'testing-serialize-error' => 'DummySerializeErrorContentHandler',
] );
}
public function testEdit() {
$name = 'Help:ApiEditPageTest_testEdit'; // assume Help namespace to default to wikitext
// -- test new page --------------------------------------------
$apiResult = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => 'some text',
] );
$apiResult = $apiResult[0];
// Validate API result data
$this->assertArrayHasKey( 'edit', $apiResult );
$this->assertArrayHasKey( 'result', $apiResult['edit'] );
$this->assertSame( 'Success', $apiResult['edit']['result'] );
$this->assertArrayHasKey( 'new', $apiResult['edit'] );
$this->assertArrayNotHasKey( 'nochange', $apiResult['edit'] );
$this->assertArrayHasKey( 'pageid', $apiResult['edit'] );
// -- test existing page, no change ----------------------------
$data = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => 'some text',
] );
$this->assertSame( 'Success', $data[0]['edit']['result'] );
$this->assertArrayNotHasKey( 'new', $data[0]['edit'] );
$this->assertArrayHasKey( 'nochange', $data[0]['edit'] );
// -- test existing page, with change --------------------------
$data = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => 'different text'
] );
$this->assertSame( 'Success', $data[0]['edit']['result'] );
$this->assertArrayNotHasKey( 'new', $data[0]['edit'] );
$this->assertArrayNotHasKey( 'nochange', $data[0]['edit'] );
$this->assertArrayHasKey( 'oldrevid', $data[0]['edit'] );
$this->assertArrayHasKey( 'newrevid', $data[0]['edit'] );
$this->assertNotEquals(
$data[0]['edit']['newrevid'],
$data[0]['edit']['oldrevid'],
"revision id should change after edit"
);
}
/**
* @return array
*/
public static function provideEditAppend() {
return [
[ # 0: append
'foo', 'append', 'bar', "foobar"
],
[ # 1: prepend
'foo', 'prepend', 'bar', "barfoo"
],
[ # 2: append to empty page
'', 'append', 'foo', "foo"
],
[ # 3: prepend to empty page
'', 'prepend', 'foo', "foo"
],
[ # 4: append to non-existing page
null, 'append', 'foo', "foo"
],
[ # 5: prepend to non-existing page
null, 'prepend', 'foo', "foo"
],
];
}
/**
* @dataProvider provideEditAppend
*/
public function testEditAppend( $text, $op, $append, $expected ) {
static $count = 0;
$count++;
// assume NS_HELP defaults to wikitext
$title = Title::makeTitle( NS_HELP, "ApiEditPageTest_testEditAppend_$count" );
// -- create page (or not) -----------------------------------------
if ( $text !== null ) {
[ $re ] = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => $text, ] );
$this->assertSame( 'Success', $re['edit']['result'] );
}
// -- try append/prepend --------------------------------------------
[ $re ] = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
$op . 'text' => $append, ] );
$this->assertSame( 'Success', $re['edit']['result'] );
// -- validate -----------------------------------------------------
$page = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title );
$content = $page->getContent();
$this->assertNotNull( $content, 'Page should have been created' );
$text = $content->getText();
$this->assertSame( $expected, $text );
}
/**
* Test editing of sections
*/
public function testEditSection() {
$title = Title::makeTitle( NS_HELP, 'ApiEditPageTest_testEditSection' );
$wikiPageFactory = $this->getServiceContainer()->getWikiPageFactory();
$page = $wikiPageFactory->newFromTitle( $title );
$text = "==section 1==\ncontent 1\n==section 2==\ncontent2";
// Preload the page with some text
$page->doUserEditContent(
$page->getContentHandler()->unserializeContent( $text ),
$this->getTestSysop()->getAuthority(),
'summary'
);
[ $re ] = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'section' => '1',
'text' => "==section 1==\nnew content 1",
] );
$this->assertSame( 'Success', $re['edit']['result'] );
$newtext = $wikiPageFactory->newFromTitle( $title )
->getContent( RevisionRecord::RAW )
->getText();
$this->assertSame( "==section 1==\nnew content 1\n\n==section 2==\ncontent2", $newtext );
// Test that we raise a 'nosuchsection' error
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'section' => '9999',
'text' => 'text',
] );
$this->fail( "Should have raised an ApiUsageException" );
} catch ( ApiUsageException $e ) {
$this->assertApiErrorCode( 'nosuchsection', $e );
}
}
/**
* Test action=edit§ion=new
* Run it twice so we test adding a new section on a
* page that doesn't exist (T54830) and one that
* does exist
*/
public function testEditNewSection() {
$title = Title::makeTitle( NS_HELP, 'ApiEditPageTest_testEditNewSection' );
$wikiPageFactory = $this->getServiceContainer()->getWikiPageFactory();
// Test on a page that does not already exist
$this->assertFalse( $title->exists() );
[ $re ] = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'section' => 'new',
'text' => 'test',
'summary' => 'header',
] );
$this->assertSame( 'Success', $re['edit']['result'] );
// Check the page text is correct
$text = $wikiPageFactory->newFromTitle( $title )
->getContent( RevisionRecord::RAW )
->getText();
$this->assertSame( "== header ==\n\ntest", $text );
// Now on one that does
$this->assertTrue( $title->exists( IDBAccessObject::READ_LATEST ) );
[ $re2 ] = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'section' => 'new',
'text' => 'test',
'summary' => 'header',
] );
$this->assertSame( 'Success', $re2['edit']['result'] );
$text = $wikiPageFactory->newFromTitle( $title )
->getContent( RevisionRecord::RAW )
->getText();
$this->assertSame( "== header ==\n\ntest\n\n== header ==\n\ntest", $text );
}
/**
* Test action=edit§ion=new with different combinations of summary and sectiontitle.
*
* @dataProvider provideEditNewSectionSummarySectiontitle
*/
public function testEditNewSectionSummarySectiontitle(
$sectiontitle,
$summary,
$expectedText,
$expectedSummary
) {
static $count = 0;
$count++;
$title = Title::makeTitle( NS_HELP, 'ApiEditPageTest_testEditNewSectionSummarySectiontitle' . $count );
// Test edit 1 (new page)
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'section' => 'new',
'text' => 'text',
'sectiontitle' => $sectiontitle,
'summary' => $summary,
] );
$wikiPageFactory = $this->getServiceContainer()->getWikiPageFactory();
$wikiPage = $wikiPageFactory->newFromTitle( $title );
// Check the page text is correct
$savedText = $wikiPage->getContent( RevisionRecord::RAW )->getText();
$this->assertSame( $expectedText, $savedText, 'Correct text saved (new page)' );
// Check that the edit summary is correct
// (when not provided or empty, there is an autogenerated summary for page creation)
$savedSummary = $wikiPage->getRevisionRecord()->getComment( RevisionRecord::RAW )->text;
$expectedSummaryNew = $expectedSummary ?: wfMessage( 'autosumm-new' )->rawParams( $expectedText )
->inContentLanguage()->text();
$this->assertSame( $expectedSummaryNew, $savedSummary, 'Correct summary saved (new page)' );
// Clear the page
$this->editPage( $wikiPage, '' );
// Test edit 2 (existing page)
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'section' => 'new',
'text' => 'text',
'sectiontitle' => $sectiontitle,
'summary' => $summary,
] );
$wikiPage = $wikiPageFactory->newFromTitle( $title );
// Check the page text is correct
$savedText = $wikiPage->getContent( RevisionRecord::RAW )->getText();
$this->assertSame( $expectedText, $savedText, 'Correct text saved (existing page)' );
// Check that the edit summary is correct
$savedSummary = $wikiPage->getRevisionRecord()->getComment( RevisionRecord::RAW )->text;
$this->assertSame( $expectedSummary, $savedSummary, 'Correct summary saved (existing page)' );
}
public static function provideEditNewSectionSummarySectiontitle() {
$sectiontitleCases = [
'unset' => null,
'empty' => '',
'set' => 'sectiontitle',
];
$summaryCases = [
'unset' => null,
'empty' => '',
'set' => 'summary',
];
$expectedTexts = [
"text",
"text",
"== summary ==\n\ntext",
"text",
"text",
"text",
"== sectiontitle ==\n\ntext",
"== sectiontitle ==\n\ntext",
"== sectiontitle ==\n\ntext",
];
$expectedSummaries = [
'',
'',
'/* summary */ new section',
'',
'',
'summary',
'/* sectiontitle */ new section',
'/* sectiontitle */ new section',
'summary',
];
$i = 0;
foreach ( $sectiontitleCases as $sectiontitleDesc => $sectiontitle ) {
foreach ( $summaryCases as $summaryDesc => $summary ) {
$message = "sectiontitle $sectiontitleDesc, summary $summaryDesc";
yield $message => [
$sectiontitle,
$summary,
$expectedTexts[$i],
$expectedSummaries[$i],
];
$i++;
}
}
}
/**
* Ensure we can edit through a redirect, if adding a section
*/
public function testEdit_redirect() {
static $count = 0;
$count++;
// assume NS_HELP defaults to wikitext
$title = Title::makeTitle( NS_HELP, "ApiEditPageTest_testEdit_redirect_$count" );
$wikiPageFactory = $this->getServiceContainer()->getWikiPageFactory();
$page = $this->getExistingTestPage( $title );
$this->forceRevisionDate( $page, '20120101000000' );
$rtitle = Title::makeTitle( NS_HELP, "ApiEditPageTest_testEdit_redirect_r$count" );
$rpage = $wikiPageFactory->newFromTitle( $rtitle );
$baseTime = $page->getRevisionRecord()->getTimestamp();
// base edit for redirect
$rpage->doUserEditContent(
new WikitextContent( "#REDIRECT [[{$title->getPrefixedText()}]]" ),
$this->getTestSysop()->getUser(),
"testing 1",
EDIT_NEW
);
$this->forceRevisionDate( $rpage, '20120101000000' );
// conflicting edit to redirect
$rpage->doUserEditContent(
new WikitextContent( "#REDIRECT [[{$title->getPrefixedText()}]]\n\n[[Category:Test]]" ),
$this->getTestUser()->getUser(),
"testing 2",
EDIT_UPDATE
);
$this->forceRevisionDate( $rpage, '20120101020202' );
// try to save edit, following the redirect
[ $re, , ] = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $rtitle->getPrefixedText(),
'text' => 'nix bar!',
'basetimestamp' => $baseTime,
'section' => 'new',
'redirect' => true,
] );
$this->assertSame( 'Success', $re['edit']['result'],
"no problems expected when following redirect" );
}
/**
* Ensure we cannot edit through a redirect, if attempting to overwrite content
*/
public function testEdit_redirectText() {
static $count = 0;
$count++;
// assume NS_HELP defaults to wikitext
$title = Title::makeTitle( NS_HELP, "ApiEditPageTest_testEdit_redirectText_$count" );
$wikiPageFactory = $this->getServiceContainer()->getWikiPageFactory();
$page = $this->getExistingTestPage( $title );
$this->forceRevisionDate( $page, '20120101000000' );
$baseTime = $page->getRevisionRecord()->getTimestamp();
$rtitle = Title::makeTitle( NS_HELP, "ApiEditPageTest_testEdit_redirectText_r$count" );
$rpage = $wikiPageFactory->newFromTitle( $rtitle );
// base edit for redirect
$rpage->doUserEditContent(
new WikitextContent( "#REDIRECT [[{$title->getPrefixedText()}]]" ),
$this->getTestSysop()->getUser(),
"testing 1",
EDIT_NEW
);
$this->forceRevisionDate( $rpage, '20120101000000' );
// conflicting edit to redirect
$rpage->doUserEditContent(
new WikitextContent( "#REDIRECT [[{$title->getPrefixedText()}]]\n\n[[Category:Test]]" ),
$this->getTestUser()->getUser(),
"testing 2",
EDIT_UPDATE
);
$this->forceRevisionDate( $rpage, '20120101020202' );
// try to save edit, following the redirect but without creating a section
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $rtitle->getPrefixedText(),
'text' => 'nix bar!',
'basetimestamp' => $baseTime,
'redirect' => true,
] );
$this->fail( 'redirect-appendonly error expected' );
} catch ( ApiUsageException $ex ) {
$this->assertApiErrorCode( 'redirect-appendonly', $ex );
}
}
public function testEditConflict_revid() {
static $count = 0;
$count++;
// assume NS_HELP defaults to wikitext
$title = Title::makeTitle( NS_HELP, "ApiEditPageTest_testEditConflict_$count" );
$page = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title );
// base edit
$page->doUserEditContent(
new WikitextContent( "Foo" ),
$this->getTestSysop()->getUser(),
"testing 1",
EDIT_NEW
);
$this->forceRevisionDate( $page, '20120101000000' );
$baseId = $page->getRevisionRecord()->getId();
// conflicting edit
$page->doUserEditContent(
new WikitextContent( "Foo bar" ),
$this->getTestUser()->getUser(),
"testing 2",
EDIT_UPDATE
);
$this->forceRevisionDate( $page, '20120101020202' );
// try to save edit, expect conflict
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'nix bar!',
'baserevid' => $baseId,
], null, $this->getTestSysop()->getUser() );
$this->fail( 'edit conflict expected' );
} catch ( ApiUsageException $ex ) {
$this->assertApiErrorCode( 'editconflict', $ex );
}
}
public function testEditConflict_timestamp() {
static $count = 0;
$count++;
// assume NS_HELP defaults to wikitext
$title = Title::makeTitle( NS_HELP, "ApiEditPageTest_testEditConflict_$count" );
$page = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title );
// base edit
$page->doUserEditContent(
new WikitextContent( "Foo" ),
$this->getTestSysop()->getUser(),
"testing 1",
EDIT_NEW
);
$this->forceRevisionDate( $page, '20120101000000' );
$baseTime = $page->getRevisionRecord()->getTimestamp();
// conflicting edit
$page->doUserEditContent(
new WikitextContent( "Foo bar" ),
$this->getTestUser()->getUser(),
"testing 2",
EDIT_UPDATE
);
$this->forceRevisionDate( $page, '20120101020202' );
// try to save edit, expect conflict
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'nix bar!',
'basetimestamp' => $baseTime,
] );
$this->fail( 'edit conflict expected' );
} catch ( ApiUsageException $ex ) {
$this->assertApiErrorCode( 'editconflict', $ex );
}
}
/**
* Ensure that editing using section=new will prevent simple conflicts
*/
public function testEditConflict_newSection() {
static $count = 0;
$count++;
// assume NS_HELP defaults to wikitext
$title = Title::makeTitle( NS_HELP, "ApiEditPageTest_testEditConflict_newSection_$count" );
$page = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title );
// base edit
$page->doUserEditContent(
new WikitextContent( "Foo" ),
$this->getTestSysop()->getUser(),
"testing 1",
EDIT_NEW
);
$this->forceRevisionDate( $page, '20120101000000' );
$baseTime = $page->getRevisionRecord()->getTimestamp();
// conflicting edit
$page->doUserEditContent(
new WikitextContent( "Foo bar" ),
$this->getTestUser()->getUser(),
"testing 2",
EDIT_UPDATE
);
$this->forceRevisionDate( $page, '20120101020202' );
// try to save edit, expect no conflict
[ $re, , ] = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'nix bar!',
'basetimestamp' => $baseTime,
'section' => 'new',
] );
$this->assertSame( 'Success', $re['edit']['result'],
"no edit conflict expected here" );
}
public function testEditConflict_T43990() {
static $count = 0;
$count++;
/*
* T43990: if the target page has a newer revision than the redirect, then editing the
* redirect while specifying 'redirect' and *not* specifying 'basetimestamp' erroneously
* caused an edit conflict to be detected.
*/
// assume NS_HELP defaults to wikitext
$title = Title::makeTitle( NS_HELP, "ApiEditPageTest_testEditConflict_redirect_T43990_$count" );
$wikiPageFactory = $this->getServiceContainer()->getWikiPageFactory();
$page = $this->getExistingTestPage( $title );
$this->forceRevisionDate( $page, '20120101000000' );
$rtitle = Title::makeTitle( NS_HELP, "ApiEditPageTest_testEditConflict_redirect_T43990_r$count" );
$rpage = $wikiPageFactory->newFromTitle( $rtitle );
// base edit for redirect
$rpage->doUserEditContent(
new WikitextContent( "#REDIRECT [[{$title->getPrefixedText()}]]" ),
$this->getTestSysop()->getUser(),
"testing 1",
EDIT_NEW
);
$this->forceRevisionDate( $rpage, '20120101000000' );
// new edit to content
$page->doUserEditContent(
new WikitextContent( "Foo bar" ),
$this->getTestUser()->getUser(),
"testing 2",
EDIT_UPDATE
);
$this->forceRevisionDate( $rpage, '20120101020202' );
// try to save edit; should work, following the redirect.
[ $re, , ] = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $rtitle->getPrefixedText(),
'text' => 'nix bar!',
'section' => 'new',
'redirect' => true,
] );
$this->assertSame( 'Success', $re['edit']['result'],
"no edit conflict expected here" );
}
/**
* @param WikiPage $page
* @param string|int $timestamp
*/
protected function forceRevisionDate( WikiPage $page, $timestamp ) {
$dbw = $this->getDb();
$dbw->newUpdateQueryBuilder()
->update( 'revision' )
->set( [ 'rev_timestamp' => $dbw->timestamp( $timestamp ) ] )
->where( [ 'rev_id' => $page->getLatest() ] )
->caller( __METHOD__ )->execute();
$page->clear();
}
public function testCheckDirectApiEditingDisallowed_forNonTextContent() {
$this->expectApiErrorCode( 'no-direct-editing' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => 'Dummy:ApiEditPageTest_nonTextPageEdit',
'text' => '{"animals":["kittens!"]}'
] );
}
public function testSupportsDirectApiEditing_withContentHandlerOverride() {
$name = 'DummyNonText:ApiEditPageTest_testNonTextEdit';
$data = 'some bla bla text';
$result = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => $data,
] );
$apiResult = $result[0];
// Validate API result data
$this->assertArrayHasKey( 'edit', $apiResult );
$this->assertArrayHasKey( 'result', $apiResult['edit'] );
$this->assertSame( 'Success', $apiResult['edit']['result'] );
$this->assertArrayHasKey( 'new', $apiResult['edit'] );
$this->assertArrayNotHasKey( 'nochange', $apiResult['edit'] );
$this->assertArrayHasKey( 'pageid', $apiResult['edit'] );
// validate resulting revision
$page = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( Title::newFromText( $name ) );
$this->assertSame( "testing-nontext", $page->getContentModel() );
$this->assertSame( $data, $page->getContent()->serialize() );
}
/**
* This test verifies that after changing the content model
* of a page, undoing that edit via the API will also
* undo the content model change.
*/
public function testUndoAfterContentModelChange() {
$name = 'Help:' . __FUNCTION__;
$sysop = $this->getTestSysop()->getUser();
$otherUser = $this->getTestUser()->getUser();
$apiResult = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => 'some text',
], null, $sysop )[0];
// Check success
$this->assertArrayHasKey( 'edit', $apiResult );
$this->assertArrayHasKey( 'result', $apiResult['edit'] );
$this->assertSame( 'Success', $apiResult['edit']['result'] );
$this->assertArrayHasKey( 'contentmodel', $apiResult['edit'] );
// Content model is wikitext
$this->assertSame( 'wikitext', $apiResult['edit']['contentmodel'] );
// Convert the page to JSON
$apiResult = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => '{}',
'contentmodel' => 'json',
], null, $otherUser )[0];
// Check success
$this->assertArrayHasKey( 'edit', $apiResult );
$this->assertArrayHasKey( 'result', $apiResult['edit'] );
$this->assertSame( 'Success', $apiResult['edit']['result'] );
$this->assertArrayHasKey( 'contentmodel', $apiResult['edit'] );
$this->assertSame( 'json', $apiResult['edit']['contentmodel'] );
$apiResult = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'undo' => $apiResult['edit']['newrevid']
], null, $sysop )[0];
// Check success
$this->assertArrayHasKey( 'edit', $apiResult );
$this->assertArrayHasKey( 'result', $apiResult['edit'] );
$this->assertSame( 'Success', $apiResult['edit']['result'] );
$this->assertArrayHasKey( 'contentmodel', $apiResult['edit'] );
// Check that the contentmodel is back to wikitext now.
$this->assertSame( 'wikitext', $apiResult['edit']['contentmodel'] );
}
// The tests below are mostly not commented because they do exactly what
// you'd expect from the name.
public function testCorrectContentFormat() {
$title = Title::makeTitle( NS_HELP, 'TestCorrectContentFormat' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'some text',
'contentmodel' => 'wikitext',
'contentformat' => 'text/x-wiki',
] );
$this->assertTrue( $title->exists( IDBAccessObject::READ_LATEST ) );
}
public function testUnsupportedContentFormat() {
$title = Title::makeTitle( NS_HELP, 'TestUnsupportedContentFormat' );
$this->expectApiErrorCode( 'badvalue' );
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'some text',
'contentformat' => 'nonexistent format',
] );
} finally {
$this->assertFalse( $title->exists( IDBAccessObject::READ_LATEST ) );
}
}
public function testMismatchedContentFormat() {
$title = Title::makeTitle( NS_HELP, 'TestMismatchedContentFormat' );
$this->expectApiErrorCode( 'badformat' );
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'some text',
'contentmodel' => 'wikitext',
'contentformat' => 'text/plain',
] );
} finally {
$this->assertFalse( $title->exists( IDBAccessObject::READ_LATEST ) );
}
}
public function testUndoToInvalidRev() {
$title = Title::makeTitle( NS_HELP, 'TestUndoToInvalidRev' );
$revId = $this->editPage( $title, 'Some text' )->getNewRevision()
->getId();
$revId++;
$this->expectApiErrorCode( 'nosuchrevid' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'undo' => $revId,
] );
}
/**
* Tests what happens if the undo parameter is a valid revision, but
* the undoafter parameter doesn't refer to a revision that exists in the
* database.
*/
public function testUndoAfterToInvalidRev() {
// We can't just pick a large number for undoafter (as in
// testUndoToInvalidRev above), because then MediaWiki will helpfully
// assume we switched around undo and undoafter and we'll test the code
// path for undo being invalid, not undoafter. So instead we delete
// the revision from the database. In real life this case could come
// up if a revision number was skipped, e.g., if two transactions try
// to insert new revision rows at once and the first one to succeed
// gets rolled back.
$page = $this->getServiceContainer()->getWikiPageFactory()
->newFromLinkTarget( new TitleValue( NS_HELP, 'TestUndoAfterToInvalidRev' ) );
$revId1 = $this->editPage( $page, '1' )->getNewRevision()->getId();
$revId2 = $this->editPage( $page, '2' )->getNewRevision()->getId();
$revId3 = $this->editPage( $page, '3' )->getNewRevision()->getId();
// Make the middle revision disappear
$dbw = $this->getDb();
$dbw->newDeleteQueryBuilder()
->deleteFrom( 'revision' )
->where( [ 'rev_id' => $revId2 ] )
->caller( __METHOD__ )->execute();
$dbw->newUpdateQueryBuilder()
->update( 'revision' )
->set( [ 'rev_parent_id' => $revId1 ] )
->where( [ 'rev_id' => $revId3 ] )
->caller( __METHOD__ )->execute();
$this->expectApiErrorCode( 'nosuchrevid' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $page->getTitle()->getPrefixedText(),
'undo' => $revId3,
'undoafter' => $revId2,
] );
}
/**
* Tests what happens if the undo parameter is a valid revision, but
* undoafter is hidden (rev_deleted).
*/
public function testUndoAfterToHiddenRev() {
$page = $this->getServiceContainer()->getWikiPageFactory()
->newFromLinkTarget( new TitleValue( NS_HELP, 'TestUndoAfterToHiddenRev' ) );
$titleObj = $page->getTitle();
$this->editPage( $page, '0' );
$revId1 = $this->editPage( $page, '1' )->getNewRevision()->getId();
$revId2 = $this->editPage( $page, '2' )->getNewRevision()->getId();
// Hide the middle revision
$list = RevisionDeleter::createList( 'revision',
RequestContext::getMain(), $titleObj, [ $revId1 ] );
// Set a user for modifying the visibility, this is needed because
// setVisibility generates a log, which cannot be an anonymous user actor
// when temporary accounts are enabled.
RequestContext::getMain()->setUser( $this->getTestUser()->getUser() );
$list->setVisibility( [
'value' => [ RevisionRecord::DELETED_TEXT => 1 ],
'comment' => 'Bye-bye',
] );
$this->expectApiErrorCode( 'nosuchrevid' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $titleObj->getPrefixedText(),
'undo' => $revId2,
'undoafter' => $revId1,
] );
}
/**
* Test undo when a revision with a higher id has an earlier timestamp.
* This can happen if importing an old revision.
*/
public function testUndoWithSwappedRevisions() {
$this->markTestSkippedIfNoDiff3();
$page = $this->getServiceContainer()->getWikiPageFactory()
->newFromLinkTarget( new TitleValue( NS_HELP, 'TestUndoWithSwappedRevisions' ) );
$this->editPage( $page, '0' );
$revId2 = $this->editPage( $page, '2' )->getNewRevision()->getId();
$revId1 = $this->editPage( $page, '1' )->getNewRevision()->getId();
// Now monkey with the timestamp
$dbw = $this->getDb();
$dbw->newUpdateQueryBuilder()
->update( 'revision' )
->set( [ 'rev_timestamp' => $dbw->timestamp( time() - 86400 ) ] )
->where( [ 'rev_id' => $revId1 ] )
->caller( __METHOD__ )->execute();
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $page->getTitle()->getPrefixedText(),
'undo' => $revId2,
'undoafter' => $revId1,
] );
$page->loadPageData( IDBAccessObject::READ_LATEST );
$this->assertSame( '1', $page->getContent()->getText() );
}
public function testUndoWithConflicts() {
$this->expectApiErrorCode( 'undofailure' );
$page = $this->getServiceContainer()->getWikiPageFactory()
->newFromLinkTarget( new TitleValue( NS_HELP, 'TestUndoWithConflicts' ) );
$this->editPage( $page, '1' );
$revId = $this->editPage( $page, '2' )->getNewRevision()->getId();
$this->editPage( $page, '3' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $page->getTitle()->getPrefixedText(),
'undo' => $revId,
] );
$page->loadPageData( IDBAccessObject::READ_LATEST );
$this->assertSame( '3', $page->getContent()->getText() );
}
public function testReversedUndoAfter() {
$this->markTestSkippedIfNoDiff3();
$page = $this->getServiceContainer()->getWikiPageFactory()
->newFromLinkTarget( new TitleValue( NS_HELP, 'TestReversedUndoAfter' ) );
$this->editPage( $page, '0' );
$revId1 = $this->editPage( $page, '1' )->getNewRevision()->getId();
$revId2 = $this->editPage( $page, '2' )->getNewRevision()->getId();
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $page->getTitle()->getPrefixedText(),
'undo' => $revId1,
'undoafter' => $revId2,
] );
$page->loadPageData( IDBAccessObject::READ_LATEST );
$this->assertSame( '2', $page->getContent()->getText() );
}
public function testUndoToRevFromDifferentPage() {
$title1 = Title::makeTitle( NS_HELP, 'TestUndoToRevFromDifferentPage-1' );
$this->editPage( $title1, 'Some text' );
$revId = $this->editPage( $title1, 'Some more text' )
->getNewRevision()->getId();
$title2 = Title::makeTitle( NS_HELP, 'TestUndoToRevFromDifferentPage-2' );
$this->editPage( $title2, 'Some text' );
$this->expectApiErrorCode( 'revwrongpage' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title2->getPrefixedText(),
'undo' => $revId,
] );
}
public function testUndoAfterToRevFromDifferentPage() {
$title1 = Title::makeTitle( NS_HELP, 'TestUndoAfterToRevFromDifferentPage-1' );
$revId1 = $this->editPage( $title1, 'Some text' )
->getNewRevision()->getId();
$title2 = Title::makeTitle( NS_HELP, 'TestUndoAfterToRevFromDifferentPage-2' );
$revId2 = $this->editPage( $title2, 'Some text' )
->getNewRevision()->getId();
$this->expectApiErrorCode( 'revwrongpage' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title2->getPrefixedText(),
'undo' => $revId2,
'undoafter' => $revId1,
] );
}
public function testMd5Text() {
$title = Title::makeTitle( NS_HELP, 'TestMd5Text' );
$this->assertFalse( $title->exists( IDBAccessObject::READ_LATEST ) );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'Some text',
'md5' => md5( 'Some text' ),
] );
$this->assertTrue( $title->exists( IDBAccessObject::READ_LATEST ) );
}
public function testMd5PrependText() {
$title = Title::makeTitle( NS_HELP, 'TestMd5PrependText' );
$this->editPage( $title, 'Some text' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'prependtext' => 'Alert: ',
'md5' => md5( 'Alert: ' ),
] );
$text = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title )
->getContent()->getText();
$this->assertSame( 'Alert: Some text', $text );
}
public function testMd5AppendText() {
$title = Title::makeTitle( NS_HELP, 'TestMd5AppendText' );
$this->editPage( $title, 'Some text' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'appendtext' => ' is nice',
'md5' => md5( ' is nice' ),
] );
$text = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title )
->getContent()->getText();
$this->assertSame( 'Some text is nice', $text );
}
public function testMd5PrependAndAppendText() {
$title = Title::makeTitle( NS_HELP, 'TestMd5PrependAndAppendText' );
$this->editPage( $title, 'Some text' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'prependtext' => 'Alert: ',
'appendtext' => ' is nice',
'md5' => md5( 'Alert: is nice' ),
] );
$text = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title )
->getContent()->getText();
$this->assertSame( 'Alert: Some text is nice', $text );
}
public function testIncorrectMd5Text() {
$name = 'Help:' . ucfirst( __FUNCTION__ );
$this->expectApiErrorCode( 'badmd5' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => 'Some text',
'md5' => md5( '' ),
] );
}
public function testIncorrectMd5PrependText() {
$name = 'Help:' . ucfirst( __FUNCTION__ );
$this->expectApiErrorCode( 'badmd5' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'prependtext' => 'Some ',
'appendtext' => 'text',
'md5' => md5( 'Some ' ),
] );
}
public function testIncorrectMd5AppendText() {
$name = 'Help:' . ucfirst( __FUNCTION__ );
$this->expectApiErrorCode( 'badmd5' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'prependtext' => 'Some ',
'appendtext' => 'text',
'md5' => md5( 'text' ),
] );
}
public function testCreateOnly() {
$title = Title::makeTitle( NS_HELP, 'TestCreateOnly' );
$this->expectApiErrorCode( 'articleexists' );
$this->editPage( $title, 'Some text' );
$this->assertTrue( $title->exists( IDBAccessObject::READ_LATEST ) );
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'Some more text',
'createonly' => '',
] );
} finally {
// Validate that content was not changed
$text = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title )
->getContent()->getText();
$this->assertSame( 'Some text', $text );
}
}
public function testNoCreate() {
$title = Title::makeTitle( NS_HELP, 'TestNoCreate' );
$this->expectApiErrorCode( 'missingtitle' );
$this->assertFalse( $title->exists( IDBAccessObject::READ_LATEST ) );
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'Some text',
'nocreate' => '',
] );
} finally {
$this->assertFalse( $title->exists( IDBAccessObject::READ_LATEST ) );
}
}
/**
* Appending/prepending is currently only supported for TextContent. We
* test this right now, and when support is added this test should be
* replaced by tests that the support is correct.
*/
public function testAppendWithNonTextContentHandler() {
$name = 'MediaWiki:' . ucfirst( __FUNCTION__ );
$this->expectApiErrorCode( 'appendnotsupported' );
$this->setTemporaryHook( 'ContentHandlerDefaultModelFor',
static function ( Title $title, &$model ) use ( $name ) {
if ( $title->getPrefixedText() === $name ) {
$model = 'testing-nontext';
}
return true;
}
);
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'appendtext' => 'Some text',
] );
}
public function testAppendInMediaWikiNamespace() {
$title = Title::makeTitle( NS_MEDIAWIKI, 'TestAppendInMediaWikiNamespace' );
$this->assertFalse( $title->exists( IDBAccessObject::READ_LATEST ) );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'appendtext' => 'Some text',
] );
$this->assertTrue( $title->exists( IDBAccessObject::READ_LATEST ) );
}
public function testAppendInMediaWikiNamespaceWithSerializationError() {
$name = 'MediaWiki:' . ucfirst( __FUNCTION__ );
$this->expectApiErrorCode( 'parseerror' );
$this->setTemporaryHook( 'ContentHandlerDefaultModelFor',
static function ( Title $title, &$model ) use ( $name ) {
if ( $title->getPrefixedText() === $name ) {
$model = 'testing-serialize-error';
}
return true;
}
);
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'appendtext' => 'Some text',
] );
}
public function testAppendNewSection() {
$title = Title::makeTitle( NS_HELP, 'TestAppendNewSection' );
$this->editPage( $title, 'Initial content' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'appendtext' => '== New section ==',
'section' => 'new',
] );
$text = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title )
->getContent()->getText();
$this->assertSame( "Initial content\n\n== New section ==", $text );
}
public function testAppendNewSectionWithInvalidContentModel() {
$title = Title::makeTitle( NS_HELP, 'TestAppendNewSectionWithInvalidContentModel' );
$this->expectApiErrorCode( 'sectionsnotsupported' );
$this->editPage( $title, 'Initial content' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'appendtext' => '== New section ==',
'section' => 'new',
'contentmodel' => 'text',
] );
}
public function testAppendNewSectionWithTitle() {
$title = Title::makeTitle( NS_HELP, 'TestAppendNewSectionWithTitle' );
$this->editPage( $title, 'Initial content' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'sectiontitle' => 'My section',
'appendtext' => 'More content',
'section' => 'new',
] );
$page = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title );
$this->assertSame( "Initial content\n\n== My section ==\n\nMore content",
$page->getContent()->getText() );
$comment = $page->getRevisionRecord()->getComment();
$this->assertInstanceOf( CommentStoreComment::class, $comment );
$this->assertSame( '/* My section */ new section', $comment->text );
}
public function testAppendNewSectionWithSummary() {
$title = Title::makeTitle( NS_HELP, 'TestAppendNewSectionWithSummary' );
$this->editPage( $title, 'Initial content' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'appendtext' => 'More content',
'section' => 'new',
'summary' => 'Add new section',
] );
$page = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title );
$this->assertSame( "Initial content\n\n== Add new section ==\n\nMore content",
$page->getContent()->getText() );
// EditPage actually assumes the summary is the section name here
$comment = $page->getRevisionRecord()->getComment();
$this->assertInstanceOf( CommentStoreComment::class, $comment );
$this->assertSame( '/* Add new section */ new section', $comment->text );
}
public function testAppendNewSectionWithTitleAndSummary() {
$title = Title::makeTitle( NS_HELP, 'TestAppendNewSectionWithTitleAndSummary' );
$this->editPage( $title, 'Initial content' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'sectiontitle' => 'My section',
'appendtext' => 'More content',
'section' => 'new',
'summary' => 'Add new section',
] );
$page = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title );
$this->assertSame( "Initial content\n\n== My section ==\n\nMore content",
$page->getContent()->getText() );
$comment = $page->getRevisionRecord()->getComment();
$this->assertInstanceOf( CommentStoreComment::class, $comment );
$this->assertSame( 'Add new section', $comment->text );
}
public function testAppendToSection() {
$title = Title::makeTitle( NS_HELP, 'TestAppendToSection' );
$this->editPage( $title, "== Section 1 ==\n\nContent\n\n" .
"== Section 2 ==\n\nFascinating!" );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'appendtext' => ' and more content',
'section' => '1',
] );
$text = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title )
->getContent()->getText();
$this->assertSame( "== Section 1 ==\n\nContent and more content\n\n" .
"== Section 2 ==\n\nFascinating!", $text );
}
public function testAppendToFirstSection() {
$title = Title::makeTitle( NS_HELP, 'TestAppendToFirstSection' );
$this->editPage( $title, "Content\n\n== Section 1 ==\n\nFascinating!" );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'appendtext' => ' and more content',
'section' => '0',
] );
$text = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title )
->getContent()->getText();
$this->assertSame( "Content and more content\n\n== Section 1 ==\n\n" .
"Fascinating!", $text );
}
public function testAppendToNonexistentSection() {
$title = Title::makeTitle( NS_HELP, 'TestAppendToNonexistentSection' );
$this->expectApiErrorCode( 'nosuchsection' );
$this->editPage( $title, 'Content' );
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'appendtext' => ' and more content',
'section' => '1',
] );
} finally {
$text = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title )
->getContent()->getText();
$this->assertSame( 'Content', $text );
}
}
public function testEditMalformedSection() {
$title = Title::makeTitle( NS_HELP, 'TestEditMalformedSection' );
$this->expectApiErrorCode( 'invalidsection' );
$this->editPage( $title, 'Content' );
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'Different content',
'section' => 'It is unlikely that this is valid',
] );
} finally {
$text = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title )
->getContent()->getText();
$this->assertSame( 'Content', $text );
}
}
public function testEditWithStartTimestamp() {
$title = Title::makeTitle( NS_HELP, 'TestEditWithStartTimestamp' );
$this->expectApiErrorCode( 'pagedeleted' );
$startTime = MWTimestamp::convert( TS_MW, time() - 1 );
$this->editPage( $title, 'Some text' );
$pageObj = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title );
$this->deletePage( $pageObj );
$this->assertFalse( $pageObj->exists() );
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'Different text',
'starttimestamp' => $startTime,
] );
} finally {
$this->assertFalse( $pageObj->exists() );
}
}
public function testEditMinor() {
$title = Title::makeTitle( NS_HELP, 'TestEditMinor' );
$this->editPage( $title, 'Some text' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'Different text',
'minor' => '',
] );
$revisionStore = $this->getServiceContainer()->getRevisionStore();
$revision = $revisionStore->getRevisionByTitle( $title );
$this->assertTrue( $revision->isMinor() );
}
public function testEditRecreate() {
$title = Title::makeTitle( NS_HELP, 'TestEditRecreate' );
$startTime = MWTimestamp::convert( TS_MW, time() - 1 );
$this->editPage( $title, 'Some text' );
$pageObj = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title );
$this->deletePage( $pageObj );
$this->assertFalse( $pageObj->exists() );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'Different text',
'starttimestamp' => $startTime,
'recreate' => '',
] );
$this->assertTrue( $title->exists( IDBAccessObject::READ_LATEST ) );
}
public function testEditWatch() {
$title = Title::makeTitle( NS_HELP, 'TestEditWatch' );
$user = $this->getTestSysop()->getUser();
$watchlistManager = $this->getServiceContainer()->getWatchlistManager();
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'Some text',
'watch' => '',
'watchlistexpiry' => '99990123000000',
] );
$this->assertTrue( $title->exists( IDBAccessObject::READ_LATEST ) );
$this->assertTrue( $watchlistManager->isWatched( $user, $title ) );
$this->assertTrue( $watchlistManager->isTempWatched( $user, $title ) );
}
public function testEditUnwatch() {
$title = Title::makeTitle( NS_HELP, 'TestEditUnwatch' );
$user = $this->getTestSysop()->getUser();
$watchlistManager = $this->getServiceContainer()->getWatchlistManager();
$watchlistManager->addWatch( $user, $title );
$this->assertFalse( $title->exists() );
$this->assertTrue( $watchlistManager->isWatched( $user, $title ) );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'Some text',
'unwatch' => '',
] );
$this->assertTrue( $title->exists( IDBAccessObject::READ_LATEST ) );
$this->assertFalse( $watchlistManager->isWatched( $user, $title ) );
}
public function testEditWithTag() {
$name = 'Help:' . ucfirst( __FUNCTION__ );
$this->getServiceContainer()->getChangeTagsStore()->defineTag( 'custom tag' );
$revId = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => 'Some text',
'tags' => 'custom tag',
] )[0]['edit']['newrevid'];
$this->assertSame( 'custom tag', $this->getDb()->newSelectQueryBuilder()
->select( 'ctd_name' )
->from( 'change_tag' )
->join( 'change_tag_def', null, 'ctd_id = ct_tag_id' )
->where( [ 'ct_rev_id' => $revId ] )
->caller( __METHOD__ )->fetchField() );
}
public function testEditWithoutTagPermission() {
$title = Title::makeTitle( NS_HELP, 'TestEditWithoutTagPermission' );
$this->expectApiErrorCode( 'tags-apply-no-permission' );
$this->assertFalse( $title->exists( IDBAccessObject::READ_LATEST ) );
$this->getServiceContainer()->getChangeTagsStore()->defineTag( 'custom tag' );
$this->overrideConfigValue(
MainConfigNames::RevokePermissions,
[ 'user' => [ 'applychangetags' => true ] ]
);
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'Some text',
'tags' => 'custom tag',
] );
} finally {
$this->assertFalse( $title->exists( IDBAccessObject::READ_LATEST ) );
}
}
public function testEditAbortedByEditPageHookWithResult() {
$title = Title::makeTitle( NS_HELP, 'TestEditAbortedByEditPageHookWithResult' );
$this->setTemporaryHook( 'EditFilterMergedContent',
static function ( $unused1, $unused2, Status $status ) {
$status->statusData = [ 'msg' => 'A message for you!' ];
return false;
} );
$res = $this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'Some text',
] );
$this->assertFalse( $title->exists( IDBAccessObject::READ_LATEST ) );
$this->assertSame( [ 'edit' => [ 'msg' => 'A message for you!',
'result' => 'Failure' ] ], $res[0] );
}
public function testEditAbortedByEditPageHookWithNoResult() {
$title = Title::makeTitle( NS_HELP, 'TestEditAbortedByEditPageHookWithNoResult' );
$this->expectApiErrorCode( 'hookaborted' );
$this->setTemporaryHook( 'EditFilterMergedContent',
static function () {
return false;
}
);
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'Some text',
] );
} finally {
$this->assertFalse( $title->exists( IDBAccessObject::READ_LATEST ) );
}
}
public function testEditWhileBlocked() {
$name = 'Help:' . ucfirst( __FUNCTION__ );
$blockStore = $this->getServiceContainer()->getDatabaseBlockStore();
$this->assertNull( $blockStore->newFromTarget( '127.0.0.1' ) );
$user = $this->getTestSysop()->getUser();
$block = new DatabaseBlock( [
'address' => $user->getName(),
'by' => $user,
'reason' => 'Capriciousness',
'timestamp' => '19370101000000',
'expiry' => 'infinity',
'enableAutoblock' => true,
] );
$blockStore->insertBlock( $block );
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => 'Some text',
] );
$this->fail( 'Expected exception not thrown' );
} catch ( ApiUsageException $ex ) {
$this->assertApiErrorCode( 'blocked', $ex );
$this->assertNotNull( $blockStore->newFromTarget( '127.0.0.1' ), 'Autoblock spread' );
}
}
public function testEditWhileReadOnly() {
$name = 'Help:' . ucfirst( __FUNCTION__ );
// Create the test user before making the DB readonly
$user = $this->getTestSysop()->getUser();
$this->expectApiErrorCode( 'readonly' );
$svc = $this->getServiceContainer()->getReadOnlyMode();
$svc->setReason( "Read-only for testing" );
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => 'Some text',
], null, $user );
} finally {
$svc->setReason( false );
}
}
public function testCreateImageRedirectAnon() {
$this->disableAutoCreateTempUser();
$name = 'File:' . ucfirst( __FUNCTION__ );
$this->expectApiErrorCode( 'noimageredirect-anon' );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => '#REDIRECT [[File:Other file.png]]',
], null, new User() );
}
public function testCreateImageRedirectLoggedIn() {
$name = 'File:' . ucfirst( __FUNCTION__ );
$this->expectApiErrorCode( 'noimageredirect' );
$this->overrideConfigValue(
MainConfigNames::RevokePermissions,
[ 'user' => [ 'upload' => true ] ]
);
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => '#REDIRECT [[File:Other file.png]]',
] );
}
public function testTooBigEdit() {
$name = 'Help:' . ucfirst( __FUNCTION__ );
$this->expectApiErrorCode( 'contenttoobig' );
$this->overrideConfigValue( MainConfigNames::MaxArticleSize, 1 );
$text = str_repeat( '!', 1025 );
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => $text,
] );
}
public function testProhibitedAnonymousEdit() {
$name = 'Help:' . ucfirst( __FUNCTION__ );
$this->expectApiErrorCode( 'permissiondenied' );
$this->overrideConfigValue(
MainConfigNames::RevokePermissions,
[ '*' => [ 'edit' => true ] ]
);
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => 'Some text',
], null, new User() );
}
public function testProhibitedChangeContentModel() {
$name = 'Help:' . ucfirst( __FUNCTION__ );
$this->expectApiErrorCode( 'cantchangecontentmodel' );
$this->overrideConfigValue(
MainConfigNames::RevokePermissions,
[ 'user' => [ 'editcontentmodel' => true ] ]
);
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $name,
'text' => 'Some text',
'contentmodel' => 'json',
] );
}
public function testMidEditContentModelMismatch() {
$title = Title::makeTitle( NS_HELP, 'TestMidEditContentModelMismatch' );
$page = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title );
// base edit, currently in Wikitext
$page->doUserEditContent(
new WikitextContent( "Foo" ),
$this->getTestSysop()->getUser(),
"testing 1",
EDIT_NEW
);
$this->forceRevisionDate( $page, '20120101000000' );
$baseId = $page->getRevisionRecord()->getId();
// Attempt edit in Javascript. This may happen, for instance, if we
// started editing the base content while it was in Javascript and
// before we save it was changed to Wikitext (base edit model).
$page->doUserEditContent(
new JavaScriptContent( "Bar" ),
$this->getTestUser()->getUser(),
"testing 2",
EDIT_UPDATE
);
$this->forceRevisionDate( $page, '20120101020202' );
// ContentHandler may throw exception if we attempt saving the above, so we will
// handle that with contentmodel-mismatch error. Test this is the case.
try {
$this->doApiRequestWithToken( [
'action' => 'edit',
'title' => $title->getPrefixedText(),
'text' => 'different content models!',
'baserevid' => $baseId,
] );
$this->fail( "Should have raised an ApiUsageException" );
} catch ( ApiUsageException $e ) {
$this->assertApiErrorCode( 'contentmodel-mismatch', $e );
}
}
}
|