8000 [WIP][Security] Added Ldap provider by lyrixx · Pull Request #5189 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[WIP][Security] Added Ldap provider #5189

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed tests
  • Loading branch information
lyrixx committed Oct 5, 2012
commit c585cf44db92837fd5fa8f19b4cc85fb5a6f8866
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function testLoadUserByUsernameAndPasswordOk()
;
$ldap
->expects($this->once())
->method('getConnection')
->method('bind')
;

$provider = new LdapUserProvider($ldap);
Expand All @@ -59,7 +59,7 @@ public function testLoadUserByUsernameAndPasswordNOk()
;
$ldap
->expects($this->once())
->method('getConnection')
->method('bind')
->will($this->throwException(new ConnectionException('baz')))
;

Expand Down
0