Skip to content
Snippets Groups Projects
Verified Commit 8a748ac0 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3456738 by cmlara, Anybody, andrewbelcher, Berdir, catch: BC break in...

Issue #3456738 by cmlara, Anybody, andrewbelcher, Berdir, catch: BC break in login auth changes from #3444978

(cherry picked from commit e015f808)
parent 67b157d6
No related branches found
No related tags found
20 merge requests!10663Issue #3495778: Update phpdoc in FileSaveHtaccessLoggingTest,!10451Issue #3472458 by watergate, smustgrave: CKEditor 5 show blocks label is not translated,!103032838547 Fix punctuation rules for inline label suffix colon with CSS only,!10150Issue #3467294 by quietone, nod_, smustgrave, catch, longwave: Change string...,!10130Resolve #3480321 "Second level menu",!9936Issue #3483087: Check the module:// prefix in the translation server path and replace it with the actual module path,!9933Issue #3394728 by ankondrat4: Undefined array key "#prefix" and deprecated function: explode() in Drupal\file\Element\ManagedFile::uploadAjaxCallback(),!9914Issue #3451136 by quietone, gapple, ghost of drupal past: Improve...,!9882Draft: Issue #3481777 In bulk_form ensure the triggering element is the bulk_form button,!9839Issue #3445469 by pooja_sharma, smustgrave: Add additional test coverage for...,!9815Issue #3480025: There is no way to remove entity cache items,!9757Issue #3478869 Add "All" or overview links to parent links,!9752Issue #3439910 by pooja_sharma, vensires: Fix Toolbar tests that rely on UID1's super user behavior,!9749Issue #3439910 by pooja_sharma, vensires: Fix Toolbar tests that rely on UID1's super user behavior,!9678Issue #3465132 by catch, Spokje, nod_: Show test run time by class in run-tests.sh output,!9578Issue #3304746 by scott_euser, casey, smustgrave: BigPipe cannot handle (GET)...,!9449Issue #3344041: Allow textarea widgets to be used for text (formatted) fields,!8945🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥...,!8893Resolve #3444391 "Navigation center sm logo",!8772Issue #3445909 by seanB, smustgrave, alexpott, catch: Add static caching to...
Pipeline #220561 passed with warnings
Pipeline: drupal

#220579

    Pipeline: drupal

    #220566

      ......@@ -201,7 +201,7 @@ public function login(Request $request) {
      $authenticated = $this->userAuth->authenticateAccount($account, $credentials['pass']) ? $account->id() : FALSE;
      }
      else {
      $authenticated = $this->userAuth->authenticateAccount($credentials['name'], $credentials['pass']);
      $authenticated = $this->userAuth->authenticate($credentials['name'], $credentials['pass']);
      }
      if ($authenticated) {
      $this->userFloodControl->clear('user.http_login', $this->getLoginFloodIdentifier($request, $credentials['name']));
      ......
      ......@@ -232,6 +232,13 @@ public function validateAuthentication(array &$form, FormStateInterface $form_st
      if ($this->userAuth instanceof UserAuthenticationInterface) {
      $form_state->set('uid', $this->userAuth->authenticateAccount($account, $password) ? $account->id() : FALSE);
      }
      // The userAuth object is decorated by an object that that has not
      // been upgraded to the new UserAuthenticationInterface. Fallback
      // to the authenticate() method.
      else {
      $uid = $this->userAuth->authenticate($form_state->getValue('name'), $password);
      $form_state->set('uid', $uid);
      }
      }
      elseif (!$this->userAuth instanceof UserAuthenticationInterface) {
      $uid = $this->userAuth->authenticate($form_state->getValue('name'), $password);
      ......
      <?php
      namespace Drupal\user_auth_decorator_test;
      use Drupal\user\UserAuthInterface;
      /**
      * Helper to validate UserAuthInterface BC layers are functional.
      */
      class UserAuthDecorator implements UserAuthInterface {
      /**
      * Constructs a UserAuthDecorator object.
      *
      * @param \Drupal\user\UserAuthInterface $inner
      * The inner User.Auth service.
      */
      public function __construct(protected UserAuthInterface $inner) {
      }
      /**
      * {@inheritdoc}
      */
      public function authenticate($username, #[\SensitiveParameter] $password) {
      return $this->inner->authenticate($username, $password);
      }
      }
      name: 'User Auth Service decorated only with UserAuthInterface'
      type: module
      description: 'Support module for user authentication testing.'
      package: Testing
      version: VERSION
      services:
      user_auth_decorator.user.auth:
      class: \Drupal\user_auth_decorator_test\UserAuthDecorator
      decorates: user.auth
      arguments:
      - '@user_auth_decorator.user.auth.inner'
      <?php
      declare(strict_types=1);
      namespace Drupal\Tests\user\Functional\Rest;
      use Drupal\user_auth_decorator_test\UserAuthDecorator;
      /**
      * Run UserJsonBasicAuthTest with a user.auth decorator.
      *
      * @group rest
      * @group #slow
      */
      class UserJsonBasicAuthDecoratedTest extends UserJsonBasicAuthTest {
      /**
      * Modules to install.
      *
      * @var array
      */
      protected static $modules = ['user_auth_decorator_test'];
      /**
      * Test that the UserAuthDecorator is providing user.auth.
      */
      public function testServiceDecorated(): void {
      $service = \Drupal::service('user.auth');
      $this->assertInstanceOf(UserAuthDecorator::class, $service);
      }
      }
      <?php
      declare(strict_types=1);
      namespace Drupal\Tests\user\Functional;
      use Drupal\user_auth_decorator_test\UserAuthDecorator;
      /**
      * Ensure that login works as expected with a decorator.
      *
      * The decorator does not implement UserAuthenticationInterface.
      *
      * @group user
      */
      class UserLoginDecoratedTest extends UserLoginTest {
      /**
      * Modules to install.
      *
      * @var array
      */
      protected static $modules = ['user_auth_decorator_test'];
      /**
      * Test that the UserAuthDecorator is providing user.auth.
      */
      public function testServiceDecorated(): void {
      $service = \Drupal::service('user.auth');
      $this->assertInstanceOf(UserAuthDecorator::class, $service);
      }
      }
      <?php
      declare(strict_types=1);
      namespace Drupal\Tests\user\Functional;
      use Drupal\user_auth_decorator_test\UserAuthDecorator;
      /**
      * Tests login and password reset via direct HTTP with a user.auth decorator.
      *
      * The decorator does not implement UserAuthenticationInterface.
      *
      * @group user
      */
      class UserLoginHttpDecoratedTest extends UserLoginHttpTest {
      /**
      * Modules to install.
      *
      * @var array
      */
      protected static $modules = ['user_auth_decorator_test'];
      /**
      * Test that the UserAuthDecorator is providing user.auth.
      */
      public function testServiceDecorated(): void {
      $service = \Drupal::service('user.auth');
      $this->assertInstanceOf(UserAuthDecorator::class, $service);
      }
      }
      0% Loading or .
      You are about to add 0 people to the discussion. Proceed with caution.
      Finish editing this message first!
      Please register or to comment