phpldapadmin/tests/Unit/GetBaseDNTest.php

29 lines
545 B
PHP
Raw Normal View History

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