AreaHTTPStatusCodeTest.php

Same filename and directory in other branches
  1. 9 core/modules/views/tests/src/Functional/Handler/AreaHTTPStatusCodeTest.php
  2. 8.9.x core/modules/views/tests/src/Functional/Handler/AreaHTTPStatusCodeTest.php
  3. 10 core/modules/views/tests/src/Functional/Handler/AreaHTTPStatusCodeTest.php

Namespace

Drupal\Tests\views\Functional\Handler

File

core/modules/views/tests/src/Functional/Handler/AreaHTTPStatusCodeTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\views\Functional\Handler;

use Drupal\Tests\views\Functional\ViewTestBase;
use Drupal\views\Views;

/**
 * Tests the http_status_code area handler.
 *
 * @group views
 * @see \Drupal\views\Plugin\views\area\HTTPStatusCode
 */
class AreaHTTPStatusCodeTest extends ViewTestBase {
    
    /**
     * Views used by this test.
     *
     * @var array
     */
    public static $testViews = [
        'test_http_status_code',
    ];
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    protected static $modules = [
        'node',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * Tests the area handler.
     */
    public function testHTTPStatusCodeHandler() : void {
        $this->drupalGet('test-http-status-code');
        $this->assertSession()
            ->statusCodeEquals(200);
        // Change the HTTP status code to 418.
        $view = Views::getView('test_http_status_code');
        $display =& $view->storage
            ->getDisplay('default');
        $display['display_options']['empty']['http_status_code']['status_code'] = 418;
        $view->save();
        // Test that the HTTP response is "I'm a teapot".
        $this->drupalGet('test-http-status-code');
        $this->assertSession()
            ->statusCodeEquals(418);
    }

}

Classes

Title Deprecated Summary
AreaHTTPStatusCodeTest Tests the http_status_code area handler.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.