Scope social login callbacks per flow
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-01-23 20:38:22 +01:00
parent 1241f5092e
commit a33bf0e3a4
8 changed files with 8 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ class TenantAdminGoogleControllerTest extends TestCase
{
$driver = Mockery::mock();
Socialite::shouldReceive('driver')->once()->with('google')->andReturn($driver);
$driver->shouldReceive('redirectUrl')->once()->with(route('tenant.admin.google.callback'))->andReturnSelf();
$driver->shouldReceive('scopes')->once()->with(['openid', 'profile', 'email'])->andReturnSelf();
$driver->shouldReceive('with')->once()->with(['prompt' => 'select_account'])->andReturnSelf();
$driver->shouldReceive('redirect')->once()->andReturn(new RedirectResponse('https://accounts.google.com'));