UserAccessTest.php in Drupal 7 to 8/9 Module Upgrader 8
File
tests/src/Unit/Plugin/DMU/Converter/Functions/UserAccessTest.php
View source
<?php
namespace Drupal\Tests\drupalmoduleupgrader\Unit\Plugin\DMU\Converter\Functions;
use Pharborist\Parser;
class UserAccessTest extends FunctionCallModifierTestBase {
public function testRewriteCurrentUser() {
$function_call = Parser::parseExpression('user_access("kick ass and take names")');
$rewritten = $this->plugin
->rewrite($function_call, $this->target);
$this
->assertInstanceOf('\\Pharborist\\Objects\\ObjectMethodCallNode', $rewritten);
$this
->assertEquals('\\Drupal::currentUser()->hasPermission("kick ass and take names")', $rewritten
->getText());
}
public function testRewriteAccount() {
$function_call = Parser::parseExpression('user_access("be exceptional", $account)');
$rewritten = $this->plugin
->rewrite($function_call, $this->target);
$this
->assertInstanceOf('\\Pharborist\\Objects\\ObjectMethodCallNode', $rewritten);
$this
->assertEquals('$account->hasPermission("be exceptional")', $rewritten
->getText());
}
}