mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-17 14:20:31 +00:00
128 lines
3.8 KiB
PHP
128 lines
3.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace BushlanovDev\MaxMessengerBot\Tests;
|
|
|
|
use BushlanovDev\MaxMessengerBot\Api;
|
|
use BushlanovDev\MaxMessengerBot\Client;
|
|
use BushlanovDev\MaxMessengerBot\ClientApiInterface;
|
|
use BushlanovDev\MaxMessengerBot\Enums\UpdateType;
|
|
use BushlanovDev\MaxMessengerBot\ModelFactory;
|
|
use BushlanovDev\MaxMessengerBot\Models\BotInfo;
|
|
use BushlanovDev\MaxMessengerBot\Models\Subscription;
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use PHPUnit\Framework\Attributes\UsesClass;
|
|
use PHPUnit\Framework\MockObject\Exception;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use PHPUnit\Framework\TestCase;
|
|
use ReflectionClass;
|
|
|
|
#[CoversClass(Api::class)]
|
|
#[UsesClass(Client::class)]
|
|
#[UsesClass(BotInfo::class)]
|
|
#[UsesClass(Subscription::class)]
|
|
final class ApiTest extends TestCase
|
|
{
|
|
private MockObject&ClientApiInterface $clientMock;
|
|
private MockObject&ModelFactory $modelFactoryMock;
|
|
private Api $api;
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->clientMock = $this->createMock(ClientApiInterface::class);
|
|
$this->modelFactoryMock = $this->createMock(ModelFactory::class);
|
|
|
|
$this->api = new Api('fake-token', $this->clientMock, $this->modelFactoryMock);
|
|
}
|
|
|
|
#[Test]
|
|
public function constructorCanCreateDefaultDependencies(): void
|
|
{
|
|
$api = new Api('some-token');
|
|
|
|
$reflection = new ReflectionClass($api);
|
|
|
|
$clientProp = $reflection->getProperty('client');
|
|
$this->assertInstanceOf(ClientApiInterface::class, $clientProp->getValue($api));
|
|
|
|
$factoryProp = $reflection->getProperty('modelFactory');
|
|
$this->assertInstanceOf(ModelFactory::class, $factoryProp->getValue($api));
|
|
}
|
|
|
|
#[Test]
|
|
public function getBotInfoCallsClientAndFactoryCorrectly(): void
|
|
{
|
|
$rawResponseData = ['user_id' => 123, 'first_name' => 'ApiTestBot'];
|
|
|
|
$botInfo = new BotInfo(
|
|
123,
|
|
'ApiTestBot',
|
|
null, null, true, 0, null, null, null, null,
|
|
);
|
|
|
|
$this->clientMock
|
|
->expects($this->once())
|
|
->method('request')
|
|
->with('GET', '/me')
|
|
->willReturn($rawResponseData);
|
|
|
|
$this->modelFactoryMock
|
|
->expects($this->once())
|
|
->method('createBotInfo')
|
|
->with($rawResponseData)
|
|
->willReturn($botInfo);
|
|
|
|
$result = $this->api->getBotInfo();
|
|
|
|
$this->assertSame($botInfo, $result);
|
|
}
|
|
|
|
#[Test]
|
|
public function testSubscribeCallsClientAndFactoryCorrectly(): void
|
|
{
|
|
$rawResponseData = [
|
|
'subscriptions' => [
|
|
[
|
|
'url' => 'https://example.com/webhook',
|
|
'time' => 1678886400000,
|
|
'update_types' => ['message_created'],
|
|
'version' => '0.0.1',
|
|
],
|
|
],
|
|
];
|
|
|
|
$subscription = new Subscription(
|
|
'https://example.com/webhook',
|
|
1678886400000,
|
|
[UpdateType::MessageCreated],
|
|
'0.0.1',
|
|
);
|
|
|
|
$this->clientMock
|
|
->expects($this->once())
|
|
->method('request')
|
|
->with('GET', '/subscriptions')
|
|
->willReturn($rawResponseData);
|
|
|
|
$this->modelFactoryMock
|
|
->expects($this->once())
|
|
->method('createSubscriptions')
|
|
->with($rawResponseData)
|
|
->willReturn([$subscription]);
|
|
|
|
$result = $this->api->getSubscriptions();
|
|
|
|
$this->assertIsArray($result);
|
|
$this->assertCount(1, $result);
|
|
$this->assertInstanceOf(Subscription::class, $result[0]);
|
|
$this->assertSame(UpdateType::MessageCreated, $result[0]->update_types[0]);
|
|
}
|
|
}
|