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->getId() ) { $this->fatalError( "No such user exists." ); } $count = $this->getOption( 'count' ); $namespace = (int)$this->getOption( 'namespace', 0 ); for ( $i = 0; $i < $count; ++$i ) { $title = Title::makeTitleSafe( $namespace, "Page " . wfRandomString( 2 ) ); $page = WikiPage::factory( $title ); $content = ContentHandler::makeContent( wfRandomString(), $title ); $summary = "Change " . wfRandomString( 6 ); $page->doEditContent( $content, $summary, 0, false, $user ); $this->output( "Edited $title\n" ); if ( $i && ( $i % $this->getBatchSize() ) == 0 ) { wfWaitForSlaves(); } } $this->output( "Done\n" ); } } $maintClass = MakeTestEdits::class; require_once RUN_MAINTENANCE_IF_MAIN;