addDescription( 'Make test edits for a user' ); $this->addOption( 'user', 'User name', true, true ); $this->addOption( 'count', 'Number of edits', true, true ); $this->addOption( 'namespace', 'Namespace number', false, true ); $this->setBatchSize( 100 ); } public function execute() { $user = User::newFromName( $this->getOption( 'user' ) ); if ( !$user->isRegistered() ) { $this->fatalError( "No such user exists." ); } $count = $this->getOption( 'count' ); $namespace = (int)$this->getOption( 'namespace', 0 ); $services = $this->getServiceContainer(); $wikiPageFactory = $services->getWikiPageFactory(); for ( $i = 0; $i < $count; ++$i ) { $title = Title::makeTitleSafe( $namespace, "Page " . wfRandomString( 2 ) ); $page = $wikiPageFactory->newFromTitle( $title ); $content = ContentHandler::makeContent( wfRandomString(), $title ); $summary = "Change " . wfRandomString( 6 ); $page->doUserEditContent( $content, $user, $summary ); $this->output( "Edited $title\n" ); if ( $i && ( $i % $this->getBatchSize() ) == 0 ) { $this->waitForReplication(); } } $this->output( "Done\n" ); } } // @codeCoverageIgnoreStart $maintClass = MakeTestEdits::class; require_once RUN_MAINTENANCE_IF_MAIN; // @codeCoverageIgnoreEnd