Same name and namespace in other branches
  1. 8.9.x core/modules/serialization/tests/src/Unit/EntityResolver/UuidResolverTest.php \Drupal\Tests\serialization\Unit\EntityResolver\UuidResolverTest
  2. 9 core/modules/serialization/tests/src/Unit/EntityResolver/UuidResolverTest.php \Drupal\Tests\serialization\Unit\EntityResolver\UuidResolverTest

@coversDefaultClass \Drupal\serialization\EntityResolver\UuidResolver @group serialization

Hierarchy

Expanded class hierarchy of UuidResolverTest

File

core/modules/serialization/tests/src/Unit/EntityResolver/UuidResolverTest.php, line 15

Namespace

Drupal\Tests\serialization\Unit\EntityResolver
View source
class UuidResolverTest extends UnitTestCase {

  /**
   * The UuidResolver instance.
   *
   * @var \Drupal\serialization\EntityResolver\UuidResolver
   */
  protected $resolver;

  /**
   * The mock entity repository service.
   *
   * @var \Drupal\Core\Entity\EntityRepositoryInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $entityRepository;

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->entityRepository = $this
      ->createMock(EntityRepositoryInterface::class);
    $this->resolver = new UuidResolver($this->entityRepository);
  }

  /**
   * Tests resolve() with a class using the incorrect interface.
   */
  public function testResolveNotInInterface() {
    $this->entityRepository
      ->expects($this
      ->never())
      ->method('loadEntityByUuid');
    $normalizer = $this
      ->createMock('Symfony\\Component\\Serializer\\Normalizer\\NormalizerInterface');
    $this
      ->assertNull($this->resolver
      ->resolve($normalizer, [], 'test_type'));
  }

  /**
   * Tests resolve() with a class using the correct interface but no UUID.
   */
  public function testResolveNoUuid() {
    $this->entityRepository
      ->expects($this
      ->never())
      ->method('loadEntityByUuid');
    $normalizer = $this
      ->createMock('Drupal\\serialization\\EntityResolver\\UuidReferenceInterface');
    $normalizer
      ->expects($this
      ->once())
      ->method('getUuid')
      ->with([])
      ->willReturn(NULL);
    $this
      ->assertNull($this->resolver
      ->resolve($normalizer, [], 'test_type'));
  }

  /**
   * Tests resolve() with correct interface but no matching entity for the UUID.
   */
  public function testResolveNoEntity() {
    $uuid = '392eab92-35c2-4625-872d-a9dab4da008e';
    $this->entityRepository
      ->expects($this
      ->once())
      ->method('loadEntityByUuid')
      ->with('test_type')
      ->willReturn(NULL);
    $normalizer = $this
      ->createMock('Drupal\\serialization\\EntityResolver\\UuidReferenceInterface');
    $normalizer
      ->expects($this
      ->once())
      ->method('getUuid')
      ->with([])
      ->willReturn($uuid);
    $this
      ->assertNull($this->resolver
      ->resolve($normalizer, [], 'test_type'));
  }

  /**
   * Tests resolve() when a UUID corresponds to an entity.
   */
  public function testResolveWithEntity() {
    $uuid = '392eab92-35c2-4625-872d-a9dab4da008e';
    $entity = $this
      ->createMock('Drupal\\Core\\Entity\\EntityInterface');
    $entity
      ->expects($this
      ->once())
      ->method('id')
      ->willReturn(1);
    $this->entityRepository
      ->expects($this
      ->once())
      ->method('loadEntityByUuid')
      ->with('test_type', $uuid)
      ->willReturn($entity);
    $normalizer = $this
      ->createMock('Drupal\\serialization\\EntityResolver\\UuidReferenceInterface');
    $normalizer
      ->expects($this
      ->once())
      ->method('getUuid')
      ->with([])
      ->willReturn($uuid);
    $this
      ->assertSame(1, $this->resolver
      ->resolve($normalizer, [], 'test_type'));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers.
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate Deprecated public function Callback for random string validation.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::setUpBeforeClass public static function
UnitTestCase::__get public function
UuidResolverTest::$entityRepository protected property The mock entity repository service.
UuidResolverTest::$resolver protected property The UuidResolver instance.
UuidResolverTest::setUp protected function Overrides UnitTestCase::setUp
UuidResolverTest::testResolveNoEntity public function Tests resolve() with correct interface but no matching entity for the UUID.
UuidResolverTest::testResolveNotInInterface public function Tests resolve() with a class using the incorrect interface.
UuidResolverTest::testResolveNoUuid public function Tests resolve() with a class using the correct interface but no UUID.
UuidResolverTest::testResolveWithEntity public function Tests resolve() when a UUID corresponds to an entity.