2010-11-29 23:24:17 +01:00
|
|
|
<?php
|
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
namespace SilverStripe\Comments\Tests;
|
|
|
|
|
2017-09-18 04:16:24 +02:00
|
|
|
use HTMLPurifier;
|
2019-05-09 23:33:18 +02:00
|
|
|
use HTMLPurifier_Config;
|
2017-01-16 20:57:37 +01:00
|
|
|
use ReflectionClass;
|
|
|
|
use SilverStripe\Comments\Extensions\CommentsExtension;
|
|
|
|
use SilverStripe\Comments\Model\Comment;
|
|
|
|
use SilverStripe\Comments\Tests\Stubs\CommentableItem;
|
|
|
|
use SilverStripe\Comments\Tests\Stubs\CommentableItemDisabled;
|
|
|
|
use SilverStripe\Comments\Tests\Stubs\CommentableItemEnabled;
|
|
|
|
use SilverStripe\Core\Config\Config;
|
|
|
|
use SilverStripe\Dev\FunctionalTest;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
use SilverStripe\Security\Member;
|
2017-09-18 04:16:24 +02:00
|
|
|
use SilverStripe\Security\Security;
|
2017-01-16 20:57:37 +01:00
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
class CommentsTest extends FunctionalTest
|
|
|
|
{
|
2017-09-18 04:16:24 +02:00
|
|
|
protected static $fixture_file = 'CommentsTest.yml';
|
2016-02-19 01:48:25 +01:00
|
|
|
|
2019-05-09 23:33:18 +02:00
|
|
|
protected static $extra_dataobjects = [
|
2017-01-16 20:57:37 +01:00
|
|
|
CommentableItem::class,
|
|
|
|
CommentableItemEnabled::class,
|
2019-05-09 23:33:18 +02:00
|
|
|
CommentableItemDisabled::class,
|
|
|
|
];
|
2016-02-19 01:48:25 +01:00
|
|
|
|
2021-10-27 07:03:55 +02:00
|
|
|
protected function setUp(): void
|
2016-02-19 01:48:25 +01:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
// Set good default values
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentsExtension::class, 'comments', [
|
2016-02-19 01:48:25 +01:00
|
|
|
'enabled' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
'comment_permalink_prefix' => 'comment-',
|
|
|
|
]);
|
2016-02-19 01:48:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testCommentsList()
|
|
|
|
{
|
|
|
|
// comments don't require moderation so unmoderated comments can be
|
|
|
|
// shown but not spam posts
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-02-19 01:48:25 +01:00
|
|
|
'require_moderation_nonmembers' => false,
|
|
|
|
'require_moderation' => false,
|
|
|
|
'require_moderation_cms' => false,
|
2019-05-09 23:33:18 +02:00
|
|
|
]);
|
2016-02-19 01:48:25 +01:00
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
$item = $this->objFromFixture(CommentableItem::class, 'spammed');
|
2016-02-19 01:48:25 +01:00
|
|
|
|
2019-05-09 23:33:18 +02:00
|
|
|
$this->assertListEquals([
|
|
|
|
['Name' => 'Comment 1'],
|
|
|
|
['Name' => 'Comment 3']
|
|
|
|
], $item->Comments(), 'Only 2 non spam posts should be shown');
|
2016-02-19 01:48:25 +01:00
|
|
|
|
|
|
|
// when moderated, only moderated, non spam posts should be shown.
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', ['require_moderation_nonmembers' => true]);
|
2016-02-19 01:48:25 +01:00
|
|
|
|
|
|
|
// Check that require_moderation overrides this option
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', ['require_moderation' => true]);
|
2016-02-19 01:48:25 +01:00
|
|
|
|
2019-05-09 23:33:18 +02:00
|
|
|
$this->assertListEquals(array(
|
2016-02-19 01:48:25 +01:00
|
|
|
array('Name' => 'Comment 3')
|
|
|
|
), $item->Comments(), 'Only 1 non spam, moderated post should be shown');
|
|
|
|
$this->assertEquals(1, $item->Comments()->Count());
|
|
|
|
|
|
|
|
// require_moderation_nonmembers still filters out unmoderated comments
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', ['require_moderation' => false]);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(1, $item->Comments()->Count());
|
|
|
|
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', ['require_moderation_nonmembers' => false]);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(2, $item->Comments()->Count());
|
|
|
|
|
|
|
|
// With unmoderated comments set to display in frontend
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-02-19 01:48:25 +01:00
|
|
|
'require_moderation' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
'frontend_moderation' => true,
|
|
|
|
]);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(1, $item->Comments()->Count());
|
|
|
|
|
|
|
|
$this->logInWithPermission('ADMIN');
|
|
|
|
$this->assertEquals(2, $item->Comments()->Count());
|
|
|
|
|
|
|
|
// With spam comments set to display in frontend
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-02-19 01:48:25 +01:00
|
|
|
'require_moderation' => true,
|
|
|
|
'frontend_moderation' => false,
|
|
|
|
'frontend_spam' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
$this->logOut();
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(1, $item->Comments()->Count());
|
|
|
|
|
|
|
|
$this->logInWithPermission('ADMIN');
|
|
|
|
$this->assertEquals(2, $item->Comments()->Count());
|
|
|
|
|
|
|
|
|
|
|
|
// With spam and unmoderated comments set to display in frontend
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-02-19 01:48:25 +01:00
|
|
|
'require_moderation' => true,
|
|
|
|
'frontend_moderation' => true,
|
|
|
|
'frontend_spam' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
$this->logOut();
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(1, $item->Comments()->Count());
|
|
|
|
|
|
|
|
$this->logInWithPermission('ADMIN');
|
|
|
|
$this->assertEquals(4, $item->Comments()->Count());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test moderation options configured via the CMS
|
|
|
|
*/
|
|
|
|
public function testCommentCMSModerationList()
|
|
|
|
{
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-02-19 01:48:25 +01:00
|
|
|
'require_moderation' => true,
|
|
|
|
'require_moderation_cms' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
]);
|
2016-02-19 01:48:25 +01:00
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
$item = $this->objFromFixture(CommentableItem::class, 'spammed');
|
2017-09-18 04:16:24 +02:00
|
|
|
|
|
|
|
$this->assertEquals('None', $item->getModerationRequired());
|
2016-02-19 01:48:25 +01:00
|
|
|
|
2019-05-09 23:33:18 +02:00
|
|
|
$this->assertListEquals([
|
|
|
|
['Name' => 'Comment 1'],
|
|
|
|
['Name' => 'Comment 3']
|
|
|
|
], $item->Comments(), 'Only 2 non spam posts should be shown');
|
2016-02-19 01:48:25 +01:00
|
|
|
|
|
|
|
// when moderated, only moderated, non spam posts should be shown.
|
|
|
|
$item->ModerationRequired = 'NonMembersOnly';
|
|
|
|
$item->write();
|
2017-09-18 04:16:24 +02:00
|
|
|
|
|
|
|
$this->assertEquals('NonMembersOnly', $item->getModerationRequired());
|
2016-02-19 01:48:25 +01:00
|
|
|
|
|
|
|
// Check that require_moderation overrides this option
|
|
|
|
$item->ModerationRequired = 'Required';
|
|
|
|
$item->write();
|
2017-09-18 04:16:24 +02:00
|
|
|
$this->assertEquals('Required', $item->getModerationRequired());
|
2016-02-19 01:48:25 +01:00
|
|
|
|
2019-05-09 23:33:18 +02:00
|
|
|
$this->assertListEquals([
|
|
|
|
['Name' => 'Comment 3']
|
|
|
|
], $item->Comments(), 'Only 1 non spam, moderated post should be shown');
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(1, $item->Comments()->Count());
|
|
|
|
|
|
|
|
// require_moderation_nonmembers still filters out unmoderated comments
|
|
|
|
$item->ModerationRequired = 'NonMembersOnly';
|
|
|
|
$item->write();
|
|
|
|
$this->assertEquals(1, $item->Comments()->Count());
|
|
|
|
|
|
|
|
$item->ModerationRequired = 'None';
|
|
|
|
$item->write();
|
|
|
|
$this->assertEquals(2, $item->Comments()->Count());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCanPostComment()
|
|
|
|
{
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-02-19 01:48:25 +01:00
|
|
|
'require_login' => false,
|
|
|
|
'require_login_cms' => false,
|
|
|
|
'required_permission' => false,
|
2019-05-09 23:33:18 +02:00
|
|
|
]);
|
|
|
|
/** @var CommentableItem&CommentsExtension $item */
|
2017-01-16 20:57:37 +01:00
|
|
|
$item = $this->objFromFixture(CommentableItem::class, 'first');
|
2019-05-09 23:33:18 +02:00
|
|
|
/** @var CommentableItem&CommentsExtension $item2 */
|
2017-01-16 20:57:37 +01:00
|
|
|
$item2 = $this->objFromFixture(CommentableItem::class, 'second');
|
2016-02-19 01:48:25 +01:00
|
|
|
|
|
|
|
// Test restriction free commenting
|
2019-05-09 23:33:18 +02:00
|
|
|
$this->logOut();
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertFalse($item->CommentsRequireLogin);
|
|
|
|
$this->assertTrue($item->canPostComment());
|
|
|
|
|
|
|
|
// Test permission required to post
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-02-19 01:48:25 +01:00
|
|
|
'require_login' => true,
|
|
|
|
'required_permission' => 'POSTING_PERMISSION',
|
2019-05-09 23:33:18 +02:00
|
|
|
]);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertTrue($item->CommentsRequireLogin);
|
|
|
|
$this->assertFalse($item->canPostComment());
|
|
|
|
$this->logInWithPermission('WRONG_ONE');
|
|
|
|
$this->assertFalse($item->canPostComment());
|
|
|
|
$this->logInWithPermission('POSTING_PERMISSION');
|
|
|
|
$this->assertTrue($item->canPostComment());
|
|
|
|
$this->logInWithPermission('ADMIN');
|
|
|
|
$this->assertTrue($item->canPostComment());
|
|
|
|
|
|
|
|
// Test require login to post, but not any permissions
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-02-19 01:48:25 +01:00
|
|
|
'required_permission' => false,
|
2019-05-09 23:33:18 +02:00
|
|
|
]);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertTrue($item->CommentsRequireLogin);
|
2019-05-09 23:33:18 +02:00
|
|
|
|
|
|
|
$this->logOut();
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertFalse($item->canPostComment());
|
|
|
|
$this->logInWithPermission('ANY_PERMISSION');
|
|
|
|
$this->assertTrue($item->canPostComment());
|
|
|
|
|
|
|
|
// Test options set via CMS
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-02-19 01:48:25 +01:00
|
|
|
'require_login' => true,
|
|
|
|
'require_login_cms' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
]);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertFalse($item->CommentsRequireLogin);
|
|
|
|
$this->assertTrue($item2->CommentsRequireLogin);
|
2019-05-09 23:33:18 +02:00
|
|
|
|
|
|
|
$this->logOut();
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertTrue($item->canPostComment());
|
|
|
|
$this->assertFalse($item2->canPostComment());
|
|
|
|
|
|
|
|
// Login grants permission to post
|
|
|
|
$this->logInWithPermission('ANY_PERMISSION');
|
|
|
|
$this->assertTrue($item->canPostComment());
|
|
|
|
$this->assertTrue($item2->canPostComment());
|
|
|
|
}
|
|
|
|
public function testDeleteComment()
|
|
|
|
{
|
|
|
|
// Test anonymous user
|
2019-05-09 23:33:18 +02:00
|
|
|
$this->logOut();
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-02-19 01:48:25 +01:00
|
|
|
$commentID = $comment->ID;
|
|
|
|
$this->assertNull($comment->DeleteLink(), 'No permission to see delete link');
|
2017-01-16 20:57:37 +01:00
|
|
|
$delete = $this->get('comments/delete/' . $comment->ID . '?ajax=1');
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(403, $delete->getStatusCode());
|
2017-01-16 20:57:37 +01:00
|
|
|
$check = DataObject::get_by_id(Comment::class, $commentID);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertTrue($check && $check->exists());
|
|
|
|
|
|
|
|
// Test non-authenticated user
|
|
|
|
$this->logInAs('visitor');
|
|
|
|
$this->assertNull($comment->DeleteLink(), 'No permission to see delete link');
|
|
|
|
|
|
|
|
// Test authenticated user
|
|
|
|
$this->logInAs('commentadmin');
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-02-19 01:48:25 +01:00
|
|
|
$commentID = $comment->ID;
|
|
|
|
$adminComment1Link = $comment->DeleteLink();
|
2021-10-27 07:03:55 +02:00
|
|
|
$this->assertStringContainsString('comments/delete/' . $commentID . '?t=', $adminComment1Link);
|
2016-02-19 01:48:25 +01:00
|
|
|
|
|
|
|
// Test that this link can't be shared / XSS exploited
|
|
|
|
$this->logInAs('commentadmin2');
|
|
|
|
$delete = $this->get($adminComment1Link);
|
|
|
|
$this->assertEquals(400, $delete->getStatusCode());
|
2017-01-16 20:57:37 +01:00
|
|
|
$check = DataObject::get_by_id(Comment::class, $commentID);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertTrue($check && $check->exists());
|
|
|
|
|
|
|
|
// Test that this other admin can delete the comment with their own link
|
|
|
|
$adminComment2Link = $comment->DeleteLink();
|
|
|
|
$this->assertNotEquals($adminComment2Link, $adminComment1Link);
|
|
|
|
$this->autoFollowRedirection = false;
|
|
|
|
$delete = $this->get($adminComment2Link);
|
|
|
|
$this->assertEquals(302, $delete->getStatusCode());
|
2017-01-16 20:57:37 +01:00
|
|
|
$check = DataObject::get_by_id(Comment::class, $commentID);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertFalse($check && $check->exists());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSpamComment()
|
|
|
|
{
|
|
|
|
// Test anonymous user
|
2019-05-09 23:33:18 +02:00
|
|
|
$this->logOut();
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-02-19 01:48:25 +01:00
|
|
|
$commentID = $comment->ID;
|
|
|
|
$this->assertNull($comment->SpamLink(), 'No permission to see mark as spam link');
|
2019-05-09 23:33:18 +02:00
|
|
|
$spam = $this->get('comments/spam/' . $comment->ID . '?ajax=1');
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(403, $spam->getStatusCode());
|
2017-01-16 20:57:37 +01:00
|
|
|
$check = DataObject::get_by_id(Comment::class, $commentID);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(0, $check->IsSpam, 'No permission to mark as spam');
|
|
|
|
|
|
|
|
// Test non-authenticated user
|
|
|
|
$this->logInAs('visitor');
|
|
|
|
$this->assertNull($comment->SpamLink(), 'No permission to see mark as spam link');
|
|
|
|
|
|
|
|
// Test authenticated user
|
|
|
|
$this->logInAs('commentadmin');
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-02-19 01:48:25 +01:00
|
|
|
$commentID = $comment->ID;
|
|
|
|
$adminComment1Link = $comment->SpamLink();
|
2021-10-27 07:03:55 +02:00
|
|
|
$this->assertStringContainsString('comments/spam/' . $commentID . '?t=', $adminComment1Link);
|
2016-02-19 01:48:25 +01:00
|
|
|
|
|
|
|
// Test that this link can't be shared / XSS exploited
|
|
|
|
$this->logInAs('commentadmin2');
|
|
|
|
$spam = $this->get($adminComment1Link);
|
|
|
|
$this->assertEquals(400, $spam->getStatusCode());
|
2017-01-16 20:57:37 +01:00
|
|
|
$check = DataObject::get_by_id(Comment::class, $comment->ID);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(0, $check->IsSpam, 'No permission to mark as spam');
|
|
|
|
|
|
|
|
// Test that this other admin can spam the comment with their own link
|
|
|
|
$adminComment2Link = $comment->SpamLink();
|
|
|
|
$this->assertNotEquals($adminComment2Link, $adminComment1Link);
|
|
|
|
$this->autoFollowRedirection = false;
|
|
|
|
$spam = $this->get($adminComment2Link);
|
|
|
|
$this->assertEquals(302, $spam->getStatusCode());
|
2017-01-16 20:57:37 +01:00
|
|
|
$check = DataObject::get_by_id(Comment::class, $commentID);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(1, $check->IsSpam);
|
|
|
|
|
|
|
|
// Cannot re-spam spammed comment
|
|
|
|
$this->assertNull($check->SpamLink());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testHamComment()
|
|
|
|
{
|
|
|
|
// Test anonymous user
|
2019-05-09 23:33:18 +02:00
|
|
|
$this->logOut();
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'secondComC');
|
2016-02-19 01:48:25 +01:00
|
|
|
$commentID = $comment->ID;
|
|
|
|
$this->assertNull($comment->HamLink(), 'No permission to see mark as ham link');
|
2017-01-16 20:57:37 +01:00
|
|
|
$ham = $this->get('comments/ham/' . $comment->ID . '?ajax=1');
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(403, $ham->getStatusCode());
|
2017-01-16 20:57:37 +01:00
|
|
|
$check = DataObject::get_by_id(Comment::class, $commentID);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(1, $check->IsSpam, 'No permission to mark as ham');
|
|
|
|
|
|
|
|
// Test non-authenticated user
|
|
|
|
$this->logInAs('visitor');
|
|
|
|
$this->assertNull($comment->HamLink(), 'No permission to see mark as ham link');
|
|
|
|
|
|
|
|
// Test authenticated user
|
|
|
|
$this->logInAs('commentadmin');
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'secondComC');
|
2016-02-19 01:48:25 +01:00
|
|
|
$commentID = $comment->ID;
|
|
|
|
$adminComment1Link = $comment->HamLink();
|
2021-10-27 07:03:55 +02:00
|
|
|
$this->assertStringContainsString('comments/ham/' . $commentID . '?t=', $adminComment1Link);
|
2016-02-19 01:48:25 +01:00
|
|
|
|
|
|
|
// Test that this link can't be shared / XSS exploited
|
|
|
|
$this->logInAs('commentadmin2');
|
|
|
|
$ham = $this->get($adminComment1Link);
|
|
|
|
$this->assertEquals(400, $ham->getStatusCode());
|
2017-01-16 20:57:37 +01:00
|
|
|
$check = DataObject::get_by_id(Comment::class, $comment->ID);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(1, $check->IsSpam, 'No permission to mark as ham');
|
|
|
|
|
|
|
|
// Test that this other admin can ham the comment with their own link
|
|
|
|
$adminComment2Link = $comment->HamLink();
|
|
|
|
$this->assertNotEquals($adminComment2Link, $adminComment1Link);
|
|
|
|
$this->autoFollowRedirection = false;
|
|
|
|
$ham = $this->get($adminComment2Link);
|
|
|
|
$this->assertEquals(302, $ham->getStatusCode());
|
2017-01-16 20:57:37 +01:00
|
|
|
$check = DataObject::get_by_id(Comment::class, $commentID);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(0, $check->IsSpam);
|
|
|
|
|
|
|
|
// Cannot re-ham hammed comment
|
|
|
|
$this->assertNull($check->HamLink());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testApproveComment()
|
|
|
|
{
|
|
|
|
// Test anonymous user
|
2019-05-09 23:33:18 +02:00
|
|
|
$this->logOut();
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'secondComB');
|
2016-02-19 01:48:25 +01:00
|
|
|
$commentID = $comment->ID;
|
|
|
|
$this->assertNull($comment->ApproveLink(), 'No permission to see approve link');
|
2017-01-16 20:57:37 +01:00
|
|
|
$approve = $this->get('comments/approve/' . $comment->ID . '?ajax=1');
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(403, $approve->getStatusCode());
|
2017-01-16 20:57:37 +01:00
|
|
|
$check = DataObject::get_by_id(Comment::class, $commentID);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(0, $check->Moderated, 'No permission to approve');
|
|
|
|
|
|
|
|
// Test non-authenticated user
|
|
|
|
$this->logInAs('visitor');
|
|
|
|
$this->assertNull($comment->ApproveLink(), 'No permission to see approve link');
|
|
|
|
|
|
|
|
// Test authenticated user
|
|
|
|
$this->logInAs('commentadmin');
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'secondComB');
|
2016-02-19 01:48:25 +01:00
|
|
|
$commentID = $comment->ID;
|
|
|
|
$adminComment1Link = $comment->ApproveLink();
|
2021-10-27 07:03:55 +02:00
|
|
|
$this->assertStringContainsString('comments/approve/' . $commentID . '?t=', $adminComment1Link);
|
2016-02-19 01:48:25 +01:00
|
|
|
|
|
|
|
// Test that this link can't be shared / XSS exploited
|
|
|
|
$this->logInAs('commentadmin2');
|
|
|
|
$approve = $this->get($adminComment1Link);
|
|
|
|
$this->assertEquals(400, $approve->getStatusCode());
|
2017-01-16 20:57:37 +01:00
|
|
|
$check = DataObject::get_by_id(Comment::class, $comment->ID);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(0, $check->Moderated, 'No permission to approve');
|
|
|
|
|
|
|
|
// Test that this other admin can approve the comment with their own link
|
|
|
|
$adminComment2Link = $comment->ApproveLink();
|
|
|
|
$this->assertNotEquals($adminComment2Link, $adminComment1Link);
|
|
|
|
$this->autoFollowRedirection = false;
|
|
|
|
$approve = $this->get($adminComment2Link);
|
|
|
|
$this->assertEquals(302, $approve->getStatusCode());
|
2017-01-16 20:57:37 +01:00
|
|
|
$check = DataObject::get_by_id(Comment::class, $commentID);
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertEquals(1, $check->Moderated);
|
|
|
|
|
|
|
|
// Cannot re-approve approved comment
|
|
|
|
$this->assertNull($check->ApproveLink());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCommenterURLWrite()
|
|
|
|
{
|
|
|
|
$comment = new Comment();
|
|
|
|
// We only care about the CommenterURL, so only set that
|
|
|
|
// Check a http and https URL. Add more test urls here as needed.
|
2019-05-09 23:33:18 +02:00
|
|
|
$protocols = [
|
2016-02-19 01:48:25 +01:00
|
|
|
'Http',
|
|
|
|
'Https',
|
2019-05-09 23:33:18 +02:00
|
|
|
];
|
2016-02-19 01:48:25 +01:00
|
|
|
$url = '://example.com';
|
|
|
|
|
|
|
|
foreach ($protocols as $protocol) {
|
|
|
|
$comment->CommenterURL = $protocol . $url;
|
|
|
|
// The protocol should stay as if, assuming it is valid
|
|
|
|
$comment->write();
|
|
|
|
$this->assertEquals($comment->CommenterURL, $protocol . $url, $protocol . ':// is a valid protocol');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSanitizesWithAllowHtml()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
if (!class_exists('\\HTMLPurifier')) {
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->markTestSkipped('HTMLPurifier class not found');
|
|
|
|
}
|
2013-02-21 16:39:57 +01:00
|
|
|
|
2016-01-07 07:59:10 +01:00
|
|
|
// Add p for paragraph
|
|
|
|
// NOTE: The config method appears to append to the existing array
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
|
|
|
'html_allowed_elements' => ['p'],
|
|
|
|
]);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
// Without HTML allowed
|
|
|
|
$comment1 = new Comment();
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment1->AllowHtml = false;
|
2017-01-27 04:20:14 +01:00
|
|
|
$comment1->ParentClass = CommentableItem::class;
|
2016-02-19 01:48:25 +01:00
|
|
|
$comment1->Comment = '<p><script>alert("w00t")</script>my comment</p>';
|
|
|
|
$comment1->write();
|
|
|
|
$this->assertEquals(
|
|
|
|
'<p><script>alert("w00t")</script>my comment</p>',
|
|
|
|
$comment1->Comment,
|
|
|
|
'Does not remove HTML tags with html_allowed=false, ' .
|
|
|
|
'which is correct behaviour because the HTML will be escaped'
|
|
|
|
);
|
|
|
|
|
|
|
|
// With HTML allowed
|
|
|
|
$comment2 = new Comment();
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment2->AllowHtml = true;
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment2->ParentClass = CommentableItem::class;
|
2016-02-19 01:48:25 +01:00
|
|
|
$comment2->Comment = '<p><script>alert("w00t")</script>my comment</p>';
|
|
|
|
$comment2->write();
|
|
|
|
$this->assertEquals(
|
|
|
|
'<p>my comment</p>',
|
|
|
|
$comment2->Comment,
|
|
|
|
'Removes HTML tags which are not on the whitelist'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDefaultTemplateRendersHtmlWithAllowHtml()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
if (!class_exists('\\HTMLPurifier')) {
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->markTestSkipped('HTMLPurifier class not found');
|
|
|
|
}
|
2013-02-21 16:39:57 +01:00
|
|
|
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
|
|
|
'html_allowed_elements' => ['p'],
|
|
|
|
]);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
$item = new CommentableItem();
|
|
|
|
$item->write();
|
2013-02-21 16:39:57 +01:00
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
// Without HTML allowed
|
|
|
|
$comment = new Comment();
|
|
|
|
$comment->Comment = '<p>my comment</p>';
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->AllowHtml = false;
|
2016-02-19 01:48:25 +01:00
|
|
|
$comment->ParentID = $item->ID;
|
2017-01-27 04:20:14 +01:00
|
|
|
$comment->ParentClass = CommentableItem::class;
|
2016-02-19 01:48:25 +01:00
|
|
|
$comment->write();
|
2016-01-07 07:59:10 +01:00
|
|
|
|
2019-05-09 23:33:18 +02:00
|
|
|
$html = $item->customise(['CommentsEnabled' => true])->renderWith('CommentsInterface');
|
2022-07-14 02:06:51 +02:00
|
|
|
$this->assertStringContainsString(
|
2016-02-19 01:48:25 +01:00
|
|
|
'<p>my comment</p>',
|
|
|
|
$html
|
|
|
|
);
|
2013-02-21 16:39:57 +01:00
|
|
|
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->AllowHtml = true;
|
|
|
|
$comment->write();
|
2019-05-09 23:33:18 +02:00
|
|
|
$html = $item->customise(['CommentsEnabled' => true])->renderWith('CommentsInterface');
|
2022-07-14 02:06:51 +02:00
|
|
|
$this->assertStringContainsString(
|
2016-02-19 01:48:25 +01:00
|
|
|
'<p>my comment</p>',
|
|
|
|
$html
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests whether comments are enabled or disabled by default
|
|
|
|
*/
|
|
|
|
public function testDefaultEnabled()
|
|
|
|
{
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-02-19 01:48:25 +01:00
|
|
|
'enabled_cms' => true,
|
|
|
|
'require_moderation_cms' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
'require_login_cms' => true,
|
|
|
|
]);
|
2016-02-19 01:48:25 +01:00
|
|
|
|
|
|
|
// With default = true
|
|
|
|
$obj = new CommentableItem();
|
|
|
|
$this->assertTrue((bool)$obj->getCommentsOption('enabled'), "Default setting is enabled");
|
|
|
|
$this->assertTrue((bool)$obj->ProvideComments);
|
|
|
|
$this->assertEquals('None', $obj->ModerationRequired);
|
|
|
|
$this->assertFalse((bool)$obj->CommentsRequireLogin);
|
|
|
|
|
|
|
|
$obj = new CommentableItemEnabled();
|
|
|
|
$this->assertTrue((bool)$obj->ProvideComments);
|
|
|
|
$this->assertEquals('Required', $obj->ModerationRequired);
|
|
|
|
$this->assertTrue((bool)$obj->CommentsRequireLogin);
|
|
|
|
|
|
|
|
$obj = new CommentableItemDisabled();
|
|
|
|
$this->assertFalse((bool)$obj->ProvideComments);
|
|
|
|
$this->assertEquals('None', $obj->ModerationRequired);
|
|
|
|
$this->assertFalse((bool)$obj->CommentsRequireLogin);
|
|
|
|
|
|
|
|
// With default = false
|
|
|
|
// Because of config rules about falsey values, apply config to object directly
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-02-19 01:48:25 +01:00
|
|
|
'enabled' => false,
|
|
|
|
'require_login' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
'require_moderation' => true,
|
|
|
|
]);
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
$obj = new CommentableItem();
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
$this->assertFalse((bool)$obj->getCommentsOption('enabled'), 'Default setting is disabled');
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertFalse((bool)$obj->ProvideComments);
|
|
|
|
$this->assertEquals('Required', $obj->ModerationRequired);
|
|
|
|
$this->assertTrue((bool)$obj->CommentsRequireLogin);
|
|
|
|
|
|
|
|
$obj = new CommentableItemEnabled();
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertTrue((bool)$obj->ProvideComments);
|
|
|
|
$this->assertEquals('Required', $obj->ModerationRequired);
|
|
|
|
$this->assertTrue((bool)$obj->CommentsRequireLogin);
|
|
|
|
|
|
|
|
$obj = new CommentableItemDisabled();
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
$this->assertFalse((bool)$obj->ProvideComments);
|
|
|
|
$this->assertEquals('None', $obj->ModerationRequired);
|
|
|
|
$this->assertFalse((bool)$obj->CommentsRequireLogin);
|
|
|
|
}
|
2015-08-25 06:49:58 +02:00
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testOnBeforeDelete()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
$child = new Comment();
|
|
|
|
$child->Name = 'Fred Bloggs';
|
|
|
|
$child->Comment = 'Child of firstComA';
|
|
|
|
$child->write();
|
|
|
|
$comment->ChildComments()->add($child);
|
|
|
|
$this->assertEquals(4, $comment->ChildComments()->count());
|
|
|
|
|
|
|
|
$commentID = $comment->ID;
|
|
|
|
$childCommentID = $child->ID;
|
|
|
|
|
|
|
|
$comment->delete();
|
|
|
|
|
|
|
|
// assert that the new child been deleted
|
2017-09-18 04:16:24 +02:00
|
|
|
$this->assertNull(DataObject::get_by_id(Comment::class, $commentID));
|
|
|
|
$this->assertNull(DataObject::get_by_id(Comment::class, $childCommentID));
|
2016-01-07 07:59:10 +01:00
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testRequireDefaultRecords()
|
|
|
|
{
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->markTestSkipped('TODO');
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testLink()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'thirdComD');
|
|
|
|
$this->assertEquals(
|
|
|
|
'CommentableItemController#comment-' . $comment->ID,
|
|
|
|
$comment->Link()
|
|
|
|
);
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertEquals($comment->ID, $comment->ID);
|
|
|
|
|
|
|
|
// An orphan comment has no link
|
|
|
|
$comment->ParentID = 0;
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment->ParentClass = null;
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->write();
|
|
|
|
$this->assertEquals('', $comment->Link());
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testPermalink()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'thirdComD');
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertEquals('comment-' . $comment->ID, $comment->Permalink());
|
|
|
|
}
|
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
/**
|
2019-05-09 23:33:18 +02:00
|
|
|
* Test field labels are defined
|
2016-01-07 07:59:10 +01:00
|
|
|
*/
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testFieldLabels()
|
|
|
|
{
|
2018-06-12 23:59:23 +02:00
|
|
|
/** @var Comment $comment */
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2018-06-12 23:59:23 +02:00
|
|
|
|
2016-01-07 07:59:10 +01:00
|
|
|
$labels = $comment->FieldLabels();
|
2019-05-09 23:33:18 +02:00
|
|
|
$expected = [
|
|
|
|
'Name',
|
|
|
|
'Comment',
|
|
|
|
'Email',
|
|
|
|
'URL',
|
|
|
|
'IsSpam',
|
|
|
|
'Moderated',
|
|
|
|
'ParentTitle',
|
|
|
|
'Created',
|
|
|
|
];
|
|
|
|
foreach ($expected as $key) {
|
|
|
|
$this->assertArrayHasKey($key, $labels);
|
2018-06-12 23:59:23 +02:00
|
|
|
}
|
2016-01-07 07:59:10 +01:00
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGetParent()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
|
|
|
$item = $this->objFromFixture(CommentableItem::class, 'first');
|
|
|
|
$parent = $comment->Parent();
|
|
|
|
$this->assertSame($item->getClassName(), $parent->getClassName());
|
|
|
|
$this->assertSame($item->ID, $parent->ID);
|
2016-01-07 07:59:10 +01:00
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGetParentTitle()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$title = $comment->getParentTitle();
|
|
|
|
$this->assertEquals('First', $title);
|
|
|
|
|
|
|
|
// Title from a comment with no parent is blank
|
|
|
|
$comment->ParentID = 0;
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment->ParentClass = null;
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->write();
|
|
|
|
$this->assertEquals('', $comment->getParentTitle());
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGetParentClassName()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$className = $comment->getParentClassName();
|
2017-01-16 20:57:37 +01:00
|
|
|
$this->assertEquals(CommentableItem::class, $className);
|
2016-01-07 07:59:10 +01:00
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testCastingHelper()
|
|
|
|
{
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->markTestSkipped('TODO');
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGetEscapedComment()
|
|
|
|
{
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->markTestSkipped('TODO');
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testIsPreview()
|
|
|
|
{
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment = new Comment();
|
|
|
|
$comment->Name = 'Fred Bloggs';
|
|
|
|
$comment->Comment = 'this is a test comment';
|
|
|
|
$this->assertTrue($comment->isPreview());
|
|
|
|
$comment->write();
|
|
|
|
$this->assertFalse($comment->isPreview());
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testCanCreate()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
// admin can create - this is always false
|
|
|
|
$this->logInAs('commentadmin');
|
|
|
|
$this->assertFalse($comment->canCreate());
|
|
|
|
|
|
|
|
// visitor can view
|
|
|
|
$this->logInAs('visitor');
|
|
|
|
$this->assertFalse($comment->canCreate());
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testCanView()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
// admin can view
|
|
|
|
$this->logInAs('commentadmin');
|
|
|
|
$this->assertTrue($comment->canView());
|
|
|
|
|
|
|
|
// visitor can view
|
|
|
|
$this->logInAs('visitor');
|
|
|
|
$this->assertTrue($comment->canView());
|
|
|
|
|
|
|
|
$comment->ParentID = 0;
|
|
|
|
$comment->write();
|
|
|
|
$this->assertFalse($comment->canView());
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testCanEdit()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
// admin can edit
|
|
|
|
$this->logInAs('commentadmin');
|
|
|
|
$this->assertTrue($comment->canEdit());
|
|
|
|
|
|
|
|
// visitor cannot
|
|
|
|
$this->logInAs('visitor');
|
|
|
|
$this->assertFalse($comment->canEdit());
|
|
|
|
|
|
|
|
$comment->ParentID = 0;
|
|
|
|
$comment->write();
|
|
|
|
$this->assertFalse($comment->canEdit());
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testCanDelete()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
// admin can delete
|
|
|
|
$this->logInAs('commentadmin');
|
|
|
|
$this->assertTrue($comment->canDelete());
|
|
|
|
|
|
|
|
// visitor cannot
|
|
|
|
$this->logInAs('visitor');
|
|
|
|
$this->assertFalse($comment->canDelete());
|
|
|
|
|
|
|
|
$comment->ParentID = 0;
|
|
|
|
$comment->write();
|
|
|
|
$this->assertFalse($comment->canDelete());
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGetMember()
|
|
|
|
{
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->logInAs('visitor');
|
2017-09-18 04:16:24 +02:00
|
|
|
$current = Security::getCurrentUser();
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$method = $this->getMethod('getMember');
|
|
|
|
|
|
|
|
// null case
|
|
|
|
$member = $method->invokeArgs($comment, array());
|
2017-09-18 04:16:24 +02:00
|
|
|
$this->assertEquals($current->ID, $member->ID);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
// numeric ID case
|
|
|
|
$member = $method->invokeArgs($comment, array($current->ID));
|
2017-09-18 04:16:24 +02:00
|
|
|
$this->assertEquals($current->ID, $member->ID);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
// identity case
|
|
|
|
$member = $method->invokeArgs($comment, array($current));
|
2017-09-18 04:16:24 +02:00
|
|
|
$this->assertEquals($current->ID, $member->ID);
|
2016-01-07 07:59:10 +01:00
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGetAuthorName()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
'FA',
|
|
|
|
$comment->getAuthorName()
|
|
|
|
);
|
|
|
|
|
|
|
|
$comment->Name = '';
|
|
|
|
$this->assertEquals(
|
|
|
|
'',
|
|
|
|
$comment->getAuthorName()
|
|
|
|
);
|
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
$author = $this->objFromFixture(Member::class, 'visitor');
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->AuthorID = $author->ID;
|
|
|
|
$comment->write();
|
|
|
|
$this->assertEquals(
|
|
|
|
'visitor',
|
|
|
|
$comment->getAuthorName()
|
|
|
|
);
|
|
|
|
|
|
|
|
// null the names, expect null back
|
|
|
|
$comment->Name = null;
|
|
|
|
$comment->AuthorID = 0;
|
|
|
|
$this->assertNull($comment->getAuthorName());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testLinks()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->logInAs('commentadmin');
|
|
|
|
|
|
|
|
$method = $this->getMethod('ActionLink');
|
|
|
|
|
|
|
|
// test with starts of strings and tokens and salts change each time
|
2021-10-27 07:03:55 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-01-16 20:57:37 +01:00
|
|
|
'/comments/theaction/' . $comment->ID,
|
2016-01-07 07:59:10 +01:00
|
|
|
$method->invokeArgs($comment, array('theaction'))
|
|
|
|
);
|
|
|
|
|
2021-10-27 07:03:55 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-01-16 20:57:37 +01:00
|
|
|
'/comments/delete/' . $comment->ID,
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->DeleteLink()
|
|
|
|
);
|
|
|
|
|
2021-10-27 07:03:55 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-01-16 20:57:37 +01:00
|
|
|
'/comments/spam/' . $comment->ID,
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->SpamLink()
|
|
|
|
);
|
|
|
|
|
|
|
|
$comment->markSpam();
|
2021-10-27 07:03:55 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-01-16 20:57:37 +01:00
|
|
|
'/comments/ham/' . $comment->ID,
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->HamLink()
|
|
|
|
);
|
|
|
|
|
|
|
|
//markApproved
|
|
|
|
$comment->markUnapproved();
|
2021-10-27 07:03:55 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-01-16 20:57:37 +01:00
|
|
|
'/comments/approve/' . $comment->ID,
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->ApproveLink()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testMarkSpam()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->markSpam();
|
|
|
|
$this->assertTrue($comment->Moderated);
|
|
|
|
$this->assertTrue($comment->IsSpam);
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testMarkApproved()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->markApproved();
|
|
|
|
$this->assertTrue($comment->Moderated);
|
|
|
|
$this->assertFalse($comment->IsSpam);
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testMarkUnapproved()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->markApproved();
|
|
|
|
$this->assertTrue($comment->Moderated);
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testSpamClass()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertEquals('notspam', $comment->spamClass());
|
|
|
|
$comment->Moderated = false;
|
|
|
|
$this->assertEquals('unmoderated', $comment->spamClass());
|
|
|
|
$comment->IsSpam = true;
|
|
|
|
$this->assertEquals('spam', $comment->spamClass());
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGetTitle()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
'Comment by FA on First',
|
|
|
|
$comment->getTitle()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGetCMSFields()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$fields = $comment->getCMSFields();
|
2019-05-09 23:33:18 +02:00
|
|
|
$names = [];
|
2016-01-07 07:59:10 +01:00
|
|
|
foreach ($fields as $field) {
|
|
|
|
$names[] = $field->getName();
|
|
|
|
}
|
2019-05-09 23:33:18 +02:00
|
|
|
$expected = [
|
2016-01-07 07:59:10 +01:00
|
|
|
'Created',
|
|
|
|
'Name',
|
|
|
|
'Comment',
|
|
|
|
'Email',
|
|
|
|
'URL',
|
2019-05-09 23:33:18 +02:00
|
|
|
'Options',
|
|
|
|
];
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertEquals($expected, $names);
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGetCMSFieldsCommentHasAuthor()
|
|
|
|
{
|
2016-01-07 07:59:10 +01:00
|
|
|
$member = Member::get()->filter('FirstName', 'visitor')->first();
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->AuthorID = $member->ID;
|
|
|
|
$comment->write();
|
|
|
|
|
|
|
|
$fields = $comment->getCMSFields();
|
2019-05-09 23:33:18 +02:00
|
|
|
$names = [];
|
2016-01-07 07:59:10 +01:00
|
|
|
foreach ($fields as $field) {
|
|
|
|
$names[] = $field->getName();
|
|
|
|
}
|
2019-05-09 23:33:18 +02:00
|
|
|
$expected = [
|
2016-01-07 07:59:10 +01:00
|
|
|
'Created',
|
|
|
|
'Name',
|
|
|
|
'AuthorMember',
|
|
|
|
'Comment',
|
|
|
|
'Email',
|
|
|
|
'URL',
|
2019-05-09 23:33:18 +02:00
|
|
|
'Options',
|
|
|
|
];
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertEquals($expected, $names);
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGetCMSFieldsWithParentComment()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
$child = new Comment();
|
|
|
|
$child->Name = 'John Smith';
|
|
|
|
$child->Comment = 'This is yet another test commnent';
|
|
|
|
$child->ParentCommentID = $comment->ID;
|
|
|
|
$child->write();
|
|
|
|
|
|
|
|
$fields = $child->getCMSFields();
|
2019-05-09 23:33:18 +02:00
|
|
|
$names = [];
|
2016-01-07 07:59:10 +01:00
|
|
|
foreach ($fields as $field) {
|
|
|
|
$names[] = $field->getName();
|
|
|
|
}
|
2019-05-09 23:33:18 +02:00
|
|
|
$expected = [
|
2016-01-07 07:59:10 +01:00
|
|
|
'Created',
|
|
|
|
'Name',
|
|
|
|
'Comment',
|
|
|
|
'Email',
|
|
|
|
'URL',
|
2017-01-16 20:57:37 +01:00
|
|
|
'Options',
|
2016-01-07 07:59:10 +01:00
|
|
|
'ParentComment_Title',
|
|
|
|
'ParentComment_Created',
|
|
|
|
'ParentComment_AuthorName',
|
2019-05-09 23:33:18 +02:00
|
|
|
'ParentComment_EscapedComment',
|
|
|
|
];
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertEquals($expected, $names);
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testPurifyHtml()
|
|
|
|
{
|
2017-09-18 04:16:24 +02:00
|
|
|
if (!class_exists(HTMLPurifier_Config::class)) {
|
|
|
|
$this->markTestSkipped('HTMLPurifier class not found');
|
|
|
|
}
|
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
$dirtyHTML = '<p><script>alert("w00t")</script>my comment</p>';
|
|
|
|
$this->assertEquals(
|
|
|
|
'my comment',
|
|
|
|
$comment->purifyHtml($dirtyHTML)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGravatar()
|
|
|
|
{
|
2016-01-07 07:59:10 +01:00
|
|
|
// Turn gravatars on
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2017-09-18 04:16:24 +02:00
|
|
|
'use_gravatar' => true,
|
|
|
|
'gravatar_size' => 80,
|
|
|
|
'gravatar_default' => 'identicon',
|
2019-05-09 23:33:18 +02:00
|
|
|
'gravatar_rating' => 'g',
|
|
|
|
]);
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
$this->assertEquals(
|
2018-05-11 15:02:00 +02:00
|
|
|
'https://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?s'
|
2017-01-16 20:57:37 +01:00
|
|
|
. '=80&d=identicon&r=g',
|
2017-09-18 04:16:24 +02:00
|
|
|
$comment->Gravatar()
|
2016-01-07 07:59:10 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
// Turn gravatars off
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
|
|
|
'use_gravatar' => false,
|
|
|
|
]);
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
'',
|
2017-09-18 04:16:24 +02:00
|
|
|
$comment->Gravatar()
|
2016-01-07 07:59:10 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGetRepliesEnabled()
|
|
|
|
{
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
|
|
|
'nested_comments' => false,
|
|
|
|
]);
|
2017-09-18 04:16:24 +02:00
|
|
|
|
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertFalse($comment->getRepliesEnabled());
|
|
|
|
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-01-07 07:59:10 +01:00
|
|
|
'nested_comments' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
'nested_depth' => 4,
|
|
|
|
]);
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertTrue($comment->getRepliesEnabled());
|
|
|
|
|
|
|
|
$comment->Depth = 4;
|
|
|
|
$this->assertFalse($comment->getRepliesEnabled());
|
2016-02-13 15:22:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
// 0 indicates no limit for nested_depth
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-02-13 15:22:07 +01:00
|
|
|
'nested_comments' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
'nested_depth' => 0,
|
|
|
|
]);
|
2016-02-13 15:22:07 +01:00
|
|
|
|
2017-09-18 04:16:24 +02:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-02-13 15:22:07 +01:00
|
|
|
$comment->Depth = 234;
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2016-02-13 15:22:07 +01:00
|
|
|
$comment->markUnapproved();
|
|
|
|
$this->assertFalse($comment->getRepliesEnabled());
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2016-02-13 15:22:07 +01:00
|
|
|
$comment->markSpam();
|
|
|
|
$this->assertFalse($comment->getRepliesEnabled());
|
|
|
|
|
|
|
|
$comment->markApproved();
|
|
|
|
$this->assertTrue($comment->getRepliesEnabled());
|
2016-01-07 07:59:10 +01:00
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testAllReplies()
|
|
|
|
{
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-01-07 07:59:10 +01:00
|
|
|
'nested_comments' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
'nested_depth' => 4,
|
|
|
|
]);
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
3,
|
|
|
|
$comment->allReplies()->count()
|
|
|
|
);
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2016-01-07 07:59:10 +01:00
|
|
|
$child = new Comment();
|
|
|
|
$child->Name = 'Fred Smith';
|
|
|
|
$child->Comment = 'This is a child comment';
|
|
|
|
$child->ParentCommentID = $comment->ID;
|
|
|
|
|
|
|
|
// spam should be returned by this method
|
|
|
|
$child->markSpam();
|
|
|
|
$child->write();
|
|
|
|
$replies = $comment->allReplies();
|
|
|
|
$this->assertEquals(
|
|
|
|
4,
|
|
|
|
$comment->allReplies()->count()
|
|
|
|
);
|
|
|
|
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
|
|
|
'nested_comments' => false,
|
|
|
|
]);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
$this->assertEquals(0, $comment->allReplies()->count());
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testReplies()
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
CommentableItem::add_extension(CommentsExtension::class);
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->logInWithPermission('ADMIN');
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-01-07 07:59:10 +01:00
|
|
|
'nested_comments' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
'nested_depth' => 4,
|
|
|
|
]);
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
3,
|
|
|
|
$comment->Replies()->count()
|
|
|
|
);
|
|
|
|
|
|
|
|
// Test that spam comments are not returned
|
|
|
|
$childComment = $comment->Replies()->first();
|
|
|
|
$childComment->IsSpam = 1;
|
|
|
|
$childComment->write();
|
|
|
|
$this->assertEquals(
|
|
|
|
2,
|
|
|
|
$comment->Replies()->count()
|
|
|
|
);
|
|
|
|
|
|
|
|
// Test that unmoderated comments are not returned
|
|
|
|
//
|
|
|
|
$childComment = $comment->Replies()->first();
|
|
|
|
|
|
|
|
// FIXME - moderation settings scenarios need checked here
|
|
|
|
$childComment->Moderated = 0;
|
|
|
|
$childComment->IsSpam = 0;
|
|
|
|
$childComment->write();
|
|
|
|
$this->assertEquals(
|
|
|
|
2,
|
|
|
|
$comment->Replies()->count()
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
// Test moderation required on the front end
|
2017-01-16 20:57:37 +01:00
|
|
|
$item = $this->objFromFixture(CommentableItem::class, 'first');
|
2016-01-07 07:59:10 +01:00
|
|
|
$item->ModerationRequired = 'Required';
|
|
|
|
$item->write();
|
|
|
|
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItemDisabled::class, 'comments', [
|
2016-01-07 07:59:10 +01:00
|
|
|
'nested_comments' => true,
|
|
|
|
'nested_depth' => 4,
|
2019-05-09 23:33:18 +02:00
|
|
|
'frontend_moderation' => true,
|
|
|
|
]);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = DataObject::get_by_id(Comment::class, $comment->ID);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
2,
|
|
|
|
$comment->Replies()->count()
|
|
|
|
);
|
|
|
|
|
|
|
|
// Turn off nesting, empty array should be returned
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
|
|
|
'nested_comments' => false,
|
|
|
|
]);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
0,
|
|
|
|
$comment->Replies()->count()
|
|
|
|
);
|
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
CommentableItem::remove_extension(CommentsExtension::class);
|
2016-01-07 07:59:10 +01:00
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testPagedReplies()
|
|
|
|
{
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-01-07 07:59:10 +01:00
|
|
|
'nested_comments' => true,
|
|
|
|
'nested_depth' => 4,
|
2019-05-09 23:33:18 +02:00
|
|
|
'comments_per_page' => 2,
|
|
|
|
]);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$pagedList = $comment->pagedReplies();
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
2,
|
|
|
|
$pagedList->TotalPages()
|
|
|
|
);
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
3,
|
|
|
|
$pagedList->getTotalItems()
|
|
|
|
);
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
|
|
|
'nested_comments' => false,
|
|
|
|
]);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
$this->assertEquals(0, $comment->PagedReplies()->count());
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testReplyForm()
|
|
|
|
{
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-01-07 07:59:10 +01:00
|
|
|
'nested_comments' => false,
|
2019-05-09 23:33:18 +02:00
|
|
|
'nested_depth' => 4,
|
|
|
|
]);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
// No nesting, no reply form
|
|
|
|
$form = $comment->replyForm();
|
|
|
|
$this->assertNull($form);
|
|
|
|
|
|
|
|
// parent item so show form
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-01-07 07:59:10 +01:00
|
|
|
'nested_comments' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
'nested_depth' => 4,
|
|
|
|
]);
|
2017-09-18 04:16:24 +02:00
|
|
|
$form = $comment->ReplyForm();
|
|
|
|
$this->assertNotNull($form);
|
2019-05-09 23:33:18 +02:00
|
|
|
$names = [];
|
2017-09-18 04:16:24 +02:00
|
|
|
|
2016-01-07 07:59:10 +01:00
|
|
|
foreach ($form->Fields() as $field) {
|
|
|
|
array_push($names, $field->getName());
|
|
|
|
}
|
|
|
|
|
2018-05-29 08:56:27 +02:00
|
|
|
$this->assertContains('NameEmailURLComment', $names, 'The CompositeField name');
|
|
|
|
$this->assertContains('ParentID', $names);
|
|
|
|
$this->assertContains('ParentClassName', $names);
|
|
|
|
$this->assertContains('ReturnURL', $names);
|
|
|
|
$this->assertContains('ParentCommentID', $names);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
|
|
|
// no parent, no reply form
|
|
|
|
|
|
|
|
$comment->ParentID = 0;
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment->ParentClass = null;
|
2016-01-07 07:59:10 +01:00
|
|
|
$comment->write();
|
|
|
|
$form = $comment->replyForm();
|
|
|
|
$this->assertNull($form);
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testUpdateDepth()
|
|
|
|
{
|
2019-05-09 23:33:18 +02:00
|
|
|
Config::modify()->merge(CommentableItem::class, 'comments', [
|
2016-01-07 07:59:10 +01:00
|
|
|
'nested_comments' => true,
|
2019-05-09 23:33:18 +02:00
|
|
|
'nested_depth' => 4,
|
|
|
|
]);
|
2016-01-07 07:59:10 +01:00
|
|
|
|
2017-01-16 20:57:37 +01:00
|
|
|
$comment = $this->objFromFixture(Comment::class, 'firstComA');
|
2016-01-07 07:59:10 +01:00
|
|
|
$children = $comment->allReplies()->toArray();
|
|
|
|
// Make the second child a child of the first
|
|
|
|
// Make the third child a child of the second
|
|
|
|
$reply1 = $children[0];
|
|
|
|
$reply2 = $children[1];
|
|
|
|
$reply3 = $children[2];
|
|
|
|
$reply2->ParentCommentID = $reply1->ID;
|
|
|
|
$reply2->write();
|
|
|
|
$this->assertEquals(3, $reply2->Depth);
|
|
|
|
$reply3->ParentCommentID = $reply2->ID;
|
|
|
|
$reply3->write();
|
|
|
|
$this->assertEquals(4, $reply3->Depth);
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGetToken()
|
|
|
|
{
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->markTestSkipped('TODO');
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testMemberSalt()
|
|
|
|
{
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->markTestSkipped('TODO');
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testAddToUrl()
|
|
|
|
{
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->markTestSkipped('TODO');
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testCheckRequest()
|
|
|
|
{
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->markTestSkipped('TODO');
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
public function testGenerate()
|
|
|
|
{
|
2016-01-07 07:59:10 +01:00
|
|
|
$this->markTestSkipped('TODO');
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:48:25 +01:00
|
|
|
protected static function getMethod($name)
|
|
|
|
{
|
2017-01-16 20:57:37 +01:00
|
|
|
$class = new ReflectionClass(Comment::class);
|
2016-01-07 07:59:10 +01:00
|
|
|
$method = $class->getMethod($name);
|
|
|
|
$method->setAccessible(true);
|
|
|
|
return $method;
|
|
|
|
}
|
2010-11-29 23:24:17 +01:00
|
|
|
}
|