<?php

namespace tests\unit\Entity\Source\Complex;

use PHPUnit\Framework\TestCase;
use Infinito\Entity\Source\Complex\UserSourceInterface;
use Infinito\Entity\Source\Complex\UserSource;
use Doctrine\Common\Collections\Collection;
use Infinito\Entity\Source\Complex\PersonIdentitySourceInterface;

class UserSourceTest extends TestCase
{
    /**
     * @var UserSourceInterface
     */
    public $userSource;

    public function setUp(): void
    {
        $this->userSource = new UserSource();
    }

    public function testConstructor(): void
    {
        $this->assertInstanceOf(Collection::class, $this->userSource->getMemberRelation()->getMemberships());
    }

    public function testHasPersonIdentitySource(): void
    {
        $this->assertFalse($this->userSource->hasPersonIdentitySource());
        $this->userSource->setPersonIdentitySource($this->createMock(PersonIdentitySourceInterface::class));
        $this->assertTrue($this->userSource->hasPersonIdentitySource());
        $this->assertInstanceOf(PersonIdentitySourceInterface::class, $this->userSource->getPersonIdentitySource());
    }

    public function testInitPersonIdentitySource(): void
    {
        $this->expectException(\TypeError::class);
        $this->userSource->getPersonIdentitySource();
    }

    public function testInitUser(): void
    {
        $this->expectException(\TypeError::class);
        $this->userSource->getUser();
    }
}