function EntityTestDateOnlyTest::assertNormalizationEdgeCases

Same name and namespace in other branches
  1. 9 core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDateonlyTest.php \Drupal\Tests\datetime\Functional\EntityResource\EntityTest\EntityTestDateonlyTest::assertNormalizationEdgeCases()
  2. 8.9.x core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDateonlyTest.php \Drupal\Tests\datetime\Functional\EntityResource\EntityTest\EntityTestDateonlyTest::assertNormalizationEdgeCases()
  3. 10 core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDateOnlyTest.php \Drupal\Tests\datetime\Functional\EntityResource\EntityTest\EntityTestDateOnlyTest::assertNormalizationEdgeCases()

Overrides EntityResourceTestBase::assertNormalizationEdgeCases

File

core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDateOnlyTest.php, line 122

Class

EntityTestDateOnlyTest
Tests the datetime field constraint with 'date' items.

Namespace

Drupal\Tests\datetime\Functional\EntityResource\EntityTest

Code

protected function assertNormalizationEdgeCases($method, Url $url, array $request_options) : void {
    parent::assertNormalizationEdgeCases($method, $url, $request_options);
    if ($this->entity
        ->getEntityType()
        ->hasKey('bundle')) {
        $fieldName = static::$fieldName;
        // DX: 422 when date type is incorrect.
        $normalization = $this->getNormalizedPostEntity();
        $normalization[static::$fieldName][0]['value'] = [
            '2017',
            '03',
            '01',
        ];
        $request_options[RequestOptions::BODY] = $this->serializer
            ->encode($normalization, static::$format);
        $response = $this->request($method, $url, $request_options);
        $message = "Unprocessable Entity: validation failed.\n{$fieldName}.0: The datetime value must be a string.\n{$fieldName}.0.value: This value should be of the correct primitive type.\n";
        $this->assertResourceErrorResponse(422, $message, $response);
        // DX: 422 when date format is incorrect.
        $normalization = $this->getNormalizedPostEntity();
        $value = '2017-03-01T01:02:03';
        $normalization[static::$fieldName][0]['value'] = $value;
        $request_options[RequestOptions::BODY] = $this->serializer
            ->encode($normalization, static::$format);
        $response = $this->request($method, $url, $request_options);
        $message = "The specified date \"{$value}\" is not in an accepted format: \"Y-m-d\" (date-only).";
        $this->assertResourceErrorResponse(422, $message, $response);
        // DX: 422 when value is not a valid date.
        $normalization = $this->getNormalizedPostEntity();
        $value = '2017-13-55';
        $normalization[static::$fieldName][0]['value'] = $value;
        $request_options[RequestOptions::BODY] = $this->serializer
            ->encode($normalization, static::$format);
        $response = $this->request($method, $url, $request_options);
        $message = "The specified date \"{$value}\" is not in an accepted format: \"Y-m-d\" (date-only).";
        $this->assertResourceErrorResponse(422, $message, $response);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.