mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 06:39:18 +00:00
95 lines
2.7 KiB
PHP
95 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\Wallabag\Guzzle;
|
|
|
|
use GuzzleHttp\Event\CompleteEvent;
|
|
use GuzzleHttp\Message\Response;
|
|
use GuzzleHttp\Stream\Stream;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Wallabag\Guzzle\FixupMondeDiplomatiqueUriSubscriber;
|
|
|
|
class FixupMondeDiplomatiqueUriSubscriberTest extends TestCase
|
|
{
|
|
public function testGetEvents()
|
|
{
|
|
$subscriber = new FixupMondeDiplomatiqueUriSubscriber();
|
|
$events = $subscriber->getEvents();
|
|
|
|
$this->assertArrayHasKey('complete', $events);
|
|
$this->assertCount(2, $events['complete'][0]);
|
|
}
|
|
|
|
public function testGetEventsWithoutHeaderLocation()
|
|
{
|
|
$response = new Response(
|
|
200,
|
|
[
|
|
'content-type' => 'text/html',
|
|
],
|
|
Stream::factory('<html></html>')
|
|
);
|
|
|
|
$event = $this->getMockBuilder(CompleteEvent::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$event->expects($this->once())
|
|
->method('getResponse')
|
|
->willReturn($response);
|
|
|
|
$subscriber = new FixupMondeDiplomatiqueUriSubscriber();
|
|
$subscriber->fixUri($event);
|
|
|
|
$this->assertFalse($response->hasHeader('Location'));
|
|
}
|
|
|
|
public function testGetEventsWithNotMachingHeaderLocation()
|
|
{
|
|
$response = new Response(
|
|
200,
|
|
[
|
|
'content-type' => 'text/html',
|
|
'Location' => 'http://example.com',
|
|
],
|
|
Stream::factory('<html></html>')
|
|
);
|
|
|
|
$event = $this->getMockBuilder(CompleteEvent::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$event->expects($this->once())
|
|
->method('getResponse')
|
|
->willReturn($response);
|
|
|
|
$subscriber = new FixupMondeDiplomatiqueUriSubscriber();
|
|
$subscriber->fixUri($event);
|
|
|
|
$this->assertSame('http://example.com', $response->getHeader('Location'));
|
|
}
|
|
|
|
public function testGetEventsWithMachingHeaderLocation()
|
|
{
|
|
$response = new Response(
|
|
200,
|
|
[
|
|
'content-type' => 'text/html',
|
|
'Location' => 'http://example.com/?foo=bar&retour=http://example.com',
|
|
],
|
|
Stream::factory('<html></html>')
|
|
);
|
|
|
|
$event = $this->getMockBuilder(CompleteEvent::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$event->expects($this->once())
|
|
->method('getResponse')
|
|
->willReturn($response);
|
|
|
|
$subscriber = new FixupMondeDiplomatiqueUriSubscriber();
|
|
$subscriber->fixUri($event);
|
|
|
|
$this->assertSame('http://example.com/?foo=bar&retour%3Dhttp%3A%2F%2Fexample.com', $response->getHeader('Location'));
|
|
}
|
|
}
|