tablesUsed = array_merge( $this->tablesUsed, [ 'page_restrictions', 'logging', 'watchlist', 'watchlist_expiry' ] ); $this->overrideConfigValue( MainConfigNames::WatchlistExpiry, true ); } /** * @covers ApiProtect::execute() */ public function testProtectWithWatch(): void { $name = ucfirst( __FUNCTION__ ); $title = Title::newFromText( $name ); $this->editPage( $name, 'Some text' ); $apiResult = $this->doApiRequestWithToken( [ 'action' => 'protect', 'title' => $name, 'protections' => 'edit=sysop', 'expiry' => '55550123000000', 'watchlist' => 'watch', 'watchlistexpiry' => '99990123000000', ] )[0]; $this->assertArrayHasKey( 'protect', $apiResult ); $this->assertSame( $name, $apiResult['protect']['title'] ); $this->assertTrue( $this->getServiceContainer()->getRestrictionStore()->isProtected( $title, 'edit' ) ); $this->assertTrue( $this->getServiceContainer()->getWatchlistManager()->isTempWatched( $this->getTestSysop()->getUser(), $title ) ); } }