phpldapadmin/tests/Unit/GetBaseDNTest.php
2021-12-10 23:51:48 +11:00

29 lines
545 B
PHP

<?php
namespace Tests\Unit;
use Illuminate\Support\Collection;
use Illuminate\Foundation\Testing\WithFaker;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
use App\Classes\LDAP\Server;
class GetBaseDNTest extends TestCase
{
/**
* Test that we can get the Base DN of an LDAP server
*
* @return void
*/
public function testBaseDNExists()
{
$o = new Server();
$x = $o->getBaseDN();
$this->assertIsObject($x);
$this->assertCount(1,$x->toArray());
$this->assertContains('dc=Test',$x->toArray());
}
}