You are here

public function ConnectionTest::providerMakeComments in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Database/ConnectionTest.php \Drupal\Tests\Core\Database\ConnectionTest::providerMakeComments()
  2. 10 core/tests/Drupal/Tests/Core/Database/ConnectionTest.php \Drupal\Tests\Core\Database\ConnectionTest::providerMakeComments()

Dataprovider for testMakeComments().

Return value

array Array of arrays with the following elements:

  • Expected filtered comment.
  • Arguments for Connection::makeComment().

File

core/tests/Drupal/Tests/Core/Database/ConnectionTest.php, line 237

Class

ConnectionTest
Tests the Connection class.

Namespace

Drupal\Tests\Core\Database

Code

public function providerMakeComments() {
  return [
    [
      '/*  */ ',
      [
        '',
      ],
    ],
    [
      '/* Exploit  *  / DROP TABLE node. -- */ ',
      [
        'Exploit * / DROP TABLE node; --',
      ],
    ],
    [
      '/* Exploit  *  / DROP TABLE node. --. another comment */ ',
      [
        'Exploit * / DROP TABLE node; --',
        'another comment',
      ],
    ],
  ];
}