You are here

node_expire.admin.test in Node expire 7.2

Same filename and directory in other branches
  1. 8 tests/node_expire.admin.test
  2. 7 tests/node_expire.admin.test

Contains NodeExpireAdminTestCase.

File

tests/node_expire.admin.test
View source
<?php

/**
 * @file
 * Contains NodeExpireAdminTestCase.
 */

/**
 * Test for Node Expire admin UI.
 */
class NodeExpireAdminTestCase extends DrupalWebTestCase {

  /**
   * Implements getInfo().
   */
  public static function getInfo() {
    return array(
      'name' => 'Node Expire UI',
      'description' => 'Tests for the administrative UI.',
      'group' => 'Node Expire',
    );
  }

  /**
   * Overrides setUp().
   */
  public function setUp() {
    parent::setUp(array(
      'rules',
      'node_expire',
    ));

    // Create test user.
    $this->admin_user = $this
      ->drupalCreateUser(array(
      'access content',
      'administer content types',
      'administer site configuration',
      'administer modules',
    ));
    $this
      ->drupalLogin($this->admin_user);

    // Create content type, with underscores.
    $type_name = strtolower($this
      ->randomName(8)) . '_test';
    $type = $this
      ->drupalCreateContentType(array(
      'name' => $type_name,
      'type' => $type_name,
    ));
    $this->type = $type->type;

    // Store a valid URL name, with hyphens instead of underscores.
    $this->hyphen_type = str_replace('_', '-', $this->type);
  }

  /**
   * Makes test.
   */
  public function testFieldAdminHandler() {
    $test_path = 'admin/config/workflow/node_expire/settings';
    $this
      ->drupalGet($test_path);
    $this
      ->assertText(t('Allow expire date in the past'), 'The text "Allow expire date in the past" appears on the Node expire settings page.');
  }

}

Classes

Namesort descending Description
NodeExpireAdminTestCase Test for Node Expire admin UI.