You are here

function PublishContentWebCaseTest::testDoPublishByNodeOwner in Publish Content 5.2

Same name and namespace in other branches
  1. 6 tests/publishcontent.test \PublishContentWebCaseTest::testDoPublishByNodeOwner()

File

tests/publishcontent.test, line 150
Unit tests for Publish Content module. prerequesite: make sure that 'authenticated user' does not have any access like 'publish [content type] content' or 'unpublish [content type] content'

Class

PublishContentWebCaseTest
@file Unit tests for Publish Content module. prerequesite: make sure that 'authenticated user' does not have any access like 'publish [content type] content' or 'unpublish [content type] content'

Code

function testDoPublishByNodeOwner() {
  $type = 'page';
  $web_user = $this
    ->drupalCreateUserRolePerm(array(
    '  publish ' . $type . ' content',
    'access content',
  ));
  $this
    ->drupalLoginUser($web_user);
  $node = $this
    ->drupalCreateNode(array(
    'type' => $type,
    'uid' => $web_user->uid,
    'status' => 1,
  ));
  $this
    ->assert_current_user_can_publish_node($node);
  $this
    ->assert_current_user_cannot_unpublish_node($node);
}