You are here

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

File

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

Class

UserLoadTest
@group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\UserLoad

Namespace

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

Code

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