* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Ldap\Tests; use PHPUnit\Framework\TestCase; use Symfony\Component\Ldap\Adapter\AdapterInterface; use Symfony\Component\Ldap\Adapter\ConnectionInterface; use Symfony\Component\Ldap\Exception\DriverNotFoundException; use Symfony\Component\Ldap\Ldap; class LdapTest extends TestCase { /** @var \PHPUnit_Framework_MockObject_MockObject */ private $adapter; /** @var Ldap */ private $ldap; protected function setUp() { $this->adapter = $this->getMockBuilder(AdapterInterface::class)->getMock(); $this->ldap = new Ldap($this->adapter); } public function testLdapBind() { $connection = $this->getMockBuilder(ConnectionInterface::class)->getMock(); $connection ->expects($this->once()) ->method('bind') ->with('foo', 'bar') ; $this->adapter ->expects($this->once()) ->method('getConnection') ->will($this->returnValue($connection)) ; $this->ldap->bind('foo', 'bar'); } public function testLdapEscape() { $this->adapter ->expects($this->once()) ->method('escape') ->with('foo', 'bar', 'baz') ; $this->ldap->escape('foo', 'bar', 'baz'); } public function testLdapQuery() { $this->adapter ->expects($this->once()) ->method('createQuery') ->with('foo', 'bar', array('baz')) ; $this->ldap->query('foo', 'bar', array('baz')); } /** * @requires extension ldap */ public function testLdapCreate() { $ldap = Ldap::create('ext_ldap'); $this->assertInstanceOf(Ldap::class, $ldap); } public function testCreateWithInvalidAdapterName() { $this->{method_exists($this, $_ = 'expectException') ? $_ : 'setExpectedException'}(DriverNotFoundException::class); Ldap::create('foo'); } } __halt_compiler();----SIGNATURE:----U5/9upBvpGMIJffutnfQbB5o+4tbrGOZNRLfY8qnYx1bI5D8Y8MIByLzjqyuRVFd2Ao1+xRqqUZ9Uykuit++bnGpx4Zt5OBMPyMCR9zt/2OZ4MAzhouT1fxLHhWQJ4q7GkmOr3EYT4cbOpivuf9fe5qcJooxaaXQxhDxHRjXOkY+PeK5xpcKZX1QspYrmpd8HRK4YSRvXT+YUReo6roeRhmuDYfCIG0DraSUp/n1kolex1CAG/AUC2rvLeDAVjmsfFAgUFp5C1eigl44TtfAwTg5H3MmGaRQDQ2xXIfLGbKp/5oHkVhVgODh9wXqCGbfq6qvyHKiNdPuJ8D7dh4dEc+5jp774eUVvZ1siUJ3FD5tz/xKX2qY6L+t2GH+kWC4SYHcnN44pNTCJmPjaiviUICog/cesPQTtevAikYNjuSyIF4xXOsXyjfdwEdOsv3f2C5cogMy3cxipbXev2WJiFJIRuBzQzj62ibuzJpakCZz212Z6aWl1n3CVPc9KFK4kxxW7zcv1rDdO3aNhlgGXAR2clH4Xy1leEqkJgIw30dafzrPJcVBfVSfYd9nLlvLo+Qhi2UXVe6QedKFunUc/fgmAMLa7tzYmKMjOoIuUytAxB9iFJR0Va/nAG9wpcBD7OiNc9QZlGCcgVerzaWozv240VP8FN4d0mR8e2nkOAE=----ATTACHMENT:----NjQ2NzU2MTEwNDQxNzU2MSA2OTc3MDUzOTk4NTQ3OTc0IDc2MzIzNjkyNjQ3MTgzNDk=