UserFactoryTest added
This commit is contained in:
parent
5d2ee61b49
commit
e5d5059c30
|
@ -4,14 +4,11 @@ namespace Skobkin\Bundle\PointToolsBundle\Service\Factory;
|
|||
|
||||
use Psr\Log\LoggerInterface;
|
||||
|
||||
class AbstractFactory
|
||||
abstract class AbstractFactory
|
||||
{
|
||||
/**
|
||||
* @var LoggerInterface
|
||||
*/
|
||||
/** @var LoggerInterface */
|
||||
protected $logger;
|
||||
|
||||
|
||||
public function __construct(LoggerInterface $logger)
|
||||
{
|
||||
$this->logger = $logger;
|
||||
|
|
|
@ -10,9 +10,9 @@ use Skobkin\Bundle\PointToolsBundle\Exception\Factory\InvalidUserDataException;
|
|||
|
||||
class UserFactory extends AbstractFactory
|
||||
{
|
||||
/**
|
||||
* @var UserRepository
|
||||
*/
|
||||
public const DATE_FORMAT = 'Y-m-d_H:i:s';
|
||||
|
||||
/** @var UserRepository */
|
||||
private $userRepository;
|
||||
|
||||
|
||||
|
@ -55,6 +55,9 @@ class UserFactory extends AbstractFactory
|
|||
return $user;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return User[]
|
||||
*/
|
||||
public function findOrCreateFromDTOArray(array $usersData): array
|
||||
{
|
||||
// @todo LOG
|
||||
|
|
|
@ -0,0 +1,141 @@
|
|||
<?php
|
||||
|
||||
namespace Tests\Skobkin\PointToolsBundle\Service\Factory;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Psr\Log\LoggerInterface;
|
||||
use Skobkin\Bundle\PointToolsBundle\DTO\Api\User as UserDTO;
|
||||
use Skobkin\Bundle\PointToolsBundle\Entity\User;
|
||||
use Skobkin\Bundle\PointToolsBundle\Exception\Factory\InvalidUserDataException;
|
||||
use Skobkin\Bundle\PointToolsBundle\Repository\UserRepository;
|
||||
use Skobkin\Bundle\PointToolsBundle\Service\Factory\UserFactory;
|
||||
|
||||
class UserFactoryTest extends TestCase
|
||||
{
|
||||
private const LOCAL_USER_ID = 1;
|
||||
private const LOCAL_USER_LOGIN = 'test-local';
|
||||
private const LOCAL_USER_NAME = 'Test Local Name';
|
||||
private const LOCAL_USER_CREATED = '1999-01-01_01:02:03';
|
||||
|
||||
private const REMOTE_USER_ID = 1;
|
||||
private const REMOTE_USER_LOGIN = 'test-remote';
|
||||
private const REMOTE_USER_NAME = 'Test Remote Name';
|
||||
private const REMOTE_USER_CREATED = '2000-01-01_01:02:03';
|
||||
|
||||
public function testCreateFactory(): UserFactory
|
||||
{
|
||||
$testUser = new User(
|
||||
self::LOCAL_USER_ID,
|
||||
\DateTime::createFromFormat(UserFactory::DATE_FORMAT, self::LOCAL_USER_CREATED),
|
||||
self::LOCAL_USER_LOGIN,
|
||||
self::LOCAL_USER_NAME
|
||||
);
|
||||
|
||||
$logger = $this->createMock(LoggerInterface::class);
|
||||
$userRepository = $this->createMock(UserRepository::class);
|
||||
$userRepository->expects($this->any())
|
||||
->method('find')
|
||||
->willReturnCallback(
|
||||
function ($id) use ($testUser) {
|
||||
if (1 === $id) {
|
||||
return $testUser;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
);
|
||||
|
||||
$userFactory = new UserFactory($logger, $userRepository);
|
||||
|
||||
$this->assertInstanceOf(UserFactory::class, $userFactory);
|
||||
|
||||
return $userFactory;
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider userDtoProvider
|
||||
* @depends testCreateFactory
|
||||
*/
|
||||
public function testFindOrCreateFromDTO(UserDTO $userDto, UserFactory $userFactory)
|
||||
{
|
||||
$foundUser = $userFactory->findOrCreateFromDTO($userDto);
|
||||
|
||||
$this->assertInstanceOf(User::class, $foundUser);
|
||||
|
||||
$this->assertEquals(self::LOCAL_USER_ID, $foundUser->getId());
|
||||
$this->assertEquals(self::REMOTE_USER_NAME, $foundUser->getName());
|
||||
$this->assertEquals(self::REMOTE_USER_LOGIN, $foundUser->getLogin());
|
||||
|
||||
$testDate = \DateTime::createFromFormat(UserFactory::DATE_FORMAT, self::REMOTE_USER_CREATED);
|
||||
|
||||
$this->assertEquals($testDate, $foundUser->getCreatedAt());
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider userDtoArrayProvider
|
||||
* @depends testCreateFactory
|
||||
*/
|
||||
public function testFindOrCreateFromDTOArray(array $userData, UserFactory $userFactory)
|
||||
{
|
||||
$foundUsers = $userFactory->findOrCreateFromDTOArray($userData);
|
||||
|
||||
$this->assertCount(2, $foundUsers);
|
||||
$this->assertContainsOnlyInstancesOf(User::class, $foundUsers);
|
||||
|
||||
$testDate = \DateTime::createFromFormat(UserFactory::DATE_FORMAT, self::REMOTE_USER_CREATED);
|
||||
|
||||
$this->assertEquals(self::REMOTE_USER_ID, $foundUsers[0]->getId());
|
||||
$this->assertEquals(self::REMOTE_USER_LOGIN, $foundUsers[0]->getLogin());
|
||||
$this->assertEquals(self::REMOTE_USER_NAME, $foundUsers[0]->getName());
|
||||
$this->assertEquals($testDate, $foundUsers[0]->getCreatedAt());
|
||||
|
||||
$this->assertEquals(self::REMOTE_USER_ID + 1, $foundUsers[1]->getId());
|
||||
$this->assertEquals(self::REMOTE_USER_LOGIN, $foundUsers[1]->getLogin());
|
||||
$this->assertEquals(self::REMOTE_USER_NAME, $foundUsers[1]->getName());
|
||||
$this->assertEquals($testDate, $foundUsers[1]->getCreatedAt());
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider invalidUserDtoProvider
|
||||
* @depends testCreateFactory
|
||||
*/
|
||||
public function testFindOrCreateFromDTOWithInvalidDTO(UserDTO $userDto, UserFactory $userFactory)
|
||||
{
|
||||
$this->expectException(InvalidUserDataException::class);
|
||||
|
||||
$foundUser = $userFactory->findOrCreateFromDTO($userDto);
|
||||
}
|
||||
|
||||
public function userDtoProvider(): array
|
||||
{
|
||||
$userDto = new UserDTO();
|
||||
$userDto->setId(self::REMOTE_USER_ID);
|
||||
$userDto->setLogin(self::REMOTE_USER_LOGIN);
|
||||
$userDto->setName(self::REMOTE_USER_NAME);
|
||||
$userDto->setCreated(self::REMOTE_USER_CREATED);
|
||||
|
||||
return [[$userDto]];
|
||||
}
|
||||
|
||||
public function userDtoArrayProvider(): array
|
||||
{
|
||||
$userDto1 = new UserDTO();
|
||||
$userDto1->setId(self::REMOTE_USER_ID);
|
||||
$userDto1->setLogin(self::REMOTE_USER_LOGIN);
|
||||
$userDto1->setName(self::REMOTE_USER_NAME);
|
||||
$userDto1->setCreated(self::REMOTE_USER_CREATED);
|
||||
|
||||
$userDto2 = new UserDTO();
|
||||
$userDto2->setId(self::REMOTE_USER_ID + 1);
|
||||
$userDto2->setLogin(self::REMOTE_USER_LOGIN);
|
||||
$userDto2->setName(self::REMOTE_USER_NAME);
|
||||
$userDto2->setCreated(self::REMOTE_USER_CREATED);
|
||||
|
||||
return [[[$userDto1, $userDto2]]];
|
||||
}
|
||||
|
||||
public function invalidUserDtoProvider(): array
|
||||
{
|
||||
return [[new UserDTO()]];
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue