function UserEditTest::testUserWellKnownChangePasswordAnon

Same name and namespace in other branches
  1. 8.9.x core/modules/user/tests/src/Functional/UserEditTest.php \Drupal\Tests\user\Functional\UserEditTest::testUserWellKnownChangePasswordAnon()
  2. 10 core/modules/user/tests/src/Functional/UserEditTest.php \Drupal\Tests\user\Functional\UserEditTest::testUserWellKnownChangePasswordAnon()
  3. 11.x core/modules/user/tests/src/Functional/UserEditTest.php \Drupal\Tests\user\Functional\UserEditTest::testUserWellKnownChangePasswordAnon()

Tests well known change password route returns 403 to anonymous user.

File

core/modules/user/tests/src/Functional/UserEditTest.php, line 190

Class

UserEditTest
Tests user edit page.

Namespace

Drupal\Tests\user\Functional

Code

public function testUserWellKnownChangePasswordAnon() {
    $this->drupalGet('.well-known/change-password');
    $this->assertSession()
        ->statusCodeEquals(403);
}

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