You are here

public function UrlGeneratorTest::testSchemeRequirementForcesAbsoluteUrl in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php \Symfony\Component\Routing\Tests\Generator\UrlGeneratorTest::testSchemeRequirementForcesAbsoluteUrl()

File

vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php, line 254

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

public function testSchemeRequirementForcesAbsoluteUrl() {
  $routes = $this
    ->getRoutes('test', new Route('/', array(), array(), array(), '', array(
    'https',
  )));
  $this
    ->assertEquals('https://localhost/app.php/', $this
    ->getGenerator($routes)
    ->generate('test'));
  $routes = $this
    ->getRoutes('test', new Route('/', array(), array(), array(), '', array(
    'http',
  )));
  $this
    ->assertEquals('http://localhost/app.php/', $this
    ->getGenerator($routes, array(
    'scheme' => 'https',
  ))
    ->generate('test'));
}