silverstripe-framework/tests/php/Forms/GridField/GridFieldDeleteActionTest.php

189 lines
5.7 KiB
PHP
Raw Normal View History

<?php
2016-10-14 03:30:05 +02:00
namespace SilverStripe\Forms\Tests\GridField;
use SilverStripe\Control\HTTPResponse_Exception;
use SilverStripe\Forms\Tests\GridField\GridFieldTest\Cheerleader;
use SilverStripe\Forms\Tests\GridField\GridFieldTest\Permissions;
use SilverStripe\Forms\Tests\GridField\GridFieldTest\Player;
use SilverStripe\Forms\Tests\GridField\GridFieldTest\Team;
use SilverStripe\ORM\ArrayList;
use SilverStripe\ORM\DataList;
2016-10-14 03:30:05 +02:00
use SilverStripe\ORM\ValidationException;
2016-06-23 01:37:22 +02:00
use SilverStripe\Security\Member;
use SilverStripe\Security\SecurityToken;
use SilverStripe\Dev\CSSContentParser;
use SilverStripe\Dev\SapphireTest;
use SilverStripe\Control\Controller;
2016-09-09 08:43:05 +02:00
use SilverStripe\Control\HTTPRequest;
use SilverStripe\Control\Session;
use SilverStripe\Forms\FieldList;
use SilverStripe\Forms\Form;
use SilverStripe\Forms\GridField\GridFieldConfig;
use SilverStripe\Forms\GridField\GridFieldDeleteAction;
use SilverStripe\Forms\GridField\GridField;
class GridFieldDeleteActionTest extends SapphireTest {
/** @var ArrayList */
protected $list;
2014-08-15 08:53:05 +02:00
/** @var GridField */
protected $gridField;
2014-08-15 08:53:05 +02:00
/** @var Form */
protected $form;
2014-08-15 08:53:05 +02:00
/** @var string */
protected static $fixture_file = 'GridFieldActionTest.yml';
/** @var array */
2016-10-14 03:30:05 +02:00
protected $extraDataObjects = [
Team::class,
Cheerleader::class,
Player::class,
Permissions::class
];
2014-08-15 08:53:05 +02:00
public function setUp() {
parent::setUp();
2016-10-14 03:30:05 +02:00
$this->list = new DataList(Team::class);
$config = GridFieldConfig::create()->addComponent(new GridFieldDeleteAction());
$this->gridField = new GridField('testfield', 'testfield', $this->list, $config);
$this->form = new Form(new Controller(), 'mockform', new FieldList(array($this->gridField)), new FieldList());
}
2014-08-15 08:53:05 +02:00
public function testDontShowDeleteButtons() {
if(Member::currentUser()) { Member::currentUser()->logOut(); }
$content = new CSSContentParser($this->gridField->FieldHolder());
// Check that there are content
$this->assertEquals(4, count($content->getBySelector('.ss-gridfield-item')));
// Make sure that there are no delete buttons
$this->assertEquals(0, count($content->getBySelector('.gridfield-button-delete')),
'Delete buttons should not show when not logged in.');
}
2014-08-15 08:53:05 +02:00
public function testShowDeleteButtonsWithAdminPermission() {
$this->logInWithPermission('ADMIN');
$content = new CSSContentParser($this->gridField->FieldHolder());
$deleteButtons = $content->getBySelector('.gridfield-button-delete');
$this->assertEquals(3, count($deleteButtons), 'Delete buttons should show when logged in.');
}
2014-08-15 08:53:05 +02:00
public function testActionsRequireCSRF() {
$this->logInWithPermission('ADMIN');
$this->setExpectedException(
2016-10-14 03:30:05 +02:00
HTTPResponse_Exception::class,
_t("Form.CSRF_FAILED_MESSAGE",
"There seems to have been a technical problem. Please click the back button, ".
"refresh your browser, and try again."
),
400
);
$stateID = 'testGridStateActionField';
2016-09-09 08:43:05 +02:00
$request = new HTTPRequest(
'POST',
'url',
array(),
array(
'action_gridFieldAlterAction?StateID='.$stateID,
'SecurityID' => null,
)
);
$this->gridField->gridFieldAlterAction(array('StateID'=>$stateID), $this->form, $request);
}
public function testDeleteActionWithoutCorrectPermission() {
2016-10-14 03:30:05 +02:00
if(Member::currentUser()) {
Member::currentUser()->logOut();
}
$this->setExpectedException(ValidationException::class);
2014-08-15 08:53:05 +02:00
$stateID = 'testGridStateActionField';
Session::set(
$stateID,
array(
'grid' => '',
'actionName' => 'deleterecord',
'args' => array(
2016-10-14 03:30:05 +02:00
'RecordID' => $this->idFromFixture(Team::class, 'team1')
)
)
);
$token = SecurityToken::inst();
2016-09-09 08:43:05 +02:00
$request = new HTTPRequest(
'POST',
'url',
array(),
array(
'action_gridFieldAlterAction?StateID='.$stateID => true,
$token->getName() => $token->getValue(),
)
);
$this->gridField->gridFieldAlterAction(array('StateID'=>$stateID), $this->form, $request);
$this->assertEquals(3, $this->list->count(),
'User should\'t be able to delete records without correct permissions.');
}
2014-08-15 08:53:05 +02:00
public function testDeleteActionWithAdminPermission() {
$this->logInWithPermission('ADMIN');
$stateID = 'testGridStateActionField';
Session::set(
$stateID,
array(
'grid'=>'',
'actionName'=>'deleterecord',
'args' => array(
2016-10-14 03:30:05 +02:00
'RecordID' => $this->idFromFixture(Team::class, 'team1')
)
)
);
$token = SecurityToken::inst();
2016-09-09 08:43:05 +02:00
$request = new HTTPRequest(
'POST',
'url',
array(),
array(
'action_gridFieldAlterAction?StateID='.$stateID=>true,
$token->getName() => $token->getValue(),
)
);
$this->gridField->gridFieldAlterAction(array('StateID'=>$stateID), $this->form, $request);
$this->assertEquals(2, $this->list->count(), 'User should be able to delete records with ADMIN permission.');
}
2014-08-15 08:53:05 +02:00
public function testDeleteActionRemoveRelation() {
$this->logInWithPermission('ADMIN');
2014-08-15 08:53:05 +02:00
$config = GridFieldConfig::create()->addComponent(new GridFieldDeleteAction(true));
2014-08-15 08:53:05 +02:00
$gridField = new GridField('testfield', 'testfield', $this->list, $config);
$form = new Form(new Controller(), 'mockform', new FieldList(array($this->gridField)), new FieldList());
2014-08-15 08:53:05 +02:00
$stateID = 'testGridStateActionField';
Session::set(
$stateID,
array(
'grid'=>'',
'actionName'=>'deleterecord',
'args' => array(
2016-10-14 03:30:05 +02:00
'RecordID' => $this->idFromFixture(Team::class, 'team1')
)
)
);
$token = SecurityToken::inst();
2016-09-09 08:43:05 +02:00
$request = new HTTPRequest(
'POST',
'url',
array(),
array(
'action_gridFieldAlterAction?StateID='.$stateID=>true,
$token->getName() => $token->getValue(),
)
);
$this->gridField->gridFieldAlterAction(array('StateID'=>$stateID), $this->form, $request);
$this->assertEquals(2, $this->list->count(), 'User should be able to delete records with ADMIN permission.');
2014-08-15 08:53:05 +02:00
}
}