You are here

public function RandomTest::testRandomNameException in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Utility/RandomTest.php \Drupal\Tests\Component\Utility\RandomTest::testRandomNameException()

Tests infinite loop prevention whilst generating random names.

@covers ::name

File

core/tests/Drupal/Tests/Component/Utility/RandomTest.php, line 61

Class

RandomTest
Tests random data generation.

Namespace

Drupal\Tests\Component\Utility

Code

public function testRandomNameException() {

  // There are fewer than 100 possibilities so an exception should occur to
  // prevent infinite loops.
  $random = new Random();
  $this
    ->expectException(\RuntimeException::class);
  for ($i = 0; $i <= 100; $i++) {
    $str = $random
      ->name(1, TRUE);
    $names[$str] = TRUE;
  }
}