You are here

public function UrlHelperTest::testExternalIsLocal 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::testExternalIsLocal()
  2. 10 core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php \Drupal\Tests\Component\Utility\UrlHelperTest::testExternalIsLocal()

Test detecting external urls that point to local resources.

@covers ::externalIsLocal @dataProvider providerTestExternalIsLocal

Parameters

string $url: The external url to test.

string $base_url: The base url.

bool $expected: TRUE if an external URL points to this installation as determined by the base url.

File

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

Class

UrlHelperTest
@group Utility

Namespace

Drupal\Tests\Component\Utility

Code

public function testExternalIsLocal($url, $base_url, $expected) {
  $this
    ->assertSame($expected, UrlHelper::externalIsLocal($url, $base_url));
}