Skip to content

Commit 10365c6

Browse files
committed
Add Testing Docs to README
1 parent b31a867 commit 10365c6

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

README.md

+39
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,45 @@ class MyEventbridgeController extends EventbridgeWebhook
253253
}
254254
```
255255

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+
256295
## 🐛 Testing
257296

258297
``` bash

0 commit comments

Comments
 (0)