MessageResourceTestBase.php in Drupal 9
File
core/modules/contact/tests/src/Functional/Rest/MessageResourceTestBase.php
View source
<?php
namespace Drupal\Tests\contact\Functional\Rest;
use Drupal\contact\Entity\ContactForm;
use Drupal\contact\Entity\Message;
use Drupal\Core\Url;
use Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase;
use Symfony\Component\Routing\Exception\RouteNotFoundException;
abstract class MessageResourceTestBase extends EntityResourceTestBase {
protected static $modules = [
'contact',
];
protected static $entityTypeId = 'contact_message';
protected static $labelFieldName = 'subject';
protected $entity;
protected function setUpAuthorization($method) {
$this
->grantPermissionsToTestedRole([
'access site-wide contact form',
]);
}
protected function createEntity() {
if (!ContactForm::load('camelids')) {
ContactForm::create([
'id' => 'camelids',
'label' => 'Llama',
'message' => 'Let us know what you think about llamas',
'reply' => 'Llamas are indeed awesome!',
'recipients' => [
'llama@example.com',
'contact@example.com',
],
])
->save();
}
$message = Message::create([
'contact_form' => 'camelids',
'subject' => 'Llama Gabilondo',
'message' => 'Llamas are awesome!',
]);
$message
->save();
return $message;
}
protected function getNormalizedPostEntity() {
return [
'subject' => [
[
'value' => 'Dramallama',
],
],
'contact_form' => [
[
'target_id' => 'camelids',
],
],
'message' => [
[
'value' => 'http://www.urbandictionary.com/define.php?term=drama%20llama',
],
],
];
}
protected function getExpectedNormalizedEntity() {
throw new \Exception('Not yet supported.');
}
protected function getExpectedUnauthorizedAccessMessage($method) {
if ($method === 'POST') {
return "The 'access site-wide contact form' permission is required.";
}
return parent::getExpectedUnauthorizedAccessMessage($method);
}
public function testGet() {
$this
->expectException(RouteNotFoundException::class);
$this
->expectExceptionMessage('Route "rest.entity.contact_message.GET" does not exist.');
$this
->provisionEntityResource();
Url::fromRoute('rest.entity.contact_message.GET')
->toString(TRUE);
}
public function testPatch() {
$this
->expectException(RouteNotFoundException::class);
$this
->expectExceptionMessage('Route "rest.entity.contact_message.PATCH" does not exist.');
$this
->provisionEntityResource();
Url::fromRoute('rest.entity.contact_message.PATCH')
->toString(TRUE);
}
public function testDelete() {
$this
->expectException(RouteNotFoundException::class);
$this
->expectExceptionMessage('Route "rest.entity.contact_message.DELETE" does not exist.');
$this
->provisionEntityResource();
Url::fromRoute('rest.entity.contact_message.DELETE')
->toString(TRUE);
}
}