mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 14:43:49 +00:00
136 lines
4.2 KiB
PHP
136 lines
4.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Chill is a software for social workers.
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Chill\CalendarBundle\Tests\Service\ShortMessageNotification;
|
|
|
|
use ArrayIterator;
|
|
use Chill\CalendarBundle\Entity\Calendar;
|
|
use Chill\CalendarBundle\Service\ShortMessageNotification\BulkCalendarShortMessageSender;
|
|
use Chill\CalendarBundle\Service\ShortMessageNotification\CalendarForShortMessageProvider;
|
|
use Chill\CalendarBundle\Service\ShortMessageNotification\ShortMessageForCalendarBuilderInterface;
|
|
use Chill\MainBundle\Entity\User;
|
|
use Chill\MainBundle\Service\ShortMessage\ShortMessage;
|
|
use Chill\MainBundle\Test\PrepareUserTrait;
|
|
use Chill\PersonBundle\DataFixtures\Helper\PersonRandomHelper;
|
|
use DateInterval;
|
|
use DateTimeImmutable;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use libphonenumber\PhoneNumberUtil;
|
|
use Prophecy\Argument;
|
|
use Prophecy\PhpUnit\ProphecyTrait;
|
|
use Psr\Log\NullLogger;
|
|
use stdClass;
|
|
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
|
use Symfony\Component\Messenger\Envelope;
|
|
use Symfony\Component\Messenger\MessageBusInterface;
|
|
|
|
/**
|
|
* @internal
|
|
* @coversNothing
|
|
*/
|
|
final class BulkCalendarShortMessageSenderTest extends KernelTestCase
|
|
{
|
|
use PersonRandomHelper;
|
|
|
|
use PrepareUserTrait;
|
|
|
|
use ProphecyTrait;
|
|
|
|
private array $toDelete = [];
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
self::bootKernel();
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
self::bootKernel();
|
|
$em = self::$container->get(EntityManagerInterface::class);
|
|
|
|
foreach ($this->toDelete as [$entity, $id]) {
|
|
$entity = $em->find($entity, $id);
|
|
$em->remove($entity);
|
|
}
|
|
|
|
$em->flush();
|
|
}
|
|
|
|
public function testSendBulkMessageToEligibleCalendar()
|
|
{
|
|
$em = self::$container->get(EntityManagerInterface::class);
|
|
$calendar = new Calendar();
|
|
$calendar
|
|
->addPerson($this->getRandomPerson($em))
|
|
->setMainUser($user = $this->prepareUser([]))
|
|
->setStartDate(new DateTimeImmutable('now'))
|
|
->setEndDate($calendar->getStartDate()->add(new DateInterval('PT30M')))
|
|
->setSendSMS(true);
|
|
|
|
$user->setUsername(uniqid());
|
|
$user->setEmail(uniqid() . '@gmail.com');
|
|
$calendar->getPersons()->first()->setAcceptSMS(true);
|
|
|
|
// hack to prevent side effect with messages
|
|
$calendar->preventEnqueueChanges = true;
|
|
|
|
$em->persist($user);
|
|
//$this->toDelete[] = [User::class, $user->getId()];
|
|
$em->persist($calendar);
|
|
//$this->toDelete[] = [Calendar::class, $calendar->getId()];
|
|
$em->flush();
|
|
|
|
$provider = $this->prophesize(CalendarForShortMessageProvider::class);
|
|
$provider->getCalendars(Argument::type(DateTimeImmutable::class))
|
|
->willReturn(new ArrayIterator([$calendar]));
|
|
|
|
$messageBuilder = $this->prophesize(ShortMessageForCalendarBuilderInterface::class);
|
|
$messageBuilder->buildMessageForCalendar(Argument::type(Calendar::class))
|
|
->willReturn(
|
|
[
|
|
new ShortMessage(
|
|
'content',
|
|
PhoneNumberUtil::getInstance()->parse('+32470123456', 'BE'),
|
|
ShortMessage::PRIORITY_MEDIUM
|
|
),
|
|
]
|
|
);
|
|
|
|
$bus = $this->prophesize(MessageBusInterface::class);
|
|
$bus->dispatch(Argument::type(ShortMessage::class))
|
|
->willReturn(new Envelope(new stdClass()))
|
|
->shouldBeCalledTimes(1);
|
|
|
|
$bulk = new BulkCalendarShortMessageSender(
|
|
$provider->reveal(),
|
|
$em,
|
|
new NullLogger(),
|
|
$bus->reveal(),
|
|
$messageBuilder->reveal()
|
|
);
|
|
|
|
$bulk->sendBulkMessageToEligibleCalendars();
|
|
|
|
$em->clear();
|
|
$calendar = $em->find(Calendar::class, $calendar->getId());
|
|
|
|
$this->assertEquals(Calendar::SMS_SENT, $calendar->getSmsStatus());
|
|
}
|
|
}
|