You are here

RouterPermissionTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/system/src/Tests/Routing/RouterPermissionTest.php

File

core/modules/system/src/Tests/Routing/RouterPermissionTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\system\Tests\Routing\RouterPermissionTest.
 */
namespace Drupal\system\Tests\Routing;

use Drupal\simpletest\WebTestBase;

/**
 * Function Tests for the routing permission system.
 *
 * @group Routing
 */
class RouterPermissionTest extends WebTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'router_test',
  );

  /**
   * Tests permission requirements on routes.
   */
  public function testPermissionAccess() {
    $path = 'router_test/test7';
    $this
      ->drupalGet($path);
    $this
      ->assertResponse(403, "Access denied for a route where we don't have a permission");
    $this
      ->drupalGet('router_test/test8');
    $this
      ->assertResponse(403, 'Access denied by default if no access specified');
    $user = $this
      ->drupalCreateUser(array(
      'access test7',
    ));
    $this
      ->drupalLogin($user);
    $this
      ->drupalGet('router_test/test7');
    $this
      ->assertResponse(200);
    $this
      ->assertNoRaw('Access denied');
    $this
      ->assertRaw('test7text', 'The correct string was returned because the route was successful.');
  }

}

Classes

Namesort descending Description
RouterPermissionTest Function Tests for the routing permission system.