class ContentPreprocessTest
@coversDefaultClass \Drupal\content_moderation\ContentPreprocess
      
    
@group content_moderation
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\PhpunitCompatibilityTrait extends \PHPUnit\Framework\TestCase- class \Drupal\Tests\content_moderation\Unit\ContentPreprocessTest extends \Drupal\Tests\UnitTestCase
 
Expanded class hierarchy of ContentPreprocessTest
File
- 
              core/modules/ content_moderation/ tests/ src/ Unit/ ContentPreprocessTest.php, line 15 
Namespace
Drupal\Tests\content_moderation\UnitView source
class ContentPreprocessTest extends UnitTestCase {
  
  /**
   * @covers ::isLatestVersionPage
   * @dataProvider routeNodeProvider
   */
  public function testIsLatestVersionPage($route_name, $route_nid, $check_nid, $result, $message) {
    $content_preprocess = new ContentPreprocess($this->setupCurrentRouteMatch($route_name, $route_nid));
    $node = $this->setupNode($check_nid);
    $this->assertEquals($result, $content_preprocess->isLatestVersionPage($node), $message);
  }
  
  /**
   * Data provider for self::testIsLatestVersionPage().
   */
  public function routeNodeProvider() {
    return [
      [
        'entity.node.canonical',
        1,
        1,
        FALSE,
        'Not on the latest version tab route.',
      ],
      [
        'entity.node.latest_version',
        1,
        1,
        TRUE,
        'On the latest version tab route, with the route node.',
      ],
      [
        'entity.node.latest_version',
        1,
        2,
        FALSE,
        'On the latest version tab route, with a different node.',
      ],
    ];
  }
  
  /**
   * Mock the current route matching object.
   *
   * @param string $route_name
   *   The route to mock.
   * @param int $nid
   *   The node ID for mocking.
   *
   * @return \Drupal\Core\Routing\CurrentRouteMatch
   *   The mocked current route match object.
   */
  protected function setupCurrentRouteMatch($route_name, $nid) {
    $route_match = $this->prophesize(CurrentRouteMatch::class);
    $route_match->getRouteName()
      ->willReturn($route_name);
    $route_match->getParameter('node')
      ->willReturn($this->setupNode($nid));
    return $route_match->reveal();
  }
  
  /**
   * Mock a node object.
   *
   * @param int $nid
   *   The node ID to mock.
   *
   * @return \Drupal\node\Entity\Node
   *   The mocked node.
   */
  protected function setupNode($nid) {
    $node = $this->prophesize(Node::class);
    $node->id()
      ->willReturn($nid);
    return $node->reveal();
  }
}Members
| Title Sort descending | Deprecated | Modifiers | Object type | Summary | Overrides | 
|---|---|---|---|---|---|
| ContentPreprocessTest::routeNodeProvider | public | function | Data provider for self::testIsLatestVersionPage(). | ||
| ContentPreprocessTest::setupCurrentRouteMatch | protected | function | Mock the current route matching object. | ||
| ContentPreprocessTest::setupNode | protected | function | Mock a node object. | ||
| ContentPreprocessTest::testIsLatestVersionPage | public | function | @covers ::isLatestVersionPage[[api-linebreak]] @dataProvider routeNodeProvider | ||
| 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 | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
