You are here

public function UrlHelperTest::testInvalidRelative in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php \Drupal\Tests\Component\Utility\UrlHelperTest::testInvalidRelative()
  2. 10 core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php \Drupal\Tests\Component\Utility\UrlHelperTest::testInvalidRelative()

Tests invalid relative URLs.

@dataProvider providerTestInvalidRelativeData @covers ::isValid

Parameters

string $url: The url to test.

string $prefix: The prefix to test.

File

core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php, line 184

Class

UrlHelperTest
@group Utility

Namespace

Drupal\Tests\Component\Utility

Code

public function testInvalidRelative($url, $prefix) {
  $test_url = $prefix . $url;
  $valid_url = UrlHelper::isValid($test_url);
  $this
    ->assertFalse($valid_url, $test_url . ' is NOT a valid URL.');
}