|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * This file is part of Sulu. |
| 5 | + * |
| 6 | + * (c) Sulu GmbH |
| 7 | + * |
| 8 | + * This source file is subject to the MIT license that is bundled |
| 9 | + * with this source code in the file LICENSE. |
| 10 | + */ |
| 11 | + |
| 12 | +namespace Sulu\Bundle\FormBundle\Tests\Unit\Event; |
| 13 | + |
| 14 | +use GuzzleHttp\ClientInterface; |
| 15 | +use GuzzleHttp\Psr7\Response; |
| 16 | +use PHPUnit\Framework\TestCase; |
| 17 | +use Prophecy\Argument; |
| 18 | +use Prophecy\Prophecy\ObjectProphecy; |
| 19 | +use Psr\Http\Message\RequestInterface; |
| 20 | +use SendinBlue\Client\ApiException; |
| 21 | +use Sulu\Bundle\FormBundle\Configuration\FormConfiguration; |
| 22 | +use Sulu\Bundle\FormBundle\Entity\Dynamic; |
| 23 | +use Sulu\Bundle\FormBundle\Entity\Form; |
| 24 | +use Sulu\Bundle\FormBundle\Entity\FormField; |
| 25 | +use Sulu\Bundle\FormBundle\Entity\FormTranslation; |
| 26 | +use Sulu\Bundle\FormBundle\Event\FormSavePostEvent; |
| 27 | +use Sulu\Bundle\FormBundle\Event\SendinblueListSubscriber; |
| 28 | +use Symfony\Component\Form\FormInterface; |
| 29 | +use Symfony\Component\HttpFoundation\Request; |
| 30 | +use Symfony\Component\HttpFoundation\RequestStack; |
| 31 | + |
| 32 | +class SendinblueListSubscriberTest extends TestCase |
| 33 | +{ |
| 34 | + /** |
| 35 | + * @var RequestStack |
| 36 | + */ |
| 37 | + private $requestStack; |
| 38 | + |
| 39 | + /** |
| 40 | + * @var ObjectProphecy<ClientInterface> |
| 41 | + */ |
| 42 | + private $client; |
| 43 | + |
| 44 | + /** |
| 45 | + * @var SendinblueListSubscriber |
| 46 | + */ |
| 47 | + private $sendinblueListSubscriber; |
| 48 | + |
| 49 | + public function setUp(): void |
| 50 | + { |
| 51 | + $this->requestStack = new RequestStack(); |
| 52 | + $this->client = $this->prophesize(ClientInterface::class); |
| 53 | + |
| 54 | + $this->sendinblueListSubscriber = new SendinblueListSubscriber( |
| 55 | + $this->requestStack, |
| 56 | + 'SOME_KEY', |
| 57 | + $this->client->reveal() |
| 58 | + ); |
| 59 | + } |
| 60 | + |
| 61 | + public function testGetSubscribedEvents(): void |
| 62 | + { |
| 63 | + $this->assertSame( |
| 64 | + [ |
| 65 | + 'sulu_form.handler.saved' => 'listSubscribe', |
| 66 | + ], |
| 67 | + SendinblueListSubscriber::getSubscribedEvents() |
| 68 | + ); |
| 69 | + } |
| 70 | + |
| 71 | + public function testlistSubscribeNotExist(): void |
| 72 | + { |
| 73 | + $this->requestStack->push(Request::create('http://localhost/', 'POST')); |
| 74 | + $event = $this->createFormSavePostEvent(); |
| 75 | + |
| 76 | + $self = $this; |
| 77 | + $this->client->send(Argument::cetera())->will(function($args) use ($self) { |
| 78 | + /** @var RequestInterface $request */ |
| 79 | + $request = $args[0]; |
| 80 | + |
| 81 | + if ('https://api.sendinblue.com/v3/contacts/john.doe%40example.org' === $request->getUri()->__toString()) { |
| 82 | + $self->assertSame('GET', $request->getMethod()); |
| 83 | + |
| 84 | + throw new ApiException('', 404); |
| 85 | + } |
| 86 | + |
| 87 | + if ('https://api.sendinblue.com/v3/contacts/doubleOptinConfirmation' === $request->getUri()->__toString()) { |
| 88 | + $self->assertSame('POST', $request->getMethod()); |
| 89 | + |
| 90 | + $json = \json_decode($request->getBody()->getContents(), true); |
| 91 | + |
| 92 | + $self->assertSame([ |
| 93 | + |
| 94 | + 'attributes' => [ |
| 95 | + 'FIRST_NAME' => 'John', |
| 96 | + 'LAST_NAME' => 'Doe', |
| 97 | + ], |
| 98 | + 'includeListIds' => ['789'], |
| 99 | + 'templateId' => 456, |
| 100 | + 'redirectionUrl' => 'http://localhost?subscribe=true', |
| 101 | + ], $json); |
| 102 | + |
| 103 | + return new Response(); |
| 104 | + } |
| 105 | + |
| 106 | + throw new \RuntimeException('Unexpected request: ' . $request->getUri()->__toString()); |
| 107 | + }) |
| 108 | + ->shouldBeCalledTimes(2); |
| 109 | + |
| 110 | + // act |
| 111 | + $this->sendinblueListSubscriber->listSubscribe($event); |
| 112 | + |
| 113 | + $this->assertTrue(true); |
| 114 | + } |
| 115 | + |
| 116 | + public function testlistSubscribeAlreadyExist(): void |
| 117 | + { |
| 118 | + $this->requestStack->push(Request::create('http://localhost/', 'POST')); |
| 119 | + $event = $this->createFormSavePostEvent(); |
| 120 | + |
| 121 | + $self = $this; |
| 122 | + $this->client->send(Argument::cetera())->will(function($args) use ($self) { |
| 123 | + /** @var RequestInterface $request */ |
| 124 | + $request = $args[0]; |
| 125 | + |
| 126 | + if ('https://api.sendinblue.com/v3/contacts/john.doe%40example.org' === $request->getUri()->__toString() |
| 127 | + && 'GET' === $request->getMethod() |
| 128 | + ) { |
| 129 | + return new Response(200, ['Content-Type' => 'application/json'], \json_encode([ |
| 130 | + 'id' => 123, |
| 131 | + |
| 132 | + 'attributes' => [], |
| 133 | + 'listIds' => [], |
| 134 | + ])); |
| 135 | + } |
| 136 | + |
| 137 | + if ('https://api.sendinblue.com/v3/contacts/john.doe%40example.org' === $request->getUri()->__toString() |
| 138 | + && 'PUT' === $request->getMethod() |
| 139 | + ) { |
| 140 | + $json = \json_decode($request->getBody()->getContents(), true); |
| 141 | + |
| 142 | + $self->assertSame([ |
| 143 | + 'attributes' => [ |
| 144 | + 'FIRST_NAME' => 'John', |
| 145 | + 'LAST_NAME' => 'Doe', |
| 146 | + ], |
| 147 | + 'listIds' => ['789'], |
| 148 | + ], $json); |
| 149 | + |
| 150 | + return new Response(); |
| 151 | + } |
| 152 | + |
| 153 | + throw new \RuntimeException('Unexpected request (' . $request->getMethod() . '): ' . $request->getUri()->__toString()); |
| 154 | + }) |
| 155 | + ->shouldBeCalledTimes(2); |
| 156 | + |
| 157 | + // act |
| 158 | + $this->sendinblueListSubscriber->listSubscribe($event); |
| 159 | + |
| 160 | + $this->assertTrue(true); |
| 161 | + } |
| 162 | + |
| 163 | + private function createFormSavePostEvent(): FormSavePostEvent |
| 164 | + { |
| 165 | + $symfonyForm = $this->prophesize(FormInterface::class); |
| 166 | + $formConfiguration = new FormConfiguration('en'); |
| 167 | + $form = new Form(); |
| 168 | + $form->setDefaultLocale('en'); |
| 169 | + $formTranslation = new FormTranslation(); |
| 170 | + $formTranslation->setLocale('en'); |
| 171 | + $formTranslation->setTitle('Form'); |
| 172 | + $form->addTranslation($formTranslation); |
| 173 | + |
| 174 | + $fields = [ |
| 175 | + [ |
| 176 | + 'type' => 'firstName', |
| 177 | + 'required' => true, |
| 178 | + ], |
| 179 | + [ |
| 180 | + 'type' => 'lastName', |
| 181 | + 'required' => true, |
| 182 | + ], |
| 183 | + [ |
| 184 | + 'type' => 'email', |
| 185 | + 'required' => true, |
| 186 | + ], |
| 187 | + [ |
| 188 | + 'type' => 'sendinblue', |
| 189 | + 'options' => [ |
| 190 | + 'mailTemplateId' => '456', |
| 191 | + 'listId' => '789', |
| 192 | + ], |
| 193 | + ], |
| 194 | + ]; |
| 195 | + |
| 196 | + foreach ($fields as $key => $field) { |
| 197 | + $formField = new FormField(); |
| 198 | + $formField->setForm($form); |
| 199 | + $formField->setDefaultLocale('en'); |
| 200 | + $formField->setType($field['type']); |
| 201 | + $formField->setOrder($key); |
| 202 | + $formField->setKey($field['type']); |
| 203 | + |
| 204 | + $formFieldTranslation = $formField->getTranslation('en', true); |
| 205 | + $formFieldTranslation->setTitle(\ucfirst($field['type'])); |
| 206 | + $formFieldTranslation->setOptions($field['options'] ?? []); |
| 207 | + |
| 208 | + $form->addField($formField); |
| 209 | + } |
| 210 | + |
| 211 | + $dynamic = new Dynamic( |
| 212 | + 'page', |
| 213 | + '123', |
| 214 | + 'en', |
| 215 | + $form, |
| 216 | + [ |
| 217 | + 'firstName' => 'John', |
| 218 | + 'lastName' => 'Doe', |
| 219 | + |
| 220 | + 'sendinblue' => true, |
| 221 | + ] |
| 222 | + ); |
| 223 | + |
| 224 | + $symfonyForm->getData()->willReturn($dynamic); |
| 225 | + |
| 226 | + return new FormSavePostEvent($symfonyForm->reveal(), $formConfiguration); |
| 227 | + } |
| 228 | +} |
0 commit comments