mirror of
https://github.com/silverstripe/silverstripe-contentreview
synced 2024-10-22 17:05:47 +02:00
141 lines
4.9 KiB
PHP
141 lines
4.9 KiB
PHP
<?php
|
|
|
|
class SiteTreeContentReviewTest extends FunctionalTest {
|
|
|
|
public static $fixture_file = 'contentreview/tests/ContentReviewTest.yml';
|
|
|
|
public function testPermissionsExists() {
|
|
$perms = singleton('SiteTreeContentReview')->providePermissions();
|
|
$this->assertTrue(isset($perms['EDIT_CONTENT_REVIEW_FIELDS']));
|
|
}
|
|
|
|
public function testUserWithPermissionCanEdit() {
|
|
$editor = $this->objFromFixture('Member', 'editor');
|
|
$this->logInAs($editor);
|
|
$page = new Page();
|
|
$fields = $page->getSettingsFields();
|
|
$this->assertNotNull($fields->dataFieldByName('NextReviewDate'));
|
|
}
|
|
|
|
public function testUserWithoutPermissionCannotEdit() {
|
|
$author = $this->objFromFixture('Member', 'author');
|
|
$this->logInAs($author);
|
|
$page = new Page();
|
|
$fields = $page->getSettingsFields();
|
|
$this->assertNull($fields->dataFieldByName('NextReviewDate'));
|
|
}
|
|
|
|
public function testAutomaticallyToNotSetReviewDate() {
|
|
$editor = $this->objFromFixture('Member', 'editor');
|
|
$this->logInAs($editor);
|
|
|
|
$page = new Page();
|
|
$page->ReviewPeriodDays = 10;
|
|
$page->write();
|
|
$this->assertTrue($page->doPublish());
|
|
$this->assertEquals(null, $page->NextReviewDate);
|
|
}
|
|
|
|
public function testAdvanceReviewDate10Days() {
|
|
$page = new Page();
|
|
$page->ReviewPeriodDays = 10;
|
|
$this->assertTrue($page->advanceReviewDate());
|
|
$page->write();
|
|
$this->assertEquals(date('Y-m-d', strtotime('now + 10 days')), $page->NextReviewDate);
|
|
}
|
|
|
|
public function testAdvanceReviewDateNull() {
|
|
$page = new Page();
|
|
$page->ReviewPeriodDays = 0;
|
|
$this->assertFalse($page->advanceReviewDate());
|
|
$page->write();
|
|
$this->assertEquals(null, $page->NextReviewDate);
|
|
}
|
|
|
|
public function testAddReviewNote() {
|
|
$author = $this->objFromFixture('Member', 'author');
|
|
$page = $this->objFromFixture('Page', 'home');
|
|
$page->addReviewNote($author, 'This is a message');
|
|
|
|
// Get the page again to make sure it's not only cached in memory
|
|
$homepage = $this->objFromFixture('Page', 'home');
|
|
$this->assertEquals(1, $homepage->ReviewLogs()->count());
|
|
$this->assertEquals('This is a message', $homepage->ReviewLogs()->first()->Note);
|
|
}
|
|
|
|
public function testGetContentReviewOwners() {
|
|
$page = $this->objFromFixture('Page', 'group-owned');
|
|
$owners = $page->ContentReviewOwners();
|
|
$this->assertEquals(1, $owners->count());
|
|
$this->assertEquals('author@example.com', $owners->first()->Email);
|
|
}
|
|
|
|
public function testCanNotBeReviewBecauseNoReviewDate() {
|
|
SS_Datetime::set_mock_now('2010-01-01 12:00:00');
|
|
$author = $this->objFromFixture('Member', 'author');
|
|
$page = $this->objFromFixture('Page', 'no-review');
|
|
// page 'no-review' is owned by author, but there is no review date
|
|
$this->assertFalse($page->canBeReviewedBy($author));
|
|
}
|
|
|
|
public function testCanNotBeReviewedBecauseInFuture() {
|
|
SS_Datetime::set_mock_now('2010-01-01 12:00:00');
|
|
$author = $this->objFromFixture('Member', 'author');
|
|
$page = $this->objFromFixture('Page', 'staff');
|
|
// page 'staff' is owned by author, but the review date is in the future
|
|
$this->assertFalse($page->canBeReviewedBy($author));
|
|
}
|
|
|
|
public function testCanNotBeReviewedByUser() {
|
|
SS_Datetime::set_mock_now('2010-03-01 12:00:00');
|
|
$author = $this->objFromFixture('Member', 'author');
|
|
$page = $this->objFromFixture('Page', 'home');
|
|
// page 'home' doesnt have any owners
|
|
$this->assertFalse($page->canBeReviewedBy($author));
|
|
}
|
|
|
|
public function testCanBeReviewedByUser() {
|
|
SS_Datetime::set_mock_now('2010-03-01 12:00:00');
|
|
$author = $this->objFromFixture('Member', 'author');
|
|
$page = $this->objFromFixture('Page', 'staff');
|
|
// page 'staff' is owned by author
|
|
$this->assertTrue($page->canBeReviewedBy($author));
|
|
}
|
|
|
|
public function testCanNotBeReviewedByGroup() {
|
|
SS_Datetime::set_mock_now('2010-03-01 12:00:00');
|
|
$author = $this->objFromFixture('Member', 'editor');
|
|
$page = $this->objFromFixture('Page', 'contact');
|
|
// page 'contact' is owned by the authorgroup
|
|
$this->assertFalse($page->canBeReviewedBy($author));
|
|
}
|
|
|
|
public function testCanBeReviewedByGroup() {
|
|
SS_Datetime::set_mock_now('2010-03-01 12:00:00');
|
|
$author = $this->objFromFixture('Member', 'author');
|
|
$page = $this->objFromFixture('Page', 'contact');
|
|
// page 'contact' is owned by the authorgroup
|
|
$this->assertTrue($page->canBeReviewedBy($author));
|
|
}
|
|
|
|
public function testReviewActionVisibleForAuthor() {
|
|
SS_Datetime::set_mock_now('2020-03-01 12:00:00');
|
|
$page = $this->objFromFixture('Page', 'contact');
|
|
$author = $this->objFromFixture('Member', 'author');
|
|
$this->logInAs($author);
|
|
|
|
$fields = $page->getCMSActions();
|
|
$this->assertNotNull($fields->fieldByName('action_reviewed'));
|
|
}
|
|
|
|
public function testReviewActionNotVisibleForEditor() {
|
|
SS_Datetime::set_mock_now('2020-03-01 12:00:00');
|
|
$page = $this->objFromFixture('Page', 'contact');
|
|
$author = $this->objFromFixture('Member', 'editor');
|
|
$this->logInAs($author);
|
|
|
|
$fields = $page->getCMSActions();
|
|
$this->assertNull($fields->fieldByName('action_reviewed'));
|
|
}
|
|
}
|