You are here

function ContentAccessACLTestCase::testDeleteAccess in Content Access 5

Same name and namespace in other branches
  1. 6 tests/content_access_acl.test \ContentAccessACLTestCase::testDeleteAccess()
  2. 7 tests/content_access_acl.test \ContentAccessACLTestCase::testDeleteAccess()

Test Deleting accessibility with permissions for single users

File

tests/content_access_acl.test, line 142

Class

ContentAccessACLTestCase

Code

function testDeleteAccess() {

  // Enable ACL module
  // Exit test if module could not be enabled
  if (!$this
    ->aclModuleEnable()) {
    $this
      ->pass('No ACL module present, skipping test');
    return;
  }

  // Enable per node access control
  $this
    ->changeAccessPerNode();

  // Allow delete access for test user
  $edit = array(
    'acl[delete][add]' => $this->test_user->name,
  );
  $this
    ->drupalPostRequest('node/' . $this->node->nid . '/access', $edit, 'acl[delete][add_button]');
  $this
    ->postToCurrentPage(array(), 'Submit');

  // Logout admin, try to delete the node anonymously
  $this
    ->drupalGet(url('logout'));
  $this
    ->drupalGet(url('node/' . $this->node->nid . '/delete'));
  $this
    ->assertText(t('Access denied'), 'node is not deletable');

  // Login test user, delete access should be allowed now
  $this
    ->drupalLoginUser($this->test_user);
  $this
    ->drupalGet(url('node/' . $this->node->nid . '/delete'));
  $this
    ->assertNoText(t('Access denied'), 'node is deletable');

  // Login admin and disable per node access
  $this
    ->drupalGet(url('logout'));
  $this
    ->drupalLoginUser($this->admin_user);
  $this
    ->changeAccessPerNode(FALSE);

  // Logout admin, try to delete the node anonymously
  $this
    ->drupalGet(url('logout'));
  $this
    ->drupalGet(url('node/' . $this->node->nid . '/delete'));
  $this
    ->assertText(t('Access denied'), 'node is not deletable');

  // Login test user, delete access should be denied now
  $this
    ->drupalLoginUser($this->test_user);
  $this
    ->drupalGet(url('node/' . $this->node->nid . '/delete'));
  $this
    ->assertText(t('Access denied'), 'node is not deletable');
}