4 * Helper for generating test recent changes entries.
6 * @author Katie Filbert < aude.wiki@gmail.com >
8 class TestRecentChangesHelper
{
10 public function makeEditRecentChange( User
$user, $titleText, $curid, $thisid, $lastid,
11 $timestamp, $counter, $watchingUsers
14 $attribs = array_merge(
15 $this->getDefaultAttributes( $titleText, $timestamp ),
17 'rc_user' => $user->getId(),
18 'rc_user_text' => $user->getName(),
19 'rc_this_oldid' => $thisid,
20 'rc_last_oldid' => $lastid,
25 return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
28 public function makeLogRecentChange(
29 $logType, $logAction, User
$user, $titleText, $timestamp, $counter, $watchingUsers
31 $attribs = array_merge(
32 $this->getDefaultAttributes( $titleText, $timestamp ),
35 'rc_user' => $user->getId(),
36 'rc_user_text' => $user->getName(),
43 'rc_log_type' => $logType,
44 'rc_log_action' => $logAction,
45 'rc_source' => 'mw.log'
49 return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
52 public function makeDeletedEditRecentChange( User
$user, $titleText, $timestamp, $curid,
53 $thisid, $lastid, $counter, $watchingUsers
55 $attribs = array_merge(
56 $this->getDefaultAttributes( $titleText, $timestamp ),
58 'rc_user' => $user->getId(),
59 'rc_user_text' => $user->getName(),
61 'rc_cur_id' => $curid,
62 'rc_this_oldid' => $thisid,
63 'rc_last_oldid' => $lastid
67 return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
70 public function makeNewBotEditRecentChange( User
$user, $titleText, $curid, $thisid, $lastid,
71 $timestamp, $counter, $watchingUsers
74 $attribs = array_merge(
75 $this->getDefaultAttributes( $titleText, $timestamp ),
77 'rc_user' => $user->getId(),
78 'rc_user_text' => $user->getName(),
79 'rc_this_oldid' => $thisid,
80 'rc_last_oldid' => $lastid,
81 'rc_cur_id' => $curid,
84 'rc_source' => 'mw.new'
88 return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
91 private function makeRecentChange( $attribs, $counter, $watchingUsers ) {
92 $change = new RecentChange();
93 $change->setAttribs( $attribs );
94 $change->counter
= $counter;
95 $change->numberofWatchingusers
= $watchingUsers;
100 public function getCacheEntry( $recentChange ) {
101 $rcCacheFactory = new RCCacheEntryFactory(
102 new RequestContext(),
103 array( 'diff' => 'diff', 'cur' => 'cur', 'last' => 'last' )
105 return $rcCacheFactory->newFromRecentChange( $recentChange, false );
108 public function makeCategorizationRecentChange(
109 User
$user, $titleText, $curid, $thisid, $lastid, $timestamp
112 $attribs = array_merge(
113 $this->getDefaultAttributes( $titleText, $timestamp ),
115 'rc_type' => RC_CATEGORIZE
,
116 'rc_user' => $user->getId(),
117 'rc_user_text' => $user->getName(),
118 'rc_this_oldid' => $thisid,
119 'rc_last_oldid' => $lastid,
120 'rc_cur_id' => $curid,
121 'rc_comment' => '[[:Testpage]] added to category',
127 return $this->makeRecentChange( $attribs, 0, 0 );
130 private function getDefaultAttributes( $titleText, $timestamp ) {
134 'rc_user_text' => '127.0.0.1',
135 'rc_ip' => '127.0.0.1',
136 'rc_title' => $titleText,
138 'rc_timestamp' => $timestamp,
148 'rc_log_type' => null,
149 'rc_log_action' => '',
151 'rc_source' => 'mw.edit'
155 public function getTestContext( User
$user ) {
156 $context = new RequestContext();
157 $context->setLanguage( Language
::factory( 'en' ) );
159 $context->setUser( $user );
161 $title = Title
::newFromText( 'RecentChanges', NS_SPECIAL
);
162 $context->setTitle( $title );