protected function SerializerTest::setUp in Drupal 8
Same name in this branch
- 8 core/modules/jsonapi/tests/src/Kernel/Serializer/SerializerTest.php \Drupal\Tests\jsonapi\Kernel\Serializer\SerializerTest::setUp()
- 8 core/modules/rest/tests/src/Unit/Plugin/views/style/SerializerTest.php \Drupal\Tests\rest\Unit\Plugin\views\style\SerializerTest::setUp()
Same name and namespace in other branches
- 9 core/modules/jsonapi/tests/src/Kernel/Serializer/SerializerTest.php \Drupal\Tests\jsonapi\Kernel\Serializer\SerializerTest::setUp()
Overrides KernelTestBase::setUp
File
- core/modules/ jsonapi/ tests/ src/ Kernel/ Serializer/ SerializerTest.php, line 62 
Class
- SerializerTest
- Tests the JSON:API serializer.
Namespace
Drupal\Tests\jsonapi\Kernel\SerializerCode
protected function setUp() {
  parent::setUp();
  // Add the entity schemas.
  $this
    ->installEntitySchema('node');
  $this
    ->installEntitySchema('user');
  // Add the additional table schemas.
  $this
    ->installSchema('system', [
    'sequences',
  ]);
  $this
    ->installSchema('node', [
    'node_access',
  ]);
  $this
    ->installSchema('user', [
    'users_data',
  ]);
  $this->user = User::create([
    'name' => $this
      ->randomString(),
    'status' => 1,
  ]);
  $this->user
    ->save();
  NodeType::create([
    'type' => 'foo',
  ])
    ->save();
  $this
    ->createTextField('node', 'foo', 'field_text', 'Text');
  $this->node = Node::create([
    'title' => 'Test Node',
    'type' => 'foo',
    'field_text' => [
      'value' => 'This is some text.',
      'format' => 'text_plain',
    ],
    'uid' => $this->user
      ->id(),
  ]);
  $this->node
    ->save();
  $this->container
    ->setAlias('sut', 'jsonapi.serializer');
  $this->resourceType = $this->container
    ->get('jsonapi.resource_type.repository')
    ->get($this->node
    ->getEntityTypeId(), $this->node
    ->bundle());
  $this->sut = $this->container
    ->get('sut');
}