|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace SilverStripe\Blog\Tests; |
|
4
|
|
|
|
|
5
|
|
|
use SilverStripe\Blog\Model\BlogPost; |
|
6
|
|
|
use SilverStripe\Core\Config\Config; |
|
7
|
|
|
use SilverStripe\Dev\SapphireTest; |
|
8
|
|
|
use SilverStripe\ORM\FieldType\DBDatetime; |
|
9
|
|
|
use SilverStripe\Security\Member; |
|
10
|
|
|
|
|
11
|
|
|
class BlogPostTest extends SapphireTest |
|
12
|
|
|
{ |
|
13
|
|
|
/** |
|
14
|
|
|
* {@inheritDoc} |
|
15
|
|
|
* @var string |
|
16
|
|
|
*/ |
|
17
|
|
|
protected static $fixture_file = 'blog.yml'; |
|
18
|
|
|
|
|
19
|
|
|
/** |
|
20
|
|
|
* {@inheritdoc} |
|
21
|
|
|
*/ |
|
22
|
|
|
public function tearDown() |
|
23
|
|
|
{ |
|
24
|
|
|
DBDatetime::clear_mock_now(); |
|
25
|
|
|
parent::tearDown(); |
|
26
|
|
|
} |
|
27
|
|
|
|
|
28
|
|
|
/** |
|
29
|
|
|
* @dataProvider canViewProvider |
|
30
|
|
|
*/ |
|
31
|
|
|
public function testCanView($date, $user, $page, $canView) |
|
32
|
|
|
{ |
|
33
|
|
|
$userRecord = $this->objFromFixture(Member::class, $user); |
|
34
|
|
|
$pageRecord = $this->objFromFixture(BlogPost::class, $page); |
|
35
|
|
|
DBDatetime::set_mock_now($date); |
|
36
|
|
|
$this->assertEquals($canView, $pageRecord->canView($userRecord)); |
|
|
|
|
|
|
37
|
|
|
} |
|
38
|
|
|
|
|
39
|
|
|
/** |
|
40
|
|
|
* @return array |
|
41
|
|
|
*/ |
|
42
|
|
|
public function canViewProvider() |
|
43
|
|
|
{ |
|
44
|
|
|
$someFutureDate = '2013-10-10 20:00:00'; |
|
45
|
|
|
$somePastDate = '2009-10-10 20:00:00'; |
|
46
|
|
|
return array( |
|
47
|
|
|
// Check this post given the date has passed |
|
48
|
|
|
array($someFutureDate, 'Editor', 'PostA', true), |
|
49
|
|
|
array($someFutureDate, 'Contributor', 'PostA', true), |
|
50
|
|
|
array($someFutureDate, 'BlogEditor', 'PostA', true), |
|
51
|
|
|
array($someFutureDate, 'Writer', 'PostA', true), |
|
52
|
|
|
|
|
53
|
|
|
// Check unpublished pages |
|
54
|
|
|
array($somePastDate, 'Editor', 'PostA', true), |
|
55
|
|
|
array($somePastDate, 'Contributor', 'PostA', true), |
|
56
|
|
|
array($somePastDate, 'BlogEditor', 'PostA', true), |
|
57
|
|
|
array($somePastDate, 'Writer', 'PostA', true), |
|
58
|
|
|
|
|
59
|
|
|
// Test a page that was authored by another user |
|
60
|
|
|
|
|
61
|
|
|
// Check this post given the date has passed |
|
62
|
|
|
array($someFutureDate, 'Editor', 'FirstBlogPost', true), |
|
63
|
|
|
array($someFutureDate, 'Contributor', 'FirstBlogPost', true), |
|
64
|
|
|
array($someFutureDate, 'BlogEditor', 'FirstBlogPost', true), |
|
65
|
|
|
array($someFutureDate, 'Writer', 'FirstBlogPost', true), |
|
66
|
|
|
|
|
67
|
|
|
// Check future pages - non-editors shouldn't be able to see this |
|
68
|
|
|
array($somePastDate, 'Editor', 'FirstBlogPost', true), |
|
69
|
|
|
array($somePastDate, 'Contributor', 'FirstBlogPost', false), |
|
70
|
|
|
array($somePastDate, 'BlogEditor', 'FirstBlogPost', false), |
|
71
|
|
|
array($somePastDate, 'Writer', 'FirstBlogPost', false), |
|
72
|
|
|
); |
|
73
|
|
|
} |
|
74
|
|
|
|
|
75
|
|
|
public function testCandidateAuthors() |
|
76
|
|
|
{ |
|
77
|
|
|
$blogpost = $this->objFromFixture(BlogPost::class, 'PostC'); |
|
78
|
|
|
|
|
79
|
|
|
$this->assertEquals(7, $blogpost->getCandidateAuthors()->count()); |
|
80
|
|
|
|
|
81
|
|
|
//Set the group to draw Members from |
|
82
|
|
|
Config::inst()->update(BlogPost::class, 'restrict_authors_to_group', 'blogusers'); |
|
83
|
|
|
|
|
84
|
|
|
$this->assertEquals(3, $blogpost->getCandidateAuthors()->count()); |
|
85
|
|
|
|
|
86
|
|
|
// Test cms field is generated |
|
87
|
|
|
$fields = $blogpost->getCMSFields(); |
|
88
|
|
|
$this->assertNotEmpty($fields->dataFieldByName('Authors')); |
|
89
|
|
|
} |
|
90
|
|
|
|
|
91
|
|
View Code Duplication |
public function testCanViewFuturePost() |
|
|
|
|
|
|
92
|
|
|
{ |
|
93
|
|
|
$blogPost = $this->objFromFixture(BlogPost::class, 'NullPublishDate'); |
|
94
|
|
|
|
|
95
|
|
|
$editor = $this->objFromFixture(Member::class, 'BlogEditor'); |
|
96
|
|
|
$this->assertTrue($blogPost->canView($editor)); |
|
|
|
|
|
|
97
|
|
|
|
|
98
|
|
|
$visitor = $this->objFromFixture(Member::class, 'Visitor'); |
|
99
|
|
|
$this->assertFalse($blogPost->canView($visitor)); |
|
|
|
|
|
|
100
|
|
|
} |
|
101
|
|
|
|
|
102
|
|
|
/** |
|
103
|
|
|
* The purpose of getDate() is to act as a proxy for PublishDate in the default RSS |
|
104
|
|
|
* template, rather than copying the entire template. |
|
105
|
|
|
*/ |
|
106
|
|
|
public function testGetDate() |
|
107
|
|
|
{ |
|
108
|
|
|
$blogPost = $this->objFromFixture(BlogPost::class, 'NullPublishDate'); |
|
109
|
|
|
$this->assertNull($blogPost->getDate()); |
|
110
|
|
|
|
|
111
|
|
|
$blogPost = $this->objFromFixture(BlogPost::class, 'PostA'); |
|
112
|
|
|
$this->assertEquals('2012-01-09 15:00:00', $blogPost->getDate()); |
|
113
|
|
|
} |
|
114
|
|
|
} |
|
115
|
|
|
|
If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:
If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.