2021-08-24 13:19:17 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Test;
|
|
|
|
|
2021-08-25 00:13:50 +02:00
|
|
|
use Dice\Dice;
|
2021-08-24 13:19:17 +02:00
|
|
|
use Friendica\DI;
|
2021-08-25 00:13:50 +02:00
|
|
|
use Friendica\Factory\HTTPClientFactory;
|
2021-08-24 13:19:17 +02:00
|
|
|
use Friendica\Network\IHTTPClient;
|
|
|
|
use GuzzleHttp\HandlerStack;
|
|
|
|
|
|
|
|
/**
|
2021-08-25 00:13:50 +02:00
|
|
|
* This class injects a mockable handler into the IHTTPClient dependency per Dice
|
2021-08-24 13:19:17 +02:00
|
|
|
*/
|
2021-08-25 00:13:50 +02:00
|
|
|
trait DiceHttpMockHandlerTrait
|
2021-08-24 13:19:17 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handler for mocking requests anywhere for testing purpose
|
|
|
|
*
|
|
|
|
* @var HandlerStack
|
|
|
|
*/
|
2021-08-25 00:13:50 +02:00
|
|
|
protected $httpRequestHandler;
|
2021-08-24 13:19:17 +02:00
|
|
|
|
2021-08-25 00:13:50 +02:00
|
|
|
protected function setupHttpMockHandler(): void
|
2021-08-24 13:19:17 +02:00
|
|
|
{
|
2021-08-25 00:13:50 +02:00
|
|
|
if (!empty($this->httpRequestHandler) && $this->httpRequestHandler instanceof HandlerStack) {
|
2021-08-24 13:19:17 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-08-25 00:13:50 +02:00
|
|
|
$this->httpRequestHandler = HandlerStack::create();
|
2021-08-24 13:19:17 +02:00
|
|
|
|
2021-08-25 00:13:50 +02:00
|
|
|
$dice = DI::getDice();
|
|
|
|
// addRule() clones the current instance and returns a new one, so no concurrency problems :-)
|
|
|
|
$newDice = $dice->addRule(IHTTPClient::class, [
|
|
|
|
'instanceOf' => HTTPClientFactory::class,
|
|
|
|
'call' => [
|
|
|
|
['createClient', [$this->httpRequestHandler], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
]);
|
2021-08-24 13:19:17 +02:00
|
|
|
|
|
|
|
DI::init($newDice);
|
|
|
|
}
|
|
|
|
|
2021-08-25 00:13:50 +02:00
|
|
|
protected function tearDown(): void
|
2021-08-24 13:19:17 +02:00
|
|
|
{
|
|
|
|
\Mockery::close();
|
|
|
|
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
}
|