You are here

class OnlyOnePrintAdminPageTest in Allow a content type only once (Only One) 8

Tests the OnlyOnePrintAdminPage class methods.

@group onlyone @coversDefaultClass \Drupal\onlyone\OnlyOnePrintAdminPage

Hierarchy

Expanded class hierarchy of OnlyOnePrintAdminPageTest

File

tests/src/Unit/OnlyOnePrintAdminPageTest.php, line 15

Namespace

Drupal\Tests\onlyone\Unit
View source
class OnlyOnePrintAdminPageTest extends UnitTestCase {
  use OnlyOneUnitTestTrait;

  /**
   * Tests the content type list for printing for the Admin Page.
   *
   * @param array $expected
   *   The expected result from calling the function.
   * @param array $content_types
   *   A list with content types objects.
   *
   * @covers ::getContentTypesListForPrint
   * @dataProvider providerGetContentTypesListForPrint
   */
  public function testGetContentTypesListForPrint(array $expected, array $content_types) {

    // Creating the object.
    $onlyOnePrintAdminPage = new OnlyOnePrintAdminPage();

    // Testing the function.
    $this
      ->assertEquals($expected, $onlyOnePrintAdminPage
      ->getContentTypesListForPrint($content_types));
  }

  /**
   * Data provider for testGetContentTypesListForPrint().
   *
   * @return array
   *   An array of arrays, each containing:
   *   - 'expected' - Expected return from getContentTypesListForPrint().
   *   - 'content_types' - A list with content types objects.
   *
   * @see getContentTypesListForPrint()
   */
  public function providerGetContentTypesListForPrint() {

    // Getting the list of content types.
    $content_types = $this
      ->getContentTypesObjectList();
    $expected = [
      // Test 1.
      [
        'page' => 'Basic Page <strong>(En: 1 Node, Es: 1 Node)</strong>',
        'blog' => 'Blog Post <strong>(0 Nodes)</strong>',
        'car' => 'Car <strong>(Not specified: 1 Node, Not applicable: 2 Nodes, En: 1 Node)</strong>',
        'article' => 'Article <strong>(Not specified: 1 Node, En: 2 Nodes, Es: 1 Node)</strong>',
      ],
      // Test 2.
      [
        'blog' => 'Blog Post <strong>(En: 1 Node)</strong>',
        'car' => 'Car <strong>(0 Nodes)</strong>',
      ],
      // Test 3.
      [
        'page' => 'Basic Page <strong>(En: 1 Node, Es: 1 Node)</strong>',
        'car' => 'Car <strong>(0 Nodes)</strong>',
        'article' => 'Article <strong>(Es: 3 Nodes)</strong>',
      ],
      // Test 4.
      [
        'page' => 'Basic Page <strong>(1 Node)</strong>',
        'blog' => 'Blog Post <strong>(2 Nodes)</strong>',
        'car' => 'Car <strong>(0 Nodes)</strong>',
        'article' => 'Article <strong>(5 Nodes)</strong>',
      ],
      // Test 5.
      [
        'blog' => 'Blog Post <strong>(0 Nodes)</strong>',
        'car' => 'Car <strong>(1 Node)</strong>',
      ],
      // Test 6.
      [
        'page' => 'Basic Page <strong>(1 Node)</strong>',
        'car' => 'Car <strong>(5 Nodes)</strong>',
        'article' => 'Article <strong>(3 Nodes)</strong>',
      ],
    ];
    $tests['multilingual 1'] = [
      $expected[0],
      $content_types[0],
    ];
    $tests['multilingual 2'] = [
      $expected[1],
      $content_types[1],
    ];
    $tests['multilingual 3'] = [
      $expected[2],
      $content_types[2],
    ];
    $tests['non-multilingual 1'] = [
      $expected[3],
      $content_types[3],
    ];
    $tests['non-multilingual 2'] = [
      $expected[4],
      $content_types[4],
    ];
    $tests['non-multilingual 3'] = [
      $expected[5],
      $content_types[5],
    ];
    return $tests;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
OnlyOnePrintAdminPageTest::providerGetContentTypesListForPrint public function Data provider for testGetContentTypesListForPrint().
OnlyOnePrintAdminPageTest::testGetContentTypesListForPrint public function Tests the content type list for printing for the Admin Page.
OnlyOneUnitTestTrait::getContentTypesList public function Returns a content type label list.
OnlyOneUnitTestTrait::getContentTypesObjectList public function Returns an array of content types objects.
OnlyOneUnitTestTrait::getLanguageMap public function Returns an array of language labels.
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.
UnitTestCase::setUp protected function 340