Merge "Set context earlier in ImageListPager::__construct"
[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 array(
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( $logType, $logAction, User $user, $titleText, $timestamp, $counter,
29 $watchingUsers
30 ) {
31 $attribs = array_merge(
32 $this->getDefaultAttributes( $titleText, $timestamp ),
33 array(
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 array(
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 array(
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 private function getDefaultAttributes( $titleText, $timestamp ) {
101 return array(
102 'rc_id' => 545,
103 'rc_user' => 0,
104 'rc_user_text' => '127.0.0.1',
105 'rc_ip' => '127.0.0.1',
106 'rc_title' => $titleText,
107 'rc_namespace' => 0,
108 'rc_timestamp' => $timestamp,
109 'rc_old_len' => 212,
110 'rc_new_len' => 188,
111 'rc_comment' => '',
112 'rc_minor' => 0,
113 'rc_bot' => 0,
114 'rc_type' => 0,
115 'rc_patrolled' => 1,
116 'rc_deleted' => 0,
117 'rc_logid' => 0,
118 'rc_log_type' => null,
119 'rc_log_action' => '',
120 'rc_params' => '',
121 'rc_source' => 'mw.edit'
122 );
123 }
124
125 public function getTestContext( User $user ) {
126 $context = new RequestContext();
127 $context->setLanguage( Language::factory( 'en' ) );
128
129 $context->setUser( $user );
130
131 $title = Title::newFromText( 'RecentChanges', NS_SPECIAL );
132 $context->setTitle( $title );
133
134 return $context;
135 }
136 }