diff --git a/src/TestSuite/AuthSources.php b/src/TestSuite/AuthSources.php index f2aa414..82e7917 100644 --- a/src/TestSuite/AuthSources.php +++ b/src/TestSuite/AuthSources.php @@ -82,7 +82,14 @@ public function invokeTest(): void $this->addTestResults($negoTest->getTestResults()); // We need to do some convertions from Negotiate > LDAP - $authSourceData = $this->authSourceConfig->getValue($authSourceData['fallback']); + switch ($authSourceData['fallback']) { + case 'ldap:Ldap': + $authSourceData = $this->authSourceConfig->getValue($authSourceDat$ + default: + // Not implemented + continue 3; + }; + $testData->setInput($authSourceData, 'authSourceData'); $ldapTest = new AuthSource\Ldap($configuration, $testData);