mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
59 lines
1.8 KiB
PHP
59 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Blog\Tests;
|
|
|
|
use SilverStripe\Blog\Model\BlogPost;
|
|
use SilverStripe\CommentNotifications\Extensions\CommentNotifier;
|
|
use SilverStripe\Comments\Model\Comment;
|
|
use SilverStripe\Dev\SapphireTest;
|
|
|
|
class BlogPostNotificationsTest extends SapphireTest
|
|
{
|
|
protected static $fixture_file = 'blog.yml';
|
|
|
|
public function testUpdateNotificationRecipients()
|
|
{
|
|
if (!class_exists(CommentNotifier::class)) {
|
|
$this->markTestSkipped('Comments Notification module is not installed');
|
|
}
|
|
|
|
$blogPost = $this->objFromFixture(BlogPost::class, 'PostC');
|
|
$comment = new Comment();
|
|
$comment->Comment = 'This is a comment';
|
|
$comment->write();
|
|
$recipients = $blogPost->notificationRecipients(
|
|
$comment
|
|
)->toArray();
|
|
|
|
$segments = [];
|
|
foreach ($recipients as $recipient) {
|
|
array_push($segments, $recipient->URLSegment);
|
|
}
|
|
|
|
sort($segments);
|
|
$this->assertEquals(
|
|
['blog-contributor', 'blog-editor', 'blog-writer'],
|
|
$segments
|
|
);
|
|
}
|
|
|
|
public function testUpdateNotificationSubject()
|
|
{
|
|
if (!class_exists(CommentNotifier::class)) {
|
|
$this->markTestSkipped('Comments Notification module is not installed');
|
|
}
|
|
$blogPost = $this->objFromFixture(BlogPost::class, 'PostC');
|
|
$comment = new Comment();
|
|
$comment->Comment = 'This is a comment';
|
|
$comment->write();
|
|
$recipients = $blogPost->notificationRecipients(
|
|
$comment
|
|
)->toArray();
|
|
$subject = $blogPost->notificationSubject($comment, $recipients[0]);
|
|
$this->assertEquals(
|
|
'A new comment has been posted on Third Post',
|
|
$subject
|
|
);
|
|
}
|
|
}
|