Move and rename Guzzle\AuthenticatorSubscriber to HttpClient\Authenticator
This commit is contained in:
parent
6918de54a9
commit
9254bdbaec
@ -220,7 +220,7 @@ services:
|
||||
|
||||
Wallabag\Helper\HttpClientFactory:
|
||||
calls:
|
||||
- ['addSubscriber', ['@Wallabag\Guzzle\AuthenticatorSubscriber']]
|
||||
- ['addSubscriber', ['@Wallabag\HttpClient\Authenticator']]
|
||||
|
||||
RulerZ\RulerZ:
|
||||
alias: rulerz
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Wallabag\Guzzle;
|
||||
namespace Wallabag\HttpClient;
|
||||
|
||||
use GuzzleHttp\Event\BeforeEvent;
|
||||
use GuzzleHttp\Event\CompleteEvent;
|
||||
@ -13,7 +13,7 @@ use Wallabag\SiteConfig\LoginFormAuthenticator;
|
||||
use Wallabag\SiteConfig\SiteConfig;
|
||||
use Wallabag\SiteConfig\SiteConfigBuilder;
|
||||
|
||||
class AuthenticatorSubscriber implements SubscriberInterface, LoggerAwareInterface
|
||||
class Authenticator implements SubscriberInterface, LoggerAwareInterface
|
||||
{
|
||||
// avoid loop when login failed which can just be a bad login/password
|
||||
// after 2 attempts, we skip the login
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Wallabag\Guzzle;
|
||||
namespace Tests\Wallabag\HttpClient;
|
||||
|
||||
use GuzzleHttp\Client;
|
||||
use GuzzleHttp\Event\BeforeEvent;
|
||||
@ -12,11 +12,11 @@ use GuzzleHttp\Subscriber\Mock;
|
||||
use Monolog\Handler\TestHandler;
|
||||
use Monolog\Logger;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Wallabag\Guzzle\AuthenticatorSubscriber;
|
||||
use Wallabag\HttpClient\Authenticator;
|
||||
use Wallabag\SiteConfig\ArraySiteConfigBuilder;
|
||||
use Wallabag\SiteConfig\LoginFormAuthenticator;
|
||||
|
||||
class AuthenticatorSubscriberTest extends TestCase
|
||||
class AuthenticatorTest extends TestCase
|
||||
{
|
||||
public function testGetEvents()
|
||||
{
|
||||
@ -24,7 +24,7 @@ class AuthenticatorSubscriberTest extends TestCase
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
|
||||
$subscriber = new AuthenticatorSubscriber(
|
||||
$subscriber = new Authenticator(
|
||||
new ArraySiteConfigBuilder(),
|
||||
$authenticator
|
||||
);
|
||||
@ -43,7 +43,7 @@ class AuthenticatorSubscriberTest extends TestCase
|
||||
->getMock();
|
||||
|
||||
$builder = new ArraySiteConfigBuilder(['example.com' => []]);
|
||||
$subscriber = new AuthenticatorSubscriber($builder, $authenticator);
|
||||
$subscriber = new Authenticator($builder, $authenticator);
|
||||
|
||||
$logger = new Logger('foo');
|
||||
$handler = new TestHandler();
|
||||
@ -83,7 +83,7 @@ class AuthenticatorSubscriberTest extends TestCase
|
||||
->method('login');
|
||||
|
||||
$builder = new ArraySiteConfigBuilder(['example.com' => ['requiresLogin' => true]]);
|
||||
$subscriber = new AuthenticatorSubscriber($builder, $authenticator);
|
||||
$subscriber = new Authenticator($builder, $authenticator);
|
||||
|
||||
$logger = new Logger('foo');
|
||||
$handler = new TestHandler();
|
||||
@ -128,7 +128,7 @@ class AuthenticatorSubscriberTest extends TestCase
|
||||
->getMock();
|
||||
|
||||
$builder = new ArraySiteConfigBuilder(['example.com' => []]);
|
||||
$subscriber = new AuthenticatorSubscriber($builder, $authenticator);
|
||||
$subscriber = new Authenticator($builder, $authenticator);
|
||||
|
||||
$logger = new Logger('foo');
|
||||
$handler = new TestHandler();
|
||||
@ -168,7 +168,7 @@ class AuthenticatorSubscriberTest extends TestCase
|
||||
'requiresLogin' => true,
|
||||
'notLoggedInXpath' => '//html',
|
||||
]]);
|
||||
$subscriber = new AuthenticatorSubscriber($builder, $authenticator);
|
||||
$subscriber = new Authenticator($builder, $authenticator);
|
||||
|
||||
$logger = new Logger('foo');
|
||||
$handler = new TestHandler();
|
||||
@ -220,7 +220,7 @@ class AuthenticatorSubscriberTest extends TestCase
|
||||
'requiresLogin' => true,
|
||||
'notLoggedInXpath' => '//html',
|
||||
]]);
|
||||
$subscriber = new AuthenticatorSubscriber($builder, $authenticator);
|
||||
$subscriber = new Authenticator($builder, $authenticator);
|
||||
|
||||
$logger = new Logger('foo');
|
||||
$handler = new TestHandler();
|
||||
@ -271,7 +271,7 @@ class AuthenticatorSubscriberTest extends TestCase
|
||||
'requiresLogin' => true,
|
||||
'notLoggedInXpath' => '//html',
|
||||
]]);
|
||||
$subscriber = new AuthenticatorSubscriber($builder, $authenticator);
|
||||
$subscriber = new Authenticator($builder, $authenticator);
|
||||
|
||||
$logger = new Logger('foo');
|
||||
$handler = new TestHandler();
|
Loading…
x
Reference in New Issue
Block a user