You are here

RegressionTest.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Database/RegressionTest.php

File

core/tests/Drupal/KernelTests/Core/Database/RegressionTest.php
View source
<?php

namespace Drupal\KernelTests\Core\Database;


/**
 * Regression tests cases for the database layer.
 *
 * @group Database
 */
class RegressionTest extends DatabaseTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = [
    'node',
    'user',
  ];

  /**
   * Ensures that non-ASCII UTF-8 data is stored in the database properly.
   */
  public function testRegression_310447() {

    // That's a 255 character UTF-8 string.
    $job = str_repeat("é", 255);
    $this->connection
      ->insert('test')
      ->fields([
      'name' => $this
        ->randomMachineName(),
      'age' => 20,
      'job' => $job,
    ])
      ->execute();
    $from_database = $this->connection
      ->query('SELECT job FROM {test} WHERE job = :job', [
      ':job' => $job,
    ])
      ->fetchField();
    $this
      ->assertSame($job, $from_database, 'The database handles UTF-8 characters cleanly.');
  }

  /**
   * Tests the Schema::tableExists() method.
   */
  public function testDBTableExists() {
    $this
      ->assertSame(TRUE, $this->connection
      ->schema()
      ->tableExists('test'), 'Returns true for existent table.');
    $this
      ->assertSame(FALSE, $this->connection
      ->schema()
      ->tableExists('nosuchtable'), 'Returns false for nonexistent table.');
  }

  /**
   * Tests the \Drupal\Core\Database\Schema::fieldExists() method.
   */
  public function testDBFieldExists() {
    $schema = $this->connection
      ->schema();
    $this
      ->assertSame(TRUE, $schema
      ->fieldExists('test', 'name'), 'Returns true for existent column.');
    $this
      ->assertSame(FALSE, $schema
      ->fieldExists('test', 'nosuchcolumn'), 'Returns false for nonexistent column.');
  }

  /**
   * Tests the Schema::indexExists() method.
   */
  public function testDBIndexExists() {
    $this
      ->assertSame(TRUE, $this->connection
      ->schema()
      ->indexExists('test', 'ages'), 'Returns true for existent index.');
    $this
      ->assertSame(FALSE, $this->connection
      ->schema()
      ->indexExists('test', 'nosuchindex'), 'Returns false for nonexistent index.');
  }

}

Classes

Namesort descending Description
RegressionTest Regression tests cases for the database layer.