TableDiffFormatter: Don't repeatedly call array_shift()
[lhc/web/wiklou.git] / tests / phpunit / includes / changes / TestRecentChangesHelper.php
1 <?php
2
3 /**
4 * Helper for generating test recent changes entries.
5 *
6 * @author Katie Filbert < aude.wiki@gmail.com >
7 */
8 class TestRecentChangesHelper {
9
10 public function makeEditRecentChange( User $user, $titleText, $curid, $thisid, $lastid,
11 $timestamp, $counter, $watchingUsers
12 ) {
13
14 $attribs = array_merge(
15 $this->getDefaultAttributes( $titleText, $timestamp ),
16 [
17 'rc_user' => $user->getId(),
18 'rc_user_text' => $user->getName(),
19 'rc_this_oldid' => $thisid,
20 'rc_last_oldid' => $lastid,
21 'rc_cur_id' => $curid
22 ]
23 );
24
25 return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
26 }
27
28 public function makeLogRecentChange(
29 $logType, $logAction, User $user, $titleText, $timestamp, $counter, $watchingUsers
30 ) {
31 $attribs = array_merge(
32 $this->getDefaultAttributes( $titleText, $timestamp ),
33 [
34 'rc_cur_id' => 0,
35 'rc_user' => $user->getId(),
36 'rc_user_text' => $user->getName(),
37 'rc_this_oldid' => 0,
38 'rc_last_oldid' => 0,
39 'rc_old_len' => null,
40 'rc_new_len' => null,
41 'rc_type' => 3,
42 'rc_logid' => 25,
43 'rc_log_type' => $logType,
44 'rc_log_action' => $logAction,
45 'rc_source' => 'mw.log'
46 ]
47 );
48
49 return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
50 }
51
52 public function makeDeletedEditRecentChange( User $user, $titleText, $timestamp, $curid,
53 $thisid, $lastid, $counter, $watchingUsers
54 ) {
55 $attribs = array_merge(
56 $this->getDefaultAttributes( $titleText, $timestamp ),
57 [
58 'rc_user' => $user->getId(),
59 'rc_user_text' => $user->getName(),
60 'rc_deleted' => 5,
61 'rc_cur_id' => $curid,
62 'rc_this_oldid' => $thisid,
63 'rc_last_oldid' => $lastid
64 ]
65 );
66
67 return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
68 }
69
70 public function makeNewBotEditRecentChange( User $user, $titleText, $curid, $thisid, $lastid,
71 $timestamp, $counter, $watchingUsers
72 ) {
73
74 $attribs = array_merge(
75 $this->getDefaultAttributes( $titleText, $timestamp ),
76 [
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,
82 'rc_type' => 1,
83 'rc_bot' => 1,
84 'rc_source' => 'mw.new'
85 ]
86 );
87
88 return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
89 }
90
91 private function makeRecentChange( $attribs, $counter, $watchingUsers ) {
92 $change = new RecentChange();
93 $change->setAttribs( $attribs );
94 $change->counter = $counter;
95 $change->numberofWatchingusers = $watchingUsers;
96
97 return $change;
98 }
99
100 public function getCacheEntry( $recentChange ) {
101 $rcCacheFactory = new RCCacheEntryFactory(
102 new RequestContext(),
103 [ 'diff' => 'diff', 'cur' => 'cur', 'last' => 'last' ]
104 );
105 return $rcCacheFactory->newFromRecentChange( $recentChange, false );
106 }
107
108 public function makeCategorizationRecentChange(
109 User $user, $titleText, $curid, $thisid, $lastid, $timestamp
110 ) {
111
112 $attribs = array_merge(
113 $this->getDefaultAttributes( $titleText, $timestamp ),
114 [
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',
122 'rc_old_len' => 0,
123 'rc_new_len' => 0,
124 ]
125 );
126
127 return $this->makeRecentChange( $attribs, 0, 0 );
128 }
129
130 private function getDefaultAttributes( $titleText, $timestamp ) {
131 return [
132 'rc_id' => 545,
133 'rc_user' => 0,
134 'rc_user_text' => '127.0.0.1',
135 'rc_ip' => '127.0.0.1',
136 'rc_title' => $titleText,
137 'rc_namespace' => 0,
138 'rc_timestamp' => $timestamp,
139 'rc_old_len' => 212,
140 'rc_new_len' => 188,
141 'rc_comment' => '',
142 'rc_minor' => 0,
143 'rc_bot' => 0,
144 'rc_type' => 0,
145 'rc_patrolled' => 1,
146 'rc_deleted' => 0,
147 'rc_logid' => 0,
148 'rc_log_type' => null,
149 'rc_log_action' => '',
150 'rc_params' => '',
151 'rc_source' => 'mw.edit'
152 ];
153 }
154
155 public function getTestContext( User $user ) {
156 $context = new RequestContext();
157 $context->setLanguage( Language::factory( 'en' ) );
158
159 $context->setUser( $user );
160
161 $title = Title::newFromText( 'RecentChanges', NS_SPECIAL );
162 $context->setTitle( $title );
163
164 return $context;
165 }
166 }