You are here

public function LdapSsoBrowserTests::brokenTestRedirectionLogin in LDAP Single Sign On 8

Test the behaviour of multiple requests on the SSO login behaviour.

File

tests/src/Functional/LdapSsoBrowserTests.php, line 32

Class

LdapSsoBrowserTests
Test redirection behaviour with SSO enabled.

Namespace

Drupal\Tests\ldap_sso\Browser

Code

public function brokenTestRedirectionLogin() {
  $this
    ->drupalGet('/');

  // $this->assertSession()->statusCodeEquals('302');
  $this
    ->drupalGet('/user/login/sso');

  // @TODO: Write test to resolve the behaviour of the boot subscriber.
  // $this->assertSession()->statusCodeEquals('302');
  $this
    ->assertTrue(TRUE);
}