1 node.test NodeAccessFieldTestCase::testNodeAccessAdministerField()

Tests administering fields when node access is restricted.

File

core/modules/node/tests/node.test, line 3624
Tests for node.module.

Class

NodeAccessFieldTestCase

Code

function testNodeAccessAdministerField() {
  // Create a page node.
  $langcode = LANGUAGE_NONE;
  $field_data = array();
  $value = $field_data[$langcode][0]['value'] = $this->randomName();
  $node = $this->backdropCreateNode(array($this->field_name => $field_data));

  // Log in as the administrator and confirm that the field value is present.
  $this->backdropLogin($this->admin_user);
  $this->backdropGet("node/{$node->nid}");
  $this->assertText($value, 'The saved field value is visible to an administrator.');

  // Log in as the content admin and try to view the node.
  $this->backdropLogin($this->content_admin_user);
  $this->backdropGet("node/{$node->nid}");
  $this->assertText('Access denied', 'Access is denied for the content admin.');

  // Modify the field default as the content admin.
  $edit = array();
  $default = 'Sometimes words have two meanings';
  $edit["{$this->field_name}[$langcode][0][value]"] = $default;
  $this->backdropPost(
  "admin/structure/types/manage/page/fields/{$this->field_name}", 
  $edit, 
  t('Save settings')
  );

  // Log in as the administrator.
  $this->backdropLogin($this->admin_user);

  // Confirm that the existing node still has the correct field value.
  $this->backdropGet("node/{$node->nid}");
  $this->assertText($value, 'The original field value is visible to an administrator.');

  // Confirm that the new default value appears when creating a new node.
  $this->backdropGet('node/add/page');
  $this->assertRaw($default, 'The updated default value is displayed when creating a new node.');
}