linkmobility-php-client/Tests/ClientTest.php

284 lignes
8.3 KiB
PHP
Brut Vue normale Historique

2022-07-09 22:16:46 +02:00
<?php
2022-07-10 21:52:37 +02:00
/**
2022-07-13 10:50:45 +02:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* https://www.d3data.de
2022-07-10 21:52:37 +02:00
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2022-07-13 10:50:45 +02:00
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link https://www.oxidmodule.com
2022-07-10 21:52:37 +02:00
*/
2022-07-13 10:41:23 +02:00
declare(strict_types=1);
2022-07-10 21:52:37 +02:00
2022-07-09 22:16:46 +02:00
namespace D3\LinkmobilityClient\Tests;
2022-07-10 21:52:37 +02:00
use Assert\InvalidArgumentException;
2022-07-09 22:16:46 +02:00
use D3\LinkmobilityClient\Client;
2022-07-14 11:47:45 +02:00
use D3\LinkmobilityClient\LoggerHandler;
2022-07-10 21:52:37 +02:00
use D3\LinkmobilityClient\Request\RequestInterface;
use D3\LinkmobilityClient\Response\Response;
use D3\LinkmobilityClient\Response\ResponseInterface;
use D3\LinkmobilityClient\SMS\TextRequest;
use D3\LinkmobilityClient\Url\Url;
use D3\LinkmobilityClient\Url\UrlInterface;
2022-07-10 21:52:37 +02:00
use GuzzleHttp\Client as GuzzleClient;
use GuzzleHttp\ClientInterface;
2023-01-18 09:14:38 +01:00
use GuzzleHttp\Psr7\Response as GuzzleResponse;
2022-07-10 21:52:37 +02:00
use PHPUnit\Framework\MockObject\MockObject;
use Psr\Http\Message\StreamInterface;
use ReflectionException;
2022-07-09 22:16:46 +02:00
2022-07-10 21:52:37 +02:00
class ClientTest extends ApiTestCase
2022-07-09 22:16:46 +02:00
{
2022-07-11 15:06:18 +02:00
public $fixtureApiKey = 'fixtureApiKey';
2022-07-10 21:52:37 +02:00
/** @var Client */
2022-07-11 15:06:18 +02:00
public $api;
2022-07-09 22:16:46 +02:00
2022-07-10 21:52:37 +02:00
/**
* @return void
*/
2022-07-13 10:41:23 +02:00
public function setUp(): void
2022-07-09 22:16:46 +02:00
{
parent::setUp();
$this->api = new Client($this->fixtureApiKey);
}
2022-07-10 21:52:37 +02:00
/**
* @return void
*/
public function tearDown(): void
{
parent::tearDown();
unset($this->api);
}
2022-07-09 22:16:46 +02:00
/**
* @test
2022-07-10 21:52:37 +02:00
* @dataProvider constructPassedArgumentsDataProvider
* @param $apiKey
* @param $apiUrl
* @param $apiClient
* @return void
* @throws ReflectionException
* @covers \D3\LinkmobilityClient\Client::__construct
2022-07-09 22:16:46 +02:00
*/
2022-07-10 21:52:37 +02:00
public function testConstruct($apiKey, $apiUrl, $apiClient)
2022-07-09 22:16:46 +02:00
{
2022-07-10 21:52:37 +02:00
$api = new Client($apiKey, $apiUrl, $apiClient);
$this->assertSame(
$this->getValue($api, 'accessToken'),
$apiKey
);
$this->assertInstanceOf(
UrlInterface::class,
$this->getValue($api, 'apiUrl')
);
$this->assertInstanceOf(
ClientInterface::class,
$this->getValue($api, 'requestClient')
);
}
/**
* @return array[]
*/
public function constructPassedArgumentsDataProvider(): array
{
return [
'api key only' => ['apiKey', null, null],
'all without client' => ['apiKey', new Url(), null],
'all arguments' => ['apiKey', new Url(), new GuzzleClient()],
2022-07-10 21:52:37 +02:00
];
}
/**
* @test
* @throws ReflectionException
* @return void
* @covers \D3\LinkmobilityClient\Client::getDefaultClient
*/
public function testGetDefaultClient()
{
/** @var Client|MockObject $sut */
$sut = $this->getMockBuilder(Client::class)
->setConstructorArgs(['accessTokenFixture'])
->getMock();
$this->assertInstanceOf(
GuzzleClient::class,
$this->callMethod(
$sut,
'getDefaultClient'
)
);
}
2022-07-10 21:52:37 +02:00
/**
* @test
* @return void
* @throws ReflectionException
* @dataProvider requestPassedDataProvider
* @covers \D3\LinkmobilityClient\Client::request
2022-07-10 21:52:37 +02:00
*
*/
public function testRequest($requestIsValid)
{
/** @var Client|MockObject apiMock */
$apiMock = $this->getMockBuilder(Client::class)
->onlyMethods(['rawRequest'])
->disableOriginalConstructor()
->getMock();
$apiMock->expects($this->exactly((int) $requestIsValid))->method('rawRequest');
/** @var ResponseInterface|MockObject $responseMock */
$responseMock = $this->getMockBuilder(Response::class)
->disableOriginalConstructor()
->getMock();
/** @var RequestInterface|MockObject $requestMock */
$requestMock = $this->getMockBuilder(TextRequest::class)
->disableOriginalConstructor()
->onlyMethods(['validate', 'getResponseInstance', 'getUri', 'getMethod', 'getOptions'])
->getMock();
/** @var InvalidArgumentException|MockObject $invalidArgExceptionMock */
$invalidArgExceptionMock = $this->getMockBuilder(InvalidArgumentException::class)
->disableOriginalConstructor()
->getMock();
if ($requestIsValid) {
$requestMock->expects($this->atLeastOnce())->method('validate')->willReturn(true);
} else {
$requestMock->expects($this->atLeastOnce())->method('validate')
->willThrowException($invalidArgExceptionMock);
}
$requestMock->expects($this->exactly((int) $requestIsValid))
->method('getResponseInstance')->willReturn($responseMock);
$requestMock->expects($this->exactly((int) $requestIsValid))
->method('getUri')->willReturn('fixtureUrl');
$requestMock->expects($this->exactly((int) $requestIsValid))
->method('getMethod')->willReturn(RequestInterface::METHOD_GET);
$requestMock->expects($this->exactly((int) $requestIsValid))
->method('getOptions')->willReturn([]);
$this->api = $apiMock;
if (false === $requestIsValid) {
$this->expectException(InvalidArgumentException::class);
}
$this->assertSame(
$responseMock,
$this->callMethod($this->api, 'request', [$requestMock])
);
}
/**
* @return array
*/
public function requestPassedDataProvider(): array
{
return [
'request is valid' => [true],
'request is not valid' => [false],
2022-07-10 21:52:37 +02:00
];
}
/**
* @test
* @return void
* @throws ReflectionException
* @covers \D3\LinkmobilityClient\Client::rawRequest
2022-07-10 21:52:37 +02:00
*/
2023-01-18 09:14:38 +01:00
public function testRawRequest()
2022-07-10 21:52:37 +02:00
{
/** @var StreamInterface|MockObject $streamMock */
$streamMock = $this->getMockBuilder(StreamInterface::class)
->getMock();
2023-01-18 09:14:38 +01:00
/** @var GuzzleResponse|MockObject $responseMock */
$responseMock = $this->getMockBuilder( GuzzleResponse::class)
2022-07-10 21:52:37 +02:00
->disableOriginalConstructor()
->getMock();
$responseMock->expects($this->atLeastOnce())
2022-07-10 21:52:37 +02:00
->method('getBody')->willReturn($streamMock);
/** @var GuzzleClient|MockObject $requestClientMock */
$requestClientMock = $this->getMockBuilder(GuzzleClient::class)
->onlyMethods(['request'])
->getMock();
$requestClientMock->expects($this->once())->method('request')->willReturn($responseMock);
/** @var Client|MockObject $clientMock */
$clientMock = $this->getMockBuilder(Client::class)
->disableOriginalConstructor()
->onlyMethods([
'getLoggerHandler',
2022-07-10 21:52:37 +02:00
])
->getMock();
$this->setValue($clientMock, 'requestClient', $requestClientMock);
$this->assertSame(
$responseMock,
$this->callMethod($clientMock, 'rawRequest', ['myUrl'])
);
}
2022-07-16 00:42:41 +02:00
/**
* @test
* @return void
* @throws ReflectionException
* @covers \D3\LinkmobilityClient\Client::getLoggerHandler
2022-07-16 00:42:41 +02:00
*/
public function testGetLoggerHandler()
{
$this->assertInstanceOf(
LoggerHandler::class,
$this->callMethod(
$this->api,
'getLoggerHandler'
)
);
}
/**
* @test
* @return void
* @throws \PHPUnit\Framework\ExpectationFailedException
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
* @covers \D3\LinkmobilityClient\Client::getLoggerMiddleware
*/
public function testGetLoggerMiddleware()
{
$this->assertIsCallable(
$this->callMethod(
$this->api,
'getLoggerMiddleware'
)
);
}
/**
* @test
* @return void
* @throws \PHPUnit\Framework\ExpectationFailedException
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
* @covers \D3\LinkmobilityClient\Client::getRetryMiddleware
*/
public function testGetRetryMiddleware()
{
$this->assertIsCallable(
$this->callMethod(
$this->api,
'getRetryMiddleware'
)
);
}
2022-07-09 22:16:46 +02:00
}