public function EntityQueryTest::testInjectionInCondition in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/KernelTests/Core/Entity/EntityQueryTest.php \Drupal\KernelTests\Core\Entity\EntityQueryTest::testInjectionInCondition()
- 9 core/tests/Drupal/KernelTests/Core/Entity/EntityQueryTest.php \Drupal\KernelTests\Core\Entity\EntityQueryTest::testInjectionInCondition()
Tests against SQL inject of condition field. This covers a database driver's EntityQuery\Condition class.
File
- core/tests/ Drupal/ KernelTests/ Core/ Entity/ EntityQueryTest.php, line 1207 
Class
- EntityQueryTest
- Tests Entity Query functionality.
Namespace
Drupal\KernelTests\Core\EntityCode
public function testInjectionInCondition() {
  $this
    ->expectException(\Exception::class);
  $this->queryResults = $this->storage
    ->getQuery()
    ->accessCheck(FALSE)
    ->condition('1 ; -- ', [
    0,
    1,
  ], 'IN')
    ->sort('id')
    ->execute();
}