Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Do not allow empty provider states #51

Merged
merged 1 commit into from
Mar 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Controller/MessagesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ private function getProviderStates(Request $request): array
if (!is_array($providerStates)) {
throw new BadRequestException("'providerStates' is invalid in messages request.");
}
if (empty($providerStates)) {
throw new BadRequestException("'providerStates' should not be empty in messages request.");
}

return array_map(function (array $providerState): ProviderState {
$name = $providerState['name'] ?? null;
Expand Down
7 changes: 3 additions & 4 deletions tests/Application/Controller/MessagesControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,9 @@ public function testEmptyProviderStates(): void
'description' => 'has message',
'providerStates' => [],
]));
$this->assertResponseStatusCodeSame(200);
$this->assertResponseHeaderSame('Content-Type', 'text/plain; charset=UTF-8');
$this->assertResponseHeaderSame('Pact-Message-Metadata', 'eyJrZXkiOiJ2YWx1ZSIsImNvbnRlbnRUeXBlIjoidGV4dFwvcGxhaW4ifQ==');
$this->assertStringContainsString('message content', $client->getResponse()->getContent());
// @todo Check this behavior
$this->assertResponseStatusCodeSame(400);
$this->assertStringContainsString("'providerStates' should not be empty in messages request.", $client->getResponse()->getContent());
}

public function testMissingProviderStateName(): void
Expand Down