Now replaced in recent commit by one that checks actual message gets
displayed on the redirect page.
Redirect page changed to login page.
});
}
- public function test_user_registration_with_existing_email()
- {
- config()->set([
- 'saml2.onelogin.strict' => false,
- ]);
-
- $viewer = $this->getViewer();
- $viewer->save();
-
- $this->withPost(['SAMLResponse' => $this->acsPostData], function () {
- $acsPost = $this->post('/saml2/acs');
- $acsPost->assertRedirect('/');
- $errorMessage = session()->get('error');
- $this->assertEquals('A user with the email
[email protected] already exists but with different credentials.', $errorMessage);
- });
- }
-
public function test_saml_routes_are_only_active_if_saml_enabled()
{
config()->set(['auth.method' => 'standard']);