You are here

public function CommentLoadTest::testRewriteWithCacheReset in Drupal 7 to 8/9 Module Upgrader 8

File

tests/src/Unit/Plugin/DMU/Converter/Functions/CommentLoadTest.php, line 21

Class

CommentLoadTest
@group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\CommentLoad

Namespace

Drupal\Tests\drupalmoduleupgrader\Unit\Plugin\DMU\Converter\Functions

Code

public function testRewriteWithCacheReset() {
  $original = <<<'END'
comment_load(30, TRUE);
END;
  $expected = <<<'END'
// @FIXME
// To reset the comment cache, use EntityStorageInterface::resetCache().
\Drupal::entityTypeManager()->getStorage('comment')->load(30);
END;
  $snippet = Parser::parseSnippet($original);
  $function_call = $snippet
    ->children(Filter::isFunctionCall('comment_load'))
    ->get(0);
  $rewritten = $this->plugin
    ->rewrite($function_call, $this->target);
  $function_call
    ->replaceWith($rewritten);
  $this
    ->assertEquals($expected, $snippet
    ->getText());
}