2020-08-23 02:30:18 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
2020-09-20 13:29:22 +00:00
|
|
|
use Tests\TestCase;
|
2020-08-23 02:30:18 +00:00
|
|
|
|
2020-09-21 12:20:59 +00:00
|
|
|
use App\Ldap\Entry;
|
2020-08-23 02:30:18 +00:00
|
|
|
|
|
|
|
class GetBaseDNTest extends TestCase
|
|
|
|
{
|
2020-08-27 12:46:07 +00:00
|
|
|
/**
|
|
|
|
* Test that we can get the Base DN of an LDAP server
|
|
|
|
*
|
|
|
|
* @return void
|
2020-09-21 12:20:59 +00:00
|
|
|
* @throws \LdapRecord\Models\ModelNotFoundException
|
|
|
|
* @covers \App\Ldap\Entry::baseDN()
|
2020-08-27 12:46:07 +00:00
|
|
|
*/
|
|
|
|
public function testBaseDNExists()
|
|
|
|
{
|
2020-09-21 12:20:59 +00:00
|
|
|
$o = (new Entry)->baseDN();
|
2020-08-23 02:30:18 +00:00
|
|
|
|
2020-09-21 12:20:59 +00:00
|
|
|
$this->assertIsObject($o);
|
|
|
|
$this->assertCount(1,$o->toArray());
|
|
|
|
$this->assertContains('dc=Test',$o->toArray());
|
2020-08-23 02:30:18 +00:00
|
|
|
}
|
|
|
|
}
|