mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-16 09:41:05 +00:00
Merge branch '3535-group-sync-fix' into development
This commit is contained in:
commit
d20aacb732
2 changed files with 13 additions and 1 deletions
|
@ -39,7 +39,7 @@ class GroupSyncService
|
|||
|
||||
protected function parseRoleExternalAuthId(string $externalId): array
|
||||
{
|
||||
$inputIds = preg_split('/(?<!\\\),/', $externalId);
|
||||
$inputIds = preg_split('/(?<!\\\),/', strtolower($externalId));
|
||||
$cleanIds = [];
|
||||
|
||||
foreach ($inputIds as $inputId) {
|
||||
|
|
|
@ -54,4 +54,16 @@ class GroupSyncServiceTest extends TestCase
|
|||
$user = User::query()->find($user->id);
|
||||
$this->assertTrue($user->hasRole($role->id));
|
||||
}
|
||||
|
||||
public function test_external_auth_id_matches_ignoring_case()
|
||||
{
|
||||
$user = $this->getViewer();
|
||||
$role = Role::factory()->create(['display_name' => 'ABC123', 'external_auth_id' => 'WaRRioRs']);
|
||||
$this->assertFalse($user->hasRole($role->id));
|
||||
|
||||
(new GroupSyncService())->syncUserWithFoundGroups($user, ['wArriors', 'penguiNs'], false);
|
||||
|
||||
$user = User::query()->find($user->id);
|
||||
$this->assertTrue($user->hasRole($role->id));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue