You are here

class AssetRefreshManagerTest in Media: Acquia DAM 8

AssetRefreshManager Service test.

@coversDefaultClass \Drupal\media_acquiadam\Service\AssetRefreshManager

@group media_acquiadam

Hierarchy

Expanded class hierarchy of AssetRefreshManagerTest

File

tests/src/Unit/AssetRefreshManagerTest.php, line 27

Namespace

Drupal\Tests\media_acquiadam\Unit
View source
class AssetRefreshManagerTest extends UnitTestCase {
  use AcquiadamLoggerFactoryTrait;
  protected const LAST_READ_TIMESTAMP = 1550000000;
  protected const REQUEST_TIME = 1560000000;

  /**
   * DI container.
   *
   * @var \Drupal\Core\DependencyInjection\ContainerBuilder
   */
  protected $container;

  /**
   * AssetRefreshManager service.
   *
   * @var \Drupal\media_acquiadam\Service\AssetRefreshManagerInterface
   */
  protected $assetRefreshManager;

  /**
   * The Queue Worker.
   *
   * @var \Drupal\Core\Queue\QueueInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $queue;

  /**
   * The media entity query.
   *
   * @var \Drupal\Core\Entity\Query\QueryInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $entityQuery;

  /**
   * The Acquiadam Service.
   *
   * @var \Drupal\media_acquiadam\AcquiadamInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $acquiadamClient;

  /**
   * The Drupal State Service.
   *
   * @var \Drupal\Core\State\StateInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $state;

  /**
   * Validate that we can modify the last read interval property correctly.
   */
  public function testLastReadIntervalGetterSetter() {
    $expected = 10000000;
    $this
      ->assertEquals($expected, $this->assetRefreshManager
      ->getLastReadInterval());
    $original = $this->assetRefreshManager
      ->setLastReadInterval($expected * 2);
    $this
      ->assertEquals($expected, $original);
    $original = $this->assetRefreshManager
      ->setLastReadInterval($original);
    $this
      ->assertEquals($expected * 2, $original);
  }

  /**
   * Validate that we can modify the request limit property correctly.
   */
  public function testRequestLimitGetterSetter() {
    $expected = 3;
    $this
      ->assertEquals($expected, $this->assetRefreshManager
      ->getRequestLimit());
    $original = $this->assetRefreshManager
      ->setRequestLimit($expected * 2);
    $this
      ->assertEquals($expected, $original);
    $original = $this->assetRefreshManager
      ->setRequestLimit($expected);
    $this
      ->assertEquals($expected * 2, $original);
  }

  /**
   * Tests a "no asset id fields provided" scenario.
   */
  public function testEmptyAssetIdFields() {
    $this->state
      ->method('get')
      ->willReturnMap([
      [
        'media_acquiadam.notifications_endtime',
        self::REQUEST_TIME,
        self::REQUEST_TIME,
      ],
    ]);
    $this->state
      ->method('set')
      ->with('media_acquiadam.notifications_starttime', self::REQUEST_TIME);
    $actual = $this->assetRefreshManager
      ->updateQueue([]);
    $this
      ->assertEquals(0, $actual);
  }

  /**
   * Tests a "no matching media entity ids are found" scenario.
   *
   * @param array $request_query_options
   *   The list of request query options.
   * @param array $response
   *   The stub of Notifications API response.
   * @param array $expected_asset_ids
   *   The list of expected asset ids.
   *
   * @dataProvider providerTestInterruptedFetch
   */
  public function testNoMatchingMediaEntityIds(array $request_query_options, array $response, array $expected_asset_ids) {
    $this->state
      ->method('get')
      ->willReturnMap([
      [
        'media_acquiadam.notifications_next_page',
        NULL,
        NULL,
      ],
      [
        'media_acquiadam.notifications_starttime',
        NULL,
        self::LAST_READ_TIMESTAMP,
      ],
      [
        'media_acquiadam.notifications_endtime',
        self::REQUEST_TIME,
        self::REQUEST_TIME,
      ],
    ]);
    $this
      ->setupApiResponseStub($request_query_options, $response);
    $this->entityQuery
      ->expects($this
      ->any())
      ->method('orConditionGroup')
      ->will($this
      ->returnSelf());
    $this->entityQuery
      ->expects($this
      ->any())
      ->method('condition')
      ->withConsecutive([
      $this
        ->equalTo('bundle'),
      $this
        ->equalTo('test_bundle'),
    ], [
      $this
        ->equalTo('field_1'),
      $this
        ->equalTo($expected_asset_ids),
    ])
      ->will($this
      ->returnSelf());
    $this->entityQuery
      ->expects($this
      ->any())
      ->method('execute')
      ->willReturn([]);
    $this->queue
      ->expects($this
      ->never())
      ->method($this
      ->anything());
    $actual = $this->assetRefreshManager
      ->updateQueue($this
      ->getAssetIdFieldsStub());
    $this
      ->assertEquals(0, $actual);
  }

  /**
   * Tests a "non-interrupted API fetch" scenario.
   *
   * @param array $request_query_options
   *   The list of request query options.
   * @param array $response
   *   The stub of Notifications API response.
   * @param array $expected_asset_ids
   *   The list of expected asset ids.
   * @param int $expected_total
   *   The expected number of media entities to add to the queue.
   *
   * @dataProvider providerTestNonInterruptedFetch
   */
  public function testNonInterruptedFetch(array $request_query_options, array $response, array $expected_asset_ids, int $expected_total) {
    $this->state
      ->method('get')
      ->willReturnMap([
      [
        'media_acquiadam.notifications_next_page',
        NULL,
        NULL,
      ],
      [
        'media_acquiadam.notifications_starttime',
        NULL,
        NULL,
      ],
      [
        'media_acquiadam.notifications_endtime',
        self::REQUEST_TIME,
        self::REQUEST_TIME,
      ],
    ]);
    $this
      ->setupApiResponseStub($request_query_options, $response);
    $this
      ->setupMediaEntityExpectations($expected_asset_ids, $expected_total);
    $this->state
      ->method('set')
      ->withConsecutive([
      'media_acquiadam.notifications_starttime',
      self::LAST_READ_TIMESTAMP,
    ], [
      'media_acquiadam.notifications_starttime',
      self::REQUEST_TIME,
    ], [
      'media_acquiadam.notifications_endtime',
      NULL,
    ], [
      'media_acquiadam.notifications_next_page',
      NULL,
    ]);
    $actual = $this->assetRefreshManager
      ->updateQueue($this
      ->getAssetIdFieldsStub());
    $this
      ->assertEquals($expected_total, $actual);
  }

  /**
   * Tests an "interrupted API fetch (a result set exceeds the limit)" scenario.
   *
   * @param array $request_query_options
   *   The list of request query options.
   * @param array $response
   *   The stub of Notifications API response.
   * @param array $expected_asset_ids
   *   The list of expected asset ids.
   * @param int $expected_total
   *   The expected number of media entities to add to the queue.
   *
   * @dataProvider providerTestInterruptedFetch
   */
  public function testInterruptedFetch(array $request_query_options, array $response, array $expected_asset_ids, int $expected_total) {
    $this->state
      ->method('get')
      ->willReturnMap([
      [
        'media_acquiadam.notifications_next_page',
        NULL,
        NULL,
      ],
      [
        'media_acquiadam.notifications_starttime',
        NULL,
        self::LAST_READ_TIMESTAMP,
      ],
      [
        'media_acquiadam.notifications_endtime',
        self::REQUEST_TIME,
        self::REQUEST_TIME,
      ],
      [
        'media_acquiadam.notifications_endtime',
        NULL,
        1234,
      ],
    ]);
    $this
      ->setupApiResponseStub($request_query_options, $response);
    $this
      ->setupMediaEntityExpectations($expected_asset_ids, $expected_total);
    $this->state
      ->method('set')
      ->withConsecutive([
      'media_acquiadam.notifications_next_page',
      2,
    ], [
      'media_acquiadam.notifications_endtime',
      self::REQUEST_TIME,
    ]);
    $actual = $this->assetRefreshManager
      ->updateQueue($this
      ->getAssetIdFieldsStub());
    $this
      ->assertEquals(3, $actual);
  }

  /**
   * Tests a "failed API request" scenario.
   *
   * @param \Throwable $exception_stub
   *   Exception object stub.
   *
   * @dataProvider providerTestFailedApiRequest
   */
  public function testFailedApiRequest(\Throwable $exception_stub) {
    $this->acquiadamClient
      ->method('getNotifications')
      ->will($this
      ->throwException($exception_stub));
    $actual = $this->assetRefreshManager
      ->updateQueue($this
      ->getAssetIdFieldsStub());
    $this
      ->assertEquals(0, $actual);
  }

  /**
   * Provides test data for not-interrupted fetches (normal) related tests.
   *
   * @return array
   *   Test data (request query options, response, expected asset ids).
   */
  public function providerTestNonInterruptedFetch() {
    return [
      [
        [
          'limit' => 3,
          'offset' => 0,
          'starttime' => self::LAST_READ_TIMESTAMP,
          'endtime' => self::REQUEST_TIME,
        ],
        [
          'total' => 3,
          'notifications' => [
            [
              'action' => 'asset_property',
              'source' => [
                'type' => 'asset',
                'id' => 10,
              ],
            ],
            [
              'action' => 'asset_version',
              'source' => [
                'type' => 'asset',
                'id' => 1000,
              ],
            ],
            [
              'action' => 'asset_delete',
              'source' => [
                'type' => 'folder',
                'id' => 100,
              ],
              'subitems' => [
                [
                  'type' => 'asset',
                  'id' => 1,
                ],
                [
                  'type' => 'asset',
                  'id' => 2,
                ],
                [
                  'type' => 'asset',
                  'id' => 3,
                ],
                [
                  'type' => 'asset',
                  'id' => 4,
                ],
              ],
            ],
          ],
        ],
        [
          10,
          1000,
          1,
          2,
          3,
          4,
        ],
        6,
      ],
      // Un-tracked action types.
      [
        [
          'limit' => 3,
          'offset' => 0,
          'starttime' => self::LAST_READ_TIMESTAMP,
          'endtime' => self::REQUEST_TIME,
        ],
        [
          'total' => 3,
          'notifications' => [
            [
              'action' => 'asset_property_foo',
              'source' => [
                'type' => 'asset',
                'id' => 10,
              ],
            ],
            [
              'action' => 'asset_version_bar',
              'source' => [
                'type' => 'asset',
                'id' => 1000,
              ],
            ],
            [
              'action' => 'asset_delete',
              'source' => [
                'type' => 'folder',
                'id' => 100,
              ],
              'subitems' => [
                [
                  'type' => 'asset',
                  'id' => 1,
                ],
                [
                  'type' => 'asset',
                  'id' => 2,
                ],
                [
                  'type' => 'asset',
                  'id' => 3,
                ],
                [
                  'type' => 'asset',
                  'id' => 4,
                ],
              ],
            ],
          ],
        ],
        [
          1,
          2,
          3,
          4,
        ],
        4,
      ],
      // Un-tracked item types.
      [
        [
          'limit' => 3,
          'offset' => 0,
          'starttime' => self::LAST_READ_TIMESTAMP,
          'endtime' => self::REQUEST_TIME,
        ],
        [
          'total' => 3,
          'notifications' => [
            [
              'action' => 'asset_property',
              'source' => [
                'type' => 'asset',
                'id' => 10,
              ],
            ],
            [
              'action' => 'asset_version',
              'source' => [
                'type' => 'asset_foo',
                'id' => 1000,
              ],
            ],
            [
              'action' => 'asset_delete',
              'source' => [
                'type' => 'folder',
                'id' => 100,
              ],
              'subitems' => [
                [
                  'type' => 'image',
                  'id' => 1,
                ],
                [
                  'type' => 'asset_bar',
                  'id' => 2,
                ],
                [
                  'type_foo' => 'bar',
                ],
                [
                  'type' => 'image',
                  'id' => 1,
                ],
                [
                  'type' => 'asset',
                  'id' => 3,
                ],
                [
                  'type' => 'asset',
                  'id' => 4,
                ],
              ],
            ],
          ],
        ],
        [
          10,
          1,
          3,
          4,
        ],
        4,
      ],
      // No results.
      [
        [
          'limit' => 3,
          'offset' => 0,
          'starttime' => self::LAST_READ_TIMESTAMP,
          'endtime' => self::REQUEST_TIME,
        ],
        [
          'total' => 0,
          'notifications' => [],
        ],
        [],
        0,
      ],
    ];
  }

  /**
   * Provides test data for interrupted fetches related tests.
   *
   * @return array
   *   Test data (request query options, response, expected asset ids).
   */
  public function providerTestInterruptedFetch() {
    return [
      [
        [
          'limit' => 3,
          'offset' => 0,
          'starttime' => self::LAST_READ_TIMESTAMP,
          'endtime' => self::REQUEST_TIME,
        ],
        [
          'total' => 6,
          'notifications' => [
            [
              'action' => 'asset_property',
              'source' => [
                'type' => 'asset',
                'id' => 10,
              ],
            ],
            [
              'action' => 'asset_property',
              'source' => [
                'type' => 'asset',
                'id' => 11,
              ],
            ],
            [
              'action' => 'asset_version',
              'source' => [
                'type' => 'asset',
                'id' => 1000,
              ],
            ],
          ],
        ],
        [
          10,
          11,
          1000,
        ],
        3,
      ],
    ];
  }

  /**
   * Provides test data for testing failed API requests.
   *
   * @return \Throwable[]
   *   Test data (GuzzleException and InvalidCredentialsException stubs).
   */
  public function providerTestFailedApiRequest() : array {
    return [
      [
        new class extends \Exception implements GuzzleException {

        },
      ],
      [
        new InvalidCredentialsException(),
      ],
    ];
  }

  /**
   * Returns asset id fields stub.
   *
   * @return array
   *   Asset id fields stub where key is the bundle and value is the field name.
   */
  protected function getAssetIdFieldsStub() {
    return [
      'test_bundle' => 'field_1',
    ];
  }

  /**
   * Setups the API response stub.
   *
   * @param array $request_query_options
   *   The list of request query options.
   * @param array $response
   *   The stub of Notifications API response.
   */
  protected function setupApiResponseStub(array $request_query_options, array $response) {
    $this->acquiadamClient
      ->expects($this
      ->any())
      ->method('getNotifications')
      ->with($request_query_options)
      ->willReturn($response);
  }

  /**
   * Setups the media entity query execution expectations.
   *
   * @param array $expected_asset_ids
   *   The list of expected asset ids.
   * @param int $expected_total
   *   The expected number of media entities to add to the queue.
   */
  protected function setupMediaEntityExpectations(array $expected_asset_ids, int $expected_total) {
    $this->entityQuery
      ->expects($this
      ->any())
      ->method('orConditionGroup')
      ->will($this
      ->returnSelf());
    $this->entityQuery
      ->expects($this
      ->any())
      ->method('condition')
      ->withConsecutive([
      $this
        ->equalTo('bundle'),
      $this
        ->equalTo('test_bundle'),
    ], [
      $this
        ->equalTo('field_1'),
      $this
        ->equalTo($expected_asset_ids),
    ])
      ->will($this
      ->returnSelf());
    if (!$expected_asset_ids) {
      return;
    }
    $this->entityQuery
      ->expects($this
      ->any())
      ->method('execute')
      ->willReturn(range(1, $expected_total));
    $unit_test = $this;
    $expected_queue_items = array_map(function ($value) use ($unit_test) {
      return [
        $unit_test
          ->equalTo([
          'media_id' => $value,
        ]),
      ];
    }, range(1, $expected_total));
    $this->queue
      ->expects($this
      ->any())
      ->method('createItem')
      ->withConsecutive(...$expected_queue_items);
  }

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this->acquiadamClient = $this
      ->getMockBuilder(Acquiadam::class)
      ->setMethods([
      'getNotifications',
    ])
      ->disableOriginalConstructor()
      ->getMock();
    $this->state = $this
      ->getMockBuilder(State::class)
      ->disableOriginalConstructor()
      ->getMock();
    $this->queue = $this
      ->getMockBuilder(DatabaseQueue::class)
      ->disableOriginalConstructor()
      ->getMock();

    /** @var \Drupal\Core\Queue\QueueFactory|\PHPUnit\Framework\MockObject\MockObject $queue_factory */
    $queue_factory = $this
      ->getMockBuilder(QueueFactory::class)
      ->disableOriginalConstructor()
      ->getMock();
    $queue_factory
      ->method('get')
      ->willReturn($this->queue);
    $this->entityQuery = $this
      ->getMockBuilder(Query::class)
      ->setMethods([
      'orConditionGroup',
      'condition',
      'execute',
      'get',
    ])
      ->disableOriginalConstructor()
      ->getMock();
    $entity_storage = $this
      ->getMockBuilder(EntityStorageInterface::class)
      ->disableOriginalConstructor()
      ->getMock();
    $entity_storage
      ->method('getQuery')
      ->willReturn($this->entityQuery);
    $entity_type_manager = $this
      ->getMockBuilder(EntityTypeManagerInterface::class)
      ->disableOriginalConstructor()
      ->getMock();
    $entity_type_manager
      ->method('getStorage')
      ->willReturnMap([
      [
        'media',
        $entity_storage,
      ],
    ]);

    /** @var \Drupal\Component\Datetime\Time|\PHPUnit\Framework\MockObject\MockObject $time */
    $time = $this
      ->getMockBuilder(Time::class)
      ->disableOriginalConstructor()
      ->getMock();
    $time
      ->method('getRequestTime')
      ->willReturn(self::REQUEST_TIME);
    $this->container = new ContainerBuilder();
    $this->container
      ->set('state', $this->state);
    $this->container
      ->set('logger.factory', $this
      ->getLoggerFactoryStub());
    $this->container
      ->set('queue', $queue_factory);
    $this->container
      ->set('entity_type.manager', $entity_type_manager);
    $this->container
      ->set('datetime.time', $time);
    $this->container
      ->set('media_acquiadam.acquiadam', $this->acquiadamClient);
    \Drupal::setContainer($this->container);
    $this->assetRefreshManager = AssetRefreshManager::create($this->container);
    $this->assetRefreshManager
      ->setLastReadInterval(10000000);
    $this->assetRefreshManager
      ->setRequestLimit(3);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AcquiadamLoggerFactoryTrait::getLoggerFactoryStub protected function Gets a stubbed out Logger factory for Media: Acquia DAM test usage.
AssetRefreshManagerTest::$acquiadamClient protected property The Acquiadam Service.
AssetRefreshManagerTest::$assetRefreshManager protected property AssetRefreshManager service.
AssetRefreshManagerTest::$container protected property DI container.
AssetRefreshManagerTest::$entityQuery protected property The media entity query.
AssetRefreshManagerTest::$queue protected property The Queue Worker.
AssetRefreshManagerTest::$state protected property The Drupal State Service.
AssetRefreshManagerTest::getAssetIdFieldsStub protected function Returns asset id fields stub.
AssetRefreshManagerTest::LAST_READ_TIMESTAMP protected constant
AssetRefreshManagerTest::providerTestFailedApiRequest public function Provides test data for testing failed API requests.
AssetRefreshManagerTest::providerTestInterruptedFetch public function Provides test data for interrupted fetches related tests.
AssetRefreshManagerTest::providerTestNonInterruptedFetch public function Provides test data for not-interrupted fetches (normal) related tests.
AssetRefreshManagerTest::REQUEST_TIME protected constant
AssetRefreshManagerTest::setUp protected function Overrides UnitTestCase::setUp
AssetRefreshManagerTest::setupApiResponseStub protected function Setups the API response stub.
AssetRefreshManagerTest::setupMediaEntityExpectations protected function Setups the media entity query execution expectations.
AssetRefreshManagerTest::testEmptyAssetIdFields public function Tests a "no asset id fields provided" scenario.
AssetRefreshManagerTest::testFailedApiRequest public function Tests a "failed API request" scenario.
AssetRefreshManagerTest::testInterruptedFetch public function Tests an "interrupted API fetch (a result set exceeds the limit)" scenario.
AssetRefreshManagerTest::testLastReadIntervalGetterSetter public function Validate that we can modify the last read interval property correctly.
AssetRefreshManagerTest::testNoMatchingMediaEntityIds public function Tests a "no matching media entity ids are found" scenario.
AssetRefreshManagerTest::testNonInterruptedFetch public function Tests a "non-interrupted API fetch" scenario.
AssetRefreshManagerTest::testRequestLimitGetterSetter public function Validate that we can modify the request limit property correctly.
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 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::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.