summaryrefslogtreecommitdiff
path: root/vendor/symfony/http-kernel/Tests/Debug/FileLinkFormatterTest.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2018-01-19 15:40:08 +0000
committerGreg Roach <fisharebest@gmail.com>2018-01-19 22:39:48 +0000
commit9499ed38534b88c310649782326f430b724fbe3a (patch)
tree3b10195a8e8e56024f75403869d5a56074314181 /vendor/symfony/http-kernel/Tests/Debug/FileLinkFormatterTest.php
parentc9b4efa1714b4374cc3446e0d3a1935da0cb3a59 (diff)
downloadwebtrees-9499ed38534b88c310649782326f430b724fbe3a.tar.gz
webtrees-9499ed38534b88c310649782326f430b724fbe3a.tar.bz2
webtrees-9499ed38534b88c310649782326f430b724fbe3a.zip
Add symfony/http-kernel
Diffstat (limited to 'vendor/symfony/http-kernel/Tests/Debug/FileLinkFormatterTest.php')
-rw-r--r--vendor/symfony/http-kernel/Tests/Debug/FileLinkFormatterTest.php67
1 files changed, 67 insertions, 0 deletions
diff --git a/vendor/symfony/http-kernel/Tests/Debug/FileLinkFormatterTest.php b/vendor/symfony/http-kernel/Tests/Debug/FileLinkFormatterTest.php
new file mode 100644
index 0000000000..d616098a54
--- /dev/null
+++ b/vendor/symfony/http-kernel/Tests/Debug/FileLinkFormatterTest.php
@@ -0,0 +1,67 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <fabien@symfony.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Symfony\Component\HttpKernel\Tests\Debug;
+
+use PHPUnit\Framework\TestCase;
+use Symfony\Component\HttpFoundation\Request;
+use Symfony\Component\HttpFoundation\RequestStack;
+use Symfony\Component\HttpKernel\Debug\FileLinkFormatter;
+
+class FileLinkFormatterTest extends TestCase
+{
+ public function testWhenNoFileLinkFormatAndNoRequest()
+ {
+ $sut = new FileLinkFormatter();
+
+ $this->assertFalse($sut->format('/kernel/root/src/my/very/best/file.php', 3));
+ }
+
+ public function testWhenFileLinkFormatAndNoRequest()
+ {
+ $file = __DIR__.DIRECTORY_SEPARATOR.'file.php';
+
+ $sut = new FileLinkFormatter('debug://open?url=file://%f&line=%l', new RequestStack());
+
+ $this->assertSame("debug://open?url=file://$file&line=3", $sut->format($file, 3));
+ }
+
+ public function testWhenFileLinkFormatAndRequest()
+ {
+ $file = __DIR__.DIRECTORY_SEPARATOR.'file.php';
+ $baseDir = __DIR__;
+ $requestStack = new RequestStack();
+ $request = new Request();
+ $requestStack->push($request);
+
+ $sut = new FileLinkFormatter('debug://open?url=file://%f&line=%l', $requestStack, __DIR__, '/_profiler/open?file=%f&line=%l#line%l');
+
+ $this->assertSame("debug://open?url=file://$file&line=3", $sut->format($file, 3));
+ }
+
+ public function testWhenNoFileLinkFormatAndRequest()
+ {
+ $file = __DIR__.DIRECTORY_SEPARATOR.'file.php';
+ $requestStack = new RequestStack();
+ $request = new Request();
+ $requestStack->push($request);
+
+ $request->server->set('SERVER_NAME', 'www.example.org');
+ $request->server->set('SERVER_PORT', 80);
+ $request->server->set('SCRIPT_NAME', '/app.php');
+ $request->server->set('SCRIPT_FILENAME', '/web/app.php');
+ $request->server->set('REQUEST_URI', '/app.php/example');
+
+ $sut = new FileLinkFormatter(null, $requestStack, __DIR__, '/_profiler/open?file=%f&line=%l#line%l');
+
+ $this->assertSame('http://www.example.org/app.php/_profiler/open?file=file.php&line=3#line3', $sut->format($file, 3));
+ }
+}