2015-07-08 07:42:00 +02:00
|
|
|
<?php
|
|
|
|
|
2015-11-21 07:17:29 +01:00
|
|
|
class BlogPostTest extends SapphireTest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public static $fixture_file = 'blog.yml';
|
2015-07-08 07:42:00 +02:00
|
|
|
|
2015-11-21 07:17:29 +01:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
}
|
2015-07-08 07:42:00 +02:00
|
|
|
|
2015-11-21 07:17:29 +01:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
SS_Datetime::clear_mock_now();
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
2015-07-08 07:42:00 +02:00
|
|
|
|
2015-11-21 07:17:29 +01:00
|
|
|
/**
|
|
|
|
* @dataProvider canViewProvider
|
|
|
|
*/
|
2017-11-02 23:42:23 +01:00
|
|
|
public function testCanView($date, $user, $page, $canView, $stage)
|
2015-11-21 07:17:29 +01:00
|
|
|
{
|
|
|
|
$userRecord = $this->objFromFixture('Member', $user);
|
|
|
|
$pageRecord = $this->objFromFixture('BlogPost', $page);
|
2017-11-02 23:42:23 +01:00
|
|
|
if ($stage === 'Live') {
|
|
|
|
$pageRecord->doPublish();
|
|
|
|
}
|
|
|
|
|
|
|
|
Versioned::reading_stage($stage);
|
2015-11-21 07:17:29 +01:00
|
|
|
SS_Datetime::set_mock_now($date);
|
2017-11-02 23:42:23 +01:00
|
|
|
|
2015-11-21 07:17:29 +01:00
|
|
|
$this->assertEquals($canView, $pageRecord->canView($userRecord));
|
|
|
|
}
|
2016-01-21 17:46:10 +01:00
|
|
|
|
2017-11-02 23:42:23 +01:00
|
|
|
/**
|
|
|
|
* @return array Format:
|
|
|
|
* - mock now date
|
|
|
|
* - user role (see fixture)
|
|
|
|
* - blog post fixture ID
|
|
|
|
* - expected result
|
|
|
|
* - versioned stage
|
|
|
|
*/
|
2015-11-21 07:17:29 +01:00
|
|
|
public function canViewProvider()
|
|
|
|
{
|
|
|
|
$someFutureDate = '2013-10-10 20:00:00';
|
|
|
|
$somePastDate = '2009-10-10 20:00:00';
|
|
|
|
return array(
|
|
|
|
// Check this post given the date has passed
|
2017-11-02 23:42:23 +01:00
|
|
|
array($someFutureDate, 'Editor', 'PostA', true, 'Stage'),
|
|
|
|
array($someFutureDate, 'Contributor', 'PostA', true, 'Stage'),
|
|
|
|
array($someFutureDate, 'BlogEditor', 'PostA', true, 'Stage'),
|
|
|
|
array($someFutureDate, 'Writer', 'PostA', true, 'Stage'),
|
2016-01-21 17:46:10 +01:00
|
|
|
|
2015-11-21 07:17:29 +01:00
|
|
|
// Check unpublished pages
|
2017-11-02 23:42:23 +01:00
|
|
|
array($somePastDate, 'Editor', 'PostA', true, 'Stage'),
|
|
|
|
array($somePastDate, 'Contributor', 'PostA', true, 'Stage'),
|
|
|
|
array($somePastDate, 'BlogEditor', 'PostA', true, 'Stage'),
|
|
|
|
array($somePastDate, 'Writer', 'PostA', true, 'Stage'),
|
2016-01-21 17:46:10 +01:00
|
|
|
|
2015-11-21 07:17:29 +01:00
|
|
|
// Test a page that was authored by another user
|
2015-10-29 23:13:51 +01:00
|
|
|
|
2015-11-21 07:17:29 +01:00
|
|
|
// Check this post given the date has passed
|
2017-11-02 23:42:23 +01:00
|
|
|
array($someFutureDate, 'Editor', 'FirstBlogPost', true, 'Stage'),
|
|
|
|
array($someFutureDate, 'Contributor', 'FirstBlogPost', true, 'Stage'),
|
|
|
|
array($someFutureDate, 'BlogEditor', 'FirstBlogPost', true, 'Stage'),
|
|
|
|
array($someFutureDate, 'Writer', 'FirstBlogPost', true, 'Stage'),
|
|
|
|
|
|
|
|
// Check future pages in draft stage - users with "view draft pages" permission should
|
|
|
|
// be able to see this, but visitors should not
|
|
|
|
array($somePastDate, 'Editor', 'FirstBlogPost', true, 'Stage'),
|
|
|
|
array($somePastDate, 'Contributor', 'FirstBlogPost', true, 'Stage'),
|
|
|
|
array($somePastDate, 'BlogEditor', 'FirstBlogPost', true, 'Stage'),
|
|
|
|
array($somePastDate, 'Writer', 'FirstBlogPost', true, 'Stage'),
|
|
|
|
array($somePastDate, 'Visitor', 'FirstBlogPost', false, 'Stage'),
|
|
|
|
|
|
|
|
// No future pages in live stage should be visible, even to users that can edit them (in draft)
|
|
|
|
array($somePastDate, 'Editor', 'FirstBlogPost', false, 'Live'),
|
|
|
|
array($somePastDate, 'Contributor', 'FirstBlogPost', false, 'Live'),
|
|
|
|
array($somePastDate, 'BlogEditor', 'FirstBlogPost', false, 'Live'),
|
|
|
|
array($somePastDate, 'Writer', 'FirstBlogPost', false, 'Live'),
|
|
|
|
array($somePastDate, 'Visitor', 'FirstBlogPost', false, 'Live'),
|
2015-11-21 07:17:29 +01:00
|
|
|
);
|
|
|
|
}
|
2015-10-29 23:13:51 +01:00
|
|
|
|
2015-11-21 07:17:29 +01:00
|
|
|
public function testCandidateAuthors()
|
|
|
|
{
|
|
|
|
$blogpost = $this->objFromFixture('BlogPost', 'PostC');
|
2015-10-29 23:13:51 +01:00
|
|
|
|
2015-11-21 07:17:29 +01:00
|
|
|
$this->assertEquals(7, $blogpost->getCandidateAuthors()->count());
|
2015-10-29 23:13:51 +01:00
|
|
|
|
2015-11-21 07:17:29 +01:00
|
|
|
//Set the group to draw Members from
|
2016-01-21 17:46:10 +01:00
|
|
|
Config::inst()->update('BlogPost', 'restrict_authors_to_group', 'blogusers');
|
2015-10-29 23:13:51 +01:00
|
|
|
|
2015-11-21 07:17:29 +01:00
|
|
|
$this->assertEquals(3, $blogpost->getCandidateAuthors()->count());
|
2015-11-23 03:43:27 +01:00
|
|
|
|
|
|
|
// Test cms field is generated
|
|
|
|
$fields = $blogpost->getCMSFields();
|
|
|
|
$this->assertNotEmpty($fields->dataFieldByName('Authors'));
|
2015-11-21 07:17:29 +01:00
|
|
|
}
|
2016-02-05 03:28:09 +01:00
|
|
|
|
|
|
|
public function testCanViewFuturePost()
|
|
|
|
{
|
|
|
|
$blogPost = $this->objFromFixture('BlogPost', 'NullPublishDate');
|
|
|
|
|
|
|
|
$editor = $this->objFromFixture('Member', 'BlogEditor');
|
|
|
|
$this->assertTrue($blogPost->canView($editor));
|
|
|
|
|
|
|
|
$visitor = $this->objFromFixture('Member', 'Visitor');
|
|
|
|
$this->assertFalse($blogPost->canView($visitor));
|
|
|
|
}
|
2016-05-31 04:23:45 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The purpose of getDate() is to act as a proxy for PublishDate in the default RSS
|
|
|
|
* template, rather than copying the entire template.
|
|
|
|
*/
|
|
|
|
public function testGetDate()
|
|
|
|
{
|
|
|
|
$blogPost = $this->objFromFixture('BlogPost', 'NullPublishDate');
|
|
|
|
$this->assertNull($blogPost->getDate());
|
|
|
|
|
|
|
|
$blogPost = $this->objFromFixture('BlogPost', 'PostA');
|
|
|
|
$this->assertEquals('2012-01-09 15:00:00', $blogPost->getDate());
|
|
|
|
}
|
2015-07-08 07:42:00 +02:00
|
|
|
}
|