File tree 1 file changed +39
-0
lines changed
1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change @@ -253,6 +253,45 @@ class MyEventbridgeController extends EventbridgeWebhook
253
253
}
254
254
```
255
255
256
+ ## Testing SES Controllers
257
+
258
+ The package comes with a ` GeneratesSnsMessages ` -trait to create a valid SES payload to be used for your tests.
259
+ Use the trait like in the example below to get started writing tests for your own controllers.
260
+
261
+ ``` php
262
+ use RenokiCo\AwsWebhooks\Concerns\GeneratesSnsMessages;
263
+
264
+ class MySesControllerTest extends TestCase
265
+ {
266
+ use GeneratesSnsMessages;
267
+
268
+ public static function setUpBeforeClass(): void
269
+ {
270
+ static::initializeSsl();
271
+ }
272
+
273
+ public static function tearDownAfterClass(): void
274
+ {
275
+ static::tearDownSsl();
276
+ }
277
+
278
+ public function getSesMessage(string $type): array
279
+ {
280
+ return $this->getNotificationPayload([
281
+ 'eventType' => $type,
282
+ ]);
283
+ }
284
+
285
+ public function test_my_ses_controller()
286
+ {
287
+ $payload = $this->getSesMessage('Bounce');
288
+
289
+ $response = $this->withHeaders($this->getHeadersForMessage($payload))
290
+ ->json('GET', route('ses', ['certificate' => static::$certificate]), $payload);
291
+ }
292
+ }
293
+ ```
294
+
256
295
## 🐛 Testing
257
296
258
297
``` bash
You can’t perform that action at this time.
0 commit comments