koel/tests/Unit/Services/ApiClientTest.php

64 lines
1.8 KiB
PHP
Raw Normal View History

<?php
namespace Tests\Unit\Services;
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Response;
2018-08-31 13:47:15 +00:00
use Illuminate\Contracts\Cache\Repository as Cache;
use Illuminate\Foundation\Testing\WithoutMiddleware;
2018-08-31 13:47:15 +00:00
use Illuminate\Log\Logger;
use Mockery;
use Tests\TestCase;
use Tests\Unit\Stubs\ConcreteApiClient;
class ApiClientTest extends TestCase
{
use WithoutMiddleware;
2018-08-31 13:47:15 +00:00
private $cache;
private $client;
private $logger;
public function setUp(): void
{
2018-08-31 13:47:15 +00:00
parent::setUp();
$this->client = Mockery::mock(Client::class);
$this->cache = Mockery::mock(Cache::class);
$this->logger = Mockery::mock(Logger::class);
}
public function testBuildUri(): void
{
$api = new ConcreteApiClient($this->client, $this->cache, $this->logger);
2018-08-31 13:47:15 +00:00
self::assertEquals('http://foo.com/get/param?key=bar', $api->buildUrl('get/param'));
self::assertEquals('http://foo.com/get/param?baz=moo&key=bar', $api->buildUrl('/get/param?baz=moo'));
self::assertEquals('http://baz.com/?key=bar', $api->buildUrl('http://baz.com/'));
}
2020-12-22 20:11:22 +00:00
/** @return array<mixed> */
public function provideRequestData(): array
{
return [
['get', '{"foo":"bar"}'],
['post', '{"foo":"bar"}'],
['put', '{"foo":"bar"}'],
['delete', '{"foo":"bar"}'],
];
}
2020-12-22 20:11:22 +00:00
/** @dataProvider provideRequestData */
public function testRequest(string $method, string $responseBody): void
{
/** @var Client $client */
2018-08-31 13:47:15 +00:00
$client = Mockery::mock(Client::class, [
$method => new Response(200, [], $responseBody),
]);
2018-08-31 13:47:15 +00:00
$api = new ConcreteApiClient($client, $this->cache, $this->logger);
2018-08-31 13:47:15 +00:00
self::assertSame((array) json_decode($responseBody), (array) $api->$method('/'));
}
}