--- /dev/null
+HTTP/2 301 \r
+date: Thu, 11 Oct 2018 18:43:54 GMT\r
+content-type: text/html; charset=utf-8\r
+vary: Accept-Encoding\r
+server: Mastodon\r
+Location: https://test.other/some/\r
+x-frame-options: DENY\r
+x-content-type-options: nosniff\r
+x-xss-protection: 1; mode=block\r
+vary: Accept-Encoding\r
+etag: W/"706e6c48957e1d46ecf9d7597a7880af"\r
+cache-control: max-age=0, private, must-revalidate\r
+set-cookie: _mastodon_session=v3kcy%2FW3aZYBBvZUohuwksEKwzYIyEUlEuJ1KqTAfWPKvVQq%2F4UuJ39zp621VyfpQNlvY46TL%2FYutzXowSLYQBNFCJcrEiF04aU0TdtHls9zynMiyeHhoVgCijOXWXNt9%2FCmpQ49RkNEujkv9NaJ0cum32MCVZKjE9%2BMKmLM%2F8ZygZeLBGJ7sg%3D%3D--QGIiU0%2FpXc3Aym8F--he2iRRPePOdtEs3z%2BufSXg%3D%3D; path=/; secure; HttpOnly\r
+x-request-id: a0c0b8e7-cd60-4efa-b79b-cf1b0d5a0784\r
+x-runtime: 0.049566\r
+strict-transport-security: max-age=31536000; includeSubDomains; preload\r
+x-frame-options: SAMEORIGIN\r
+x-content-type-options: nosniff\r
+referrer-policy: same-origin\r
+content-security-policy: frame-ancestors 'none'; script-src 'self'; object-src 'self'; img-src * data: blob:; media-src 'self' data:; font-src 'self' data: https://fonts.gstatic.com/; connect-src 'self' blob: wss://mastodonten.de\r
+x-xss-protection: 1; mode=block\r
+\r
{
public function setUp()
{
- parent::setUp(); // TODO: Change the autogenerated stub
+ parent::setUp();
require_once __DIR__.'/../../../boot.php';
require_once __DIR__.'/../../../include/text.php';
}
+ /**
+ * @small
+ */
public function testNormal()
{
$header = file_get_contents(__DIR__ . '/../../datasets/curl/about.head');
$body = file_get_contents(__DIR__ . '/../../datasets/curl/about.body');
- $curlResult = new CurlResult('https://test.local', $header . $body, [ 'http_code' => 200 ]);
+ $curlResult = new CurlResult('https://test.local', $header . $body, [
+ 'http_code' => 200,
+ 'content_type' => 'text/html; charset=utf-8',
+ 'url' => 'https://test.local'
+ ]);
$this->assertTrue($curlResult->isSuccess());
+ $this->assertFalse($curlResult->isTimeout());
+ $this->assertFalse($curlResult->isRedirectUrl());
$this->assertSame($header, $curlResult->getHeader());
$this->assertSame($body, $curlResult->getBody());
+ $this->assertSame('text/html; charset=utf-8', $curlResult->getContentType());
+ $this->assertSame('https://test.local', $curlResult->getUrl());
+ $this->assertSame('https://test.local', $curlResult->getRedirectUrl());
}
-}
\ No newline at end of file
+
+ /**
+ * @small
+ */
+ public function testRedirect()
+ {
+ $header = file_get_contents(__DIR__ . '/../../datasets/curl/about.head');
+ $body = file_get_contents(__DIR__ . '/../../datasets/curl/about.body');
+
+
+ $curlResult = new CurlResult('https://test.local/test/it', $header . $body, [
+ 'http_code' => 301,
+ 'content_type' => 'text/html; charset=utf-8',
+ 'url' => 'https://test.local/test/it',
+ 'redirect_url' => 'https://test.other'
+ ]);
+
+ $this->assertTrue($curlResult->isSuccess());
+ $this->assertFalse($curlResult->isTimeout());
+ $this->assertTrue($curlResult->isRedirectUrl());
+ $this->assertSame($header, $curlResult->getHeader());
+ $this->assertSame($body, $curlResult->getBody());
+ $this->assertSame('text/html; charset=utf-8', $curlResult->getContentType());
+ $this->assertSame('https://test.local/test/it', $curlResult->getUrl());
+ $this->assertSame('https://test.other/test/it', $curlResult->getRedirectUrl());
+ }
+
+ /**
+ * @small
+ */
+ public function testTimeout()
+ {
+ $header = file_get_contents(__DIR__ . '/../../datasets/curl/about.head');
+ $body = file_get_contents(__DIR__ . '/../../datasets/curl/about.body');
+
+
+ $curlResult = new CurlResult('https://test.local/test/it', $header . $body, [
+ 'http_code' => 500,
+ 'content_type' => 'text/html; charset=utf-8',
+ 'url' => 'https://test.local/test/it',
+ 'redirect_url' => 'https://test.other'
+ ], CURLE_OPERATION_TIMEDOUT, 'Tested error');
+
+ $this->assertFalse($curlResult->isSuccess());
+ $this->assertTrue($curlResult->isTimeout());
+ $this->assertFalse($curlResult->isRedirectUrl());
+ $this->assertSame($header, $curlResult->getHeader());
+ $this->assertSame($body, $curlResult->getBody());
+ $this->assertSame('text/html; charset=utf-8', $curlResult->getContentType());
+ $this->assertSame('https://test.local/test/it', $curlResult->getRedirectUrl());
+ $this->assertSame('Tested error', $curlResult->getError());
+ }
+
+ /**
+ * @small
+ */
+ public function testRedirectHeader()
+ {
+ $header = file_get_contents(__DIR__ . '/../../datasets/curl/about.redirect');
+ $body = file_get_contents(__DIR__ . '/../../datasets/curl/about.body');
+
+
+ $curlResult = new CurlResult('https://test.local/test/it?key=value', $header . $body, [
+ 'http_code' => 301,
+ 'content_type' => 'text/html; charset=utf-8',
+ 'url' => 'https://test.local/test/it?key=value',
+ ]);
+
+ $this->assertTrue($curlResult->isSuccess());
+ $this->assertFalse($curlResult->isTimeout());
+ $this->assertTrue($curlResult->isRedirectUrl());
+ $this->assertSame($header, $curlResult->getHeader());
+ $this->assertSame($body, $curlResult->getBody());
+ $this->assertSame('text/html; charset=utf-8', $curlResult->getContentType());
+ $this->assertSame('https://test.local/test/it?key=value', $curlResult->getUrl());
+ $this->assertSame('https://test.other/some/?key=value', $curlResult->getRedirectUrl());
+ }
+}