public function WebhookPostTest::testGetMethodBlocked in Zoom API 8
Same name and namespace in other branches
- 2.0.x tests/src/Functional/WebhookPostTest.php \Drupal\Tests\zoomapi\Functional\WebhookPostTest::testGetMethodBlocked()
GET method should return a 405.
File
- tests/
src/ Functional/ WebhookPostTest.php, line 54
Class
- WebhookPostTest
- Webhook post tests.
Namespace
Drupal\Tests\zoomapi\FunctionalCode
public function testGetMethodBlocked() {
$url = Url::fromRoute('zoomapi.webhooks')
->setAbsolute()
->toString();
$res = $this
->getHttpClient()
->get($url, [
'http_errors' => FALSE,
]);
$this
->assertEquals($res
->getStatusCode(), 405, 'GET method not allowed.');
}