1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* @todo Write Tests for doPostMessageForm() |
5
|
|
|
*/ |
6
|
|
|
class ForumTest extends FunctionalTest |
|
|
|
|
7
|
|
|
{ |
8
|
|
|
public static $fixture_file = "forum/tests/ForumTest.yml"; |
9
|
|
|
public static $use_draft_site = true; |
10
|
|
|
|
11
|
|
View Code Duplication |
public function testCanView() |
|
|
|
|
12
|
|
|
{ |
13
|
|
|
// test viewing not logged in |
14
|
|
|
if ($member = Member::currentUser()) { |
15
|
|
|
$member->logOut(); |
16
|
|
|
} |
17
|
|
|
|
18
|
|
|
$public = $this->objFromFixture('Forum', 'general'); |
19
|
|
|
$private = $this->objFromFixture('Forum', 'loggedInOnly'); |
20
|
|
|
$limited = $this->objFromFixture('Forum', 'limitedToGroup'); |
21
|
|
|
$noposting = $this->objFromFixture('Forum', 'noPostingForum'); |
22
|
|
|
$inherited = $this->objFromFixture('Forum', 'inheritedForum'); |
23
|
|
|
|
24
|
|
|
$this->assertTrue($public->canView()); |
|
|
|
|
25
|
|
|
$this->assertFalse($private->canView()); |
|
|
|
|
26
|
|
|
$this->assertFalse($limited->canView()); |
|
|
|
|
27
|
|
|
$this->assertTrue($noposting->canView()); |
|
|
|
|
28
|
|
|
$this->assertFalse($inherited->canView()); |
|
|
|
|
29
|
|
|
|
30
|
|
|
// try logging in a member |
31
|
|
|
$member = $this->objFromFixture('Member', 'test1'); |
32
|
|
|
$member->logIn(); |
33
|
|
|
|
34
|
|
|
$this->assertTrue($public->canView()); |
|
|
|
|
35
|
|
|
$this->assertTrue($private->canView()); |
|
|
|
|
36
|
|
|
$this->assertFalse($limited->canView()); |
|
|
|
|
37
|
|
|
$this->assertTrue($noposting->canView()); |
|
|
|
|
38
|
|
|
$this->assertFalse($inherited->canView()); |
|
|
|
|
39
|
|
|
|
40
|
|
|
// login as a person with access to restricted forum |
41
|
|
|
$member = $this->objFromFixture('Member', 'test2'); |
42
|
|
|
$member->logIn(); |
43
|
|
|
|
44
|
|
|
$this->assertTrue($public->canView()); |
|
|
|
|
45
|
|
|
$this->assertTrue($private->canView()); |
|
|
|
|
46
|
|
|
$this->assertTrue($limited->canView()); |
|
|
|
|
47
|
|
|
$this->assertTrue($noposting->canView()); |
|
|
|
|
48
|
|
|
$this->assertFalse($inherited->canView()); |
|
|
|
|
49
|
|
|
|
50
|
|
|
// Moderator should be able to view his own forums |
51
|
|
|
$member = $this->objFromFixture('Member', 'moderator'); |
52
|
|
|
$member->logIn(); |
53
|
|
|
|
54
|
|
|
$this->assertTrue($public->canView()); |
|
|
|
|
55
|
|
|
$this->assertTrue($private->canView()); |
|
|
|
|
56
|
|
|
$this->assertTrue($limited->canView()); |
|
|
|
|
57
|
|
|
$this->assertTrue($noposting->canView()); |
|
|
|
|
58
|
|
|
$this->assertTrue($inherited->canView()); |
|
|
|
|
59
|
|
|
} |
60
|
|
|
|
61
|
|
View Code Duplication |
public function testCanPost() |
|
|
|
|
62
|
|
|
{ |
63
|
|
|
// test viewing not logged in |
64
|
|
|
if ($member = Member::currentUser()) { |
65
|
|
|
$member->logOut(); |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
$public = $this->objFromFixture('Forum', 'general'); |
69
|
|
|
$private = $this->objFromFixture('Forum', 'loggedInOnly'); |
70
|
|
|
$limited = $this->objFromFixture('Forum', 'limitedToGroup'); |
71
|
|
|
$noposting = $this->objFromFixture('Forum', 'noPostingForum'); |
72
|
|
|
$inherited = $this->objFromFixture('Forum', 'inheritedForum'); |
73
|
|
|
|
74
|
|
|
$this->assertTrue($public->canPost()); |
|
|
|
|
75
|
|
|
$this->assertFalse($private->canPost()); |
|
|
|
|
76
|
|
|
$this->assertFalse($limited->canPost()); |
|
|
|
|
77
|
|
|
$this->assertFalse($noposting->canPost()); |
|
|
|
|
78
|
|
|
$this->assertFalse($inherited->canPost()); |
|
|
|
|
79
|
|
|
|
80
|
|
|
// try logging in a member |
81
|
|
|
$member = $this->objFromFixture('Member', 'test1'); |
82
|
|
|
$member->logIn(); |
83
|
|
|
|
84
|
|
|
$this->assertTrue($public->canPost()); |
|
|
|
|
85
|
|
|
$this->assertTrue($private->canPost()); |
|
|
|
|
86
|
|
|
$this->assertFalse($limited->canPost()); |
|
|
|
|
87
|
|
|
$this->assertFalse($noposting->canPost()); |
|
|
|
|
88
|
|
|
$this->assertFalse($inherited->canPost()); |
|
|
|
|
89
|
|
|
|
90
|
|
|
// login as a person with access to restricted forum |
91
|
|
|
$member = $this->objFromFixture('Member', 'test2'); |
92
|
|
|
$member->logIn(); |
93
|
|
|
|
94
|
|
|
$this->assertTrue($public->canPost()); |
|
|
|
|
95
|
|
|
$this->assertTrue($private->canPost()); |
|
|
|
|
96
|
|
|
$this->assertTrue($limited->canPost()); |
|
|
|
|
97
|
|
|
$this->assertFalse($noposting->canPost()); |
|
|
|
|
98
|
|
|
$this->assertFalse($inherited->canPost()); |
|
|
|
|
99
|
|
|
|
100
|
|
|
// Moderator should be able to view his own forums |
101
|
|
|
$member = $this->objFromFixture('Member', 'moderator'); |
102
|
|
|
$member->logIn(); |
103
|
|
|
|
104
|
|
|
$this->assertTrue($public->canPost()); |
|
|
|
|
105
|
|
|
$this->assertTrue($private->canPost()); |
|
|
|
|
106
|
|
|
$this->assertFalse($limited->canPost()); |
|
|
|
|
107
|
|
|
$this->assertFalse($noposting->canPost()); |
|
|
|
|
108
|
|
|
$this->assertFalse($inherited->canPost()); |
|
|
|
|
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
public function testSuspended() |
112
|
|
|
{ |
113
|
|
|
$private = $this->objFromFixture('Forum', 'loggedInOnly'); |
114
|
|
|
$limited = $this->objFromFixture('Forum', 'limitedToGroup'); |
115
|
|
|
$inheritedForum_loggedInOnly = $this->objFromFixture('Forum', 'inheritedForum_loggedInOnly'); |
116
|
|
|
SS_Datetime::set_mock_now('2011-10-10 12:00:00'); |
117
|
|
|
|
118
|
|
|
// try logging in a member suspendedexpired |
119
|
|
|
$suspendedexpired = $this->objFromFixture('Member', 'suspendedexpired'); |
120
|
|
|
$this->assertFalse($suspendedexpired->IsSuspended()); |
|
|
|
|
121
|
|
|
$suspendedexpired->logIn(); |
122
|
|
|
$this->assertTrue($private->canPost()); |
|
|
|
|
123
|
|
|
$this->assertTrue($limited->canPost()); |
|
|
|
|
124
|
|
|
$this->assertTrue($inheritedForum_loggedInOnly->canPost()); |
|
|
|
|
125
|
|
|
|
126
|
|
|
// try logging in a member suspended |
127
|
|
|
$suspended = $this->objFromFixture('Member', 'suspended'); |
128
|
|
|
$this->assertTrue($suspended->IsSuspended()); |
|
|
|
|
129
|
|
|
$suspended->logIn(); |
130
|
|
|
$this->assertFalse($private->canPost()); |
|
|
|
|
131
|
|
|
$this->assertFalse($limited->canPost()); |
|
|
|
|
132
|
|
|
$this->assertFalse($inheritedForum_loggedInOnly->canPost()); |
|
|
|
|
133
|
|
|
} |
134
|
|
|
|
135
|
|
View Code Duplication |
public function testCanModerate() |
|
|
|
|
136
|
|
|
{ |
137
|
|
|
// test viewing not logged in |
138
|
|
|
if ($member = Member::currentUser()) { |
139
|
|
|
$member->logOut(); |
140
|
|
|
} |
141
|
|
|
|
142
|
|
|
$public = $this->objFromFixture('Forum', 'general'); |
143
|
|
|
$private = $this->objFromFixture('Forum', 'loggedInOnly'); |
144
|
|
|
$limited = $this->objFromFixture('Forum', 'limitedToGroup'); |
145
|
|
|
$noposting = $this->objFromFixture('Forum', 'noPostingForum'); |
146
|
|
|
$inherited = $this->objFromFixture('Forum', 'inheritedForum'); |
147
|
|
|
|
148
|
|
|
$this->assertFalse($public->canModerate()); |
|
|
|
|
149
|
|
|
$this->assertFalse($private->canModerate()); |
|
|
|
|
150
|
|
|
$this->assertFalse($limited->canModerate()); |
|
|
|
|
151
|
|
|
$this->assertFalse($noposting->canModerate()); |
|
|
|
|
152
|
|
|
$this->assertFalse($inherited->canModerate()); |
|
|
|
|
153
|
|
|
|
154
|
|
|
// try logging in a member |
155
|
|
|
$member = $this->objFromFixture('Member', 'test1'); |
156
|
|
|
$member->logIn(); |
157
|
|
|
|
158
|
|
|
$this->assertFalse($public->canModerate()); |
|
|
|
|
159
|
|
|
$this->assertFalse($private->canModerate()); |
|
|
|
|
160
|
|
|
$this->assertFalse($limited->canModerate()); |
|
|
|
|
161
|
|
|
$this->assertFalse($noposting->canModerate()); |
|
|
|
|
162
|
|
|
$this->assertFalse($inherited->canModerate()); |
|
|
|
|
163
|
|
|
|
164
|
|
|
// login as a person with access to restricted forum |
165
|
|
|
$member = $this->objFromFixture('Member', 'test2'); |
166
|
|
|
$member->logIn(); |
167
|
|
|
|
168
|
|
|
$this->assertFalse($public->canModerate()); |
|
|
|
|
169
|
|
|
$this->assertFalse($private->canModerate()); |
|
|
|
|
170
|
|
|
$this->assertFalse($limited->canModerate()); |
|
|
|
|
171
|
|
|
$this->assertFalse($noposting->canModerate()); |
|
|
|
|
172
|
|
|
$this->assertFalse($inherited->canModerate()); |
|
|
|
|
173
|
|
|
|
174
|
|
|
// Moderator should be able to view his own forums |
175
|
|
|
$member = $this->objFromFixture('Member', 'moderator'); |
176
|
|
|
$member->logIn(); |
177
|
|
|
|
178
|
|
|
$this->assertTrue($public->canModerate()); |
|
|
|
|
179
|
|
|
$this->assertTrue($private->canModerate()); |
|
|
|
|
180
|
|
|
$this->assertTrue($limited->canModerate()); |
|
|
|
|
181
|
|
|
$this->assertTrue($noposting->canModerate()); |
|
|
|
|
182
|
|
|
$this->assertTrue($inherited->canModerate()); |
|
|
|
|
183
|
|
|
} |
184
|
|
|
|
185
|
|
|
public function testCanAttach() |
186
|
|
|
{ |
187
|
|
|
$canAttach = $this->objFromFixture('Forum', 'general'); |
188
|
|
|
$this->assertTrue($canAttach->canAttach()); |
|
|
|
|
189
|
|
|
|
190
|
|
|
$noAttach = $this->objFromFixture('Forum', 'forum1cat2'); |
191
|
|
|
$this->assertFalse($noAttach->canAttach()); |
|
|
|
|
192
|
|
|
} |
193
|
|
|
|
194
|
|
|
public function testgetForbiddenWords() |
195
|
|
|
{ |
196
|
|
|
$forum = $this->objFromFixture("Forum", "general"); |
197
|
|
|
$f_controller = new Forum_Controller($forum); |
198
|
|
|
$this->assertEquals($f_controller->getForbiddenWords(), "shit,fuck"); |
|
|
|
|
199
|
|
|
} |
200
|
|
|
|
201
|
|
|
public function testfilterLanguage() |
202
|
|
|
{ |
203
|
|
|
$forum = $this->objFromFixture("Forum", "general"); |
204
|
|
|
$f_controller = new Forum_Controller($forum); |
205
|
|
|
$this->assertEquals($f_controller->filterLanguage('shit'), "*"); |
|
|
|
|
206
|
|
|
|
207
|
|
|
$this->assertEquals($f_controller->filterLanguage('shit and fuck'), "* and *"); |
|
|
|
|
208
|
|
|
|
209
|
|
|
$this->assertEquals($f_controller->filterLanguage('hello'), "hello"); |
|
|
|
|
210
|
|
|
} |
211
|
|
|
|
212
|
|
|
public function testGetStickyTopics() |
213
|
|
|
{ |
214
|
|
|
$forumWithSticky = $this->objFromFixture("Forum", "general"); |
215
|
|
|
$stickies = $forumWithSticky->getStickyTopics(); |
216
|
|
|
$this->assertEquals($stickies->Count(), '2'); |
|
|
|
|
217
|
|
|
|
218
|
|
|
// TODO: Sorts by Created, which is all equal on all Posts in test, and can't be overridden, so can't rely on order |
219
|
|
|
//$this->assertEquals($stickies->First()->Title, 'Global Sticky Thread'); |
|
|
|
|
220
|
|
|
|
221
|
|
|
$stickies = $forumWithSticky->getStickyTopics($include_global = false); |
222
|
|
|
$this->assertEquals($stickies->Count(), '1'); |
|
|
|
|
223
|
|
|
$this->assertEquals($stickies->First()->Title, 'Sticky Thread'); |
|
|
|
|
224
|
|
|
|
225
|
|
|
$forumWithGlobalOnly = $this->objFromFixture("Forum", "forum1cat2"); |
226
|
|
|
$stickies = $forumWithGlobalOnly->getStickyTopics(); |
227
|
|
|
$this->assertEquals($stickies->Count(), '1'); |
|
|
|
|
228
|
|
|
$this->assertEquals($stickies->First()->Title, 'Global Sticky Thread'); |
|
|
|
|
229
|
|
|
$stickies = $forumWithGlobalOnly->getStickyTopics($include_global = false); |
230
|
|
|
$this->assertEquals($stickies->Count(), '0'); |
|
|
|
|
231
|
|
|
} |
232
|
|
|
|
233
|
|
View Code Duplication |
public function testTopics() |
|
|
|
|
234
|
|
|
{ |
235
|
|
|
$forumWithPosts = $this->objFromFixture("Forum", "general"); |
236
|
|
|
|
237
|
|
|
$this->assertEquals($forumWithPosts->getTopics()->Count(), '4'); |
|
|
|
|
238
|
|
|
|
239
|
|
|
$forumWithoutPosts = $this->objFromFixture("Forum", "forum1cat2"); |
240
|
|
|
$result = $forumWithoutPosts->getTopics(); |
241
|
|
|
$this->assertEquals(0, $result->count()); |
|
|
|
|
242
|
|
|
} |
243
|
|
|
|
244
|
|
|
public function testGetLatestPost() |
245
|
|
|
{ |
246
|
|
|
$forumWithPosts = $this->objFromFixture("Forum", "general"); |
247
|
|
|
|
248
|
|
|
$this->assertEquals($forumWithPosts->getLatestPost()->Content, 'This is the last post to a long thread'); |
|
|
|
|
249
|
|
|
|
250
|
|
|
$forumWithoutPosts = $this->objFromFixture("Forum", "forum1cat2"); |
251
|
|
|
|
252
|
|
|
$this->assertNull($forumWithoutPosts->getLatestPost()); |
|
|
|
|
253
|
|
|
} |
254
|
|
|
|
255
|
|
View Code Duplication |
public function testGetNumTopics() |
|
|
|
|
256
|
|
|
{ |
257
|
|
|
$forumWithPosts = $this->objFromFixture("Forum", "general"); |
258
|
|
|
|
259
|
|
|
$this->assertEquals($forumWithPosts->getNumTopics(), 6); |
|
|
|
|
260
|
|
|
|
261
|
|
|
$forumWithoutPosts = $this->objFromFixture("Forum", "forum1cat2"); |
262
|
|
|
|
263
|
|
|
$this->assertEquals($forumWithoutPosts->getNumTopics(), 0); |
|
|
|
|
264
|
|
|
} |
265
|
|
|
|
266
|
|
View Code Duplication |
public function testGetTotalAuthors() |
|
|
|
|
267
|
|
|
{ |
268
|
|
|
$forumWithPosts = $this->objFromFixture("Forum", "general"); |
269
|
|
|
|
270
|
|
|
$this->assertEquals($forumWithPosts->getNumAuthors(), 4); |
|
|
|
|
271
|
|
|
|
272
|
|
|
$forumWithoutPosts = $this->objFromFixture("Forum", "forum1cat2"); |
273
|
|
|
|
274
|
|
|
$this->assertEquals($forumWithoutPosts->getNumAuthors(), 0); |
|
|
|
|
275
|
|
|
} |
276
|
|
|
|
277
|
|
|
/** |
278
|
|
|
* Note: See {@link testCanModerate()} for detailed permission tests. |
279
|
|
|
*/ |
280
|
|
|
public function testMarkAsSpamLink() |
281
|
|
|
{ |
282
|
|
|
$spampost = $this->objFromFixture('Post', 'SpamSecondPost'); |
283
|
|
|
$this->assertFalse($spampost->isFirstPost()); |
|
|
|
|
284
|
|
|
$forum = $spampost->Forum(); |
285
|
|
|
$author = $spampost->Author(); |
286
|
|
|
$moderator = $this->objFromFixture('Member', 'moderator'); // moderator for "general" forum |
287
|
|
|
|
288
|
|
|
// without a logged-in moderator |
289
|
|
|
$this->assertFalse($spampost->MarkAsSpamLink(), 'Link not present by default'); |
|
|
|
|
290
|
|
|
|
291
|
|
|
$c = new Forum_Controller($forum); |
292
|
|
|
$response = $c->handleRequest(new SS_HTTPRequest('GET', 'markasspam/'. $spampost->ID), DataModel::inst()); |
293
|
|
|
$this->assertEquals(403, $response->getStatusCode()); |
|
|
|
|
294
|
|
|
|
295
|
|
|
// with logged-in moderator |
296
|
|
|
$moderator->logIn(); |
297
|
|
|
$this->assertNotEquals(false, $spampost->MarkAsSpamLink(), 'Link present for moderators on this forum'); |
|
|
|
|
298
|
|
|
|
299
|
|
|
$this->assertNull($author->SuspendedUntil); |
|
|
|
|
300
|
|
|
|
301
|
|
|
$c = new Forum_Controller($forum); |
302
|
|
|
$response = $c->handleRequest(new SS_HTTPRequest('GET', 'markasspam/'. $spampost->ID), DataModel::inst()); |
303
|
|
|
$this->assertFalse($response->isError()); |
|
|
|
|
304
|
|
|
|
305
|
|
|
// removes the post |
306
|
|
|
$this->assertNull(Post::get()->byID($spampost->ID)); |
|
|
|
|
307
|
|
|
|
308
|
|
|
// suspends the member |
309
|
|
|
$author = Member::get()->byID($author->ID); |
310
|
|
|
$this->assertNotNull($author->SuspendedUntil); |
|
|
|
|
311
|
|
|
|
312
|
|
|
// does not effect the thread |
313
|
|
|
$thread = ForumThread::get()->byID($spampost->Thread()->ID); |
314
|
|
|
$this->assertEquals('1', $thread->getNumPosts()); |
|
|
|
|
315
|
|
|
|
316
|
|
|
// mark the first post in that now as spam |
317
|
|
|
$spamfirst = $this->objFromFixture('Post', 'SpamFirstPost'); |
318
|
|
|
|
319
|
|
|
$response = $c->handleRequest(new SS_HTTPRequest('GET', 'markasspam/'. $spamfirst->ID), DataModel::inst()); |
|
|
|
|
320
|
|
|
|
321
|
|
|
// removes the thread |
322
|
|
|
$this->assertNull(ForumThread::get()->byID($spamfirst->Thread()->ID)); |
|
|
|
|
323
|
|
|
} |
324
|
|
|
|
325
|
|
|
public function testBanLink() |
326
|
|
|
{ |
327
|
|
|
$spampost = $this->objFromFixture('Post', 'SpamSecondPost'); |
328
|
|
|
$forum = $spampost->Forum(); |
329
|
|
|
$author = $spampost->Author(); |
330
|
|
|
$moderator = $this->objFromFixture('Member', 'moderator'); // moderator for "general" forum |
331
|
|
|
|
332
|
|
|
// without a logged-in moderator |
333
|
|
|
$this->assertFalse($spampost->BanLink(), 'Link not present by default'); |
|
|
|
|
334
|
|
|
|
335
|
|
|
$c = new Forum_Controller($forum); |
336
|
|
|
$response = $c->handleRequest(new SS_HTTPRequest('GET', 'ban/'. $spampost->AuthorID), DataModel::inst()); |
337
|
|
|
$this->assertEquals(403, $response->getStatusCode()); |
|
|
|
|
338
|
|
|
|
339
|
|
|
// with logged-in moderator |
340
|
|
|
$moderator->logIn(); |
341
|
|
|
$this->assertNotEquals(false, $spampost->BanLink(), 'Link present for moderators on this forum'); |
|
|
|
|
342
|
|
|
|
343
|
|
|
$c = new Forum_Controller($forum); |
344
|
|
|
$response = $c->handleRequest(new SS_HTTPRequest('GET', 'ban/'. $spampost->AuthorID), DataModel::inst()); |
345
|
|
|
$this->assertFalse($response->isError()); |
|
|
|
|
346
|
|
|
|
347
|
|
|
// user is banned |
348
|
|
|
$author = Member::get()->byId($author->ID); |
349
|
|
|
$this->assertTrue($author->IsBanned()); |
|
|
|
|
350
|
|
|
} |
351
|
|
|
|
352
|
|
|
public function testGhostLink() |
353
|
|
|
{ |
354
|
|
|
$spampost = $this->objFromFixture('Post', 'SpamSecondPost'); |
355
|
|
|
$forum = $spampost->Forum(); |
356
|
|
|
$author = $spampost->Author(); |
357
|
|
|
$moderator = $this->objFromFixture('Member', 'moderator'); // moderator for "general" forum |
358
|
|
|
|
359
|
|
|
// without a logged-in moderator |
360
|
|
|
$this->assertFalse($spampost->GhostLink(), 'Link not present by default'); |
|
|
|
|
361
|
|
|
|
362
|
|
|
$c = new Forum_Controller($forum); |
363
|
|
|
$response = $c->handleRequest(new SS_HTTPRequest('GET', 'ghost/'. $spampost->AuthorID), DataModel::inst()); |
364
|
|
|
$this->assertEquals(403, $response->getStatusCode()); |
|
|
|
|
365
|
|
|
|
366
|
|
|
// with logged-in moderator |
367
|
|
|
$moderator->logIn(); |
368
|
|
|
$this->assertNotEquals(false, $spampost->GhostLink(), 'Link present for moderators on this forum'); |
|
|
|
|
369
|
|
|
|
370
|
|
|
$c = new Forum_Controller($forum); |
371
|
|
|
$response = $c->handleRequest(new SS_HTTPRequest('GET', 'ghost/'. $spampost->AuthorID), DataModel::inst()); |
372
|
|
|
$this->assertFalse($response->isError()); |
|
|
|
|
373
|
|
|
|
374
|
|
|
// post isn't available anymore in normal queries. {@link ForumSpamPostExtension} |
375
|
|
|
$post = Post::get()->byId($spampost->ID); |
376
|
|
|
$this->assertNull($post); |
|
|
|
|
377
|
|
|
|
378
|
|
|
// user is banned |
379
|
|
|
$author = Member::get()->byId($author->ID); |
380
|
|
|
$this->assertTrue($author->IsGhost()); |
|
|
|
|
381
|
|
|
} |
382
|
|
|
|
383
|
|
|
public function testNotifyModerators() |
384
|
|
|
{ |
385
|
|
|
SecurityToken::disable(); |
386
|
|
|
$notifyModerators = Forum::$notify_moderators; |
387
|
|
|
Forum::$notify_moderators = true; |
388
|
|
|
|
389
|
|
|
$forum = $this->objFromFixture('Forum', 'general'); |
390
|
|
|
$controller = new Forum_Controller($forum); |
|
|
|
|
391
|
|
|
$user = $this->objFromFixture('Member', 'test1'); |
392
|
|
|
$this->session()->inst_set('loggedInAs', $user->ID); |
393
|
|
|
|
394
|
|
|
// New thread |
395
|
|
|
$this->post( |
396
|
|
|
$forum->RelativeLink('PostMessageForm'), |
397
|
|
|
array( |
398
|
|
|
'Title' => 'New thread', |
399
|
|
|
'Content' => 'Meticulously crafted content', |
400
|
|
|
'action_doPostMessageForm' => 1 |
401
|
|
|
) |
402
|
|
|
); |
403
|
|
|
|
404
|
|
|
$adminEmail = Config::inst()->get('Email', 'admin_email'); |
405
|
|
|
|
406
|
|
|
$this->assertEmailSent('[email protected]', $adminEmail, "New thread \"New thread\" in forum [General Discussion]"); |
407
|
|
|
$this->clearEmails(); |
408
|
|
|
|
409
|
|
|
// New response |
410
|
|
|
$thread = DataObject::get_one('ForumThread', "\"ForumThread\".\"Title\"='New thread'"); |
411
|
|
|
$this->post( |
412
|
|
|
$forum->RelativeLink('PostMessageForm'), |
413
|
|
|
array( |
414
|
|
|
'Title' => 'Re: New thread', |
415
|
|
|
'Content' => 'Rough response', |
416
|
|
|
'ThreadID' => $thread->ID, |
417
|
|
|
'action_doPostMessageForm' => 1 |
418
|
|
|
) |
419
|
|
|
); |
420
|
|
|
$this->assertEmailSent('[email protected]', $adminEmail, "New post \"Re: New thread\" in forum [General Discussion]"); |
421
|
|
|
$this->clearEmails(); |
422
|
|
|
|
423
|
|
|
// Edit |
424
|
|
|
$post = $thread->Posts()->Last(); |
425
|
|
|
$this->post( |
426
|
|
|
$forum->RelativeLink('PostMessageForm'), |
427
|
|
|
array( |
428
|
|
|
'Title' => 'Re: New thread', |
429
|
|
|
'Content' => 'Pleasant response', |
430
|
|
|
'ThreadID' => $thread->ID, |
431
|
|
|
'ID' => $post->ID, |
432
|
|
|
'action_doPostMessageForm' => 1 |
433
|
|
|
) |
434
|
|
|
); |
435
|
|
|
$this->assertEmailSent('[email protected]', $adminEmail, "New post \"Re: New thread\" in forum [General Discussion]"); |
436
|
|
|
$this->clearEmails(); |
437
|
|
|
|
438
|
|
|
Forum::$notify_moderators = $notifyModerators; |
439
|
|
|
} |
440
|
|
|
} |
441
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.