You are here

DbSelectTest.php in Drupal 7 to 8/9 Module Upgrader 8

File

tests/src/Unit/Plugin/DMU/Converter/Functions/DbSelectTest.php
View source
<?php

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

use Pharborist\Parser;

/**
 * @group DMU.Converter.Functions
 * @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\DbSelect
 */
class DbSelectTest extends FunctionCallModifierTestBase {
  public function testRewriteQuery() {
    $function_call = Parser::parseExpression('db_select("foo")');
    $rewritten = $this
      ->getPlugin()
      ->rewrite($function_call, $this->target);
    $this
      ->assertInstanceOf('\\Pharborist\\Objects\\ObjectMethodCallNode', $rewritten);
    $this
      ->assertEquals('\\Drupal::database()->select("foo")', $rewritten
      ->getText());
  }
  public function testSystemQuery() {
    $function_call = Parser::parseExpression('db_insert("system")');
    $rewritten = $this
      ->getPlugin()
      ->rewrite($function_call, $this->target);
    $this
      ->assertEquals(NULL, $rewritten);
  }

}

Classes