47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace TgBotLib\Methods;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use TgBotLib\Bot;
|
|
use TgBotLib\Objects\Message;
|
|
use TgBotLib\Objects\MessageId;
|
|
|
|
class CopyMessageTest extends TestCase
|
|
{
|
|
private static Bot $bot;
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public static function setUpBeforeClass(): void
|
|
{
|
|
self::$bot = new Bot(BOT_TOKEN);
|
|
self::$bot->setAutoRetry(true);
|
|
}
|
|
|
|
/**
|
|
* Tests the `sendMessage` function of the bot instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testCopyMessage(): void
|
|
{
|
|
$result = self::$bot->sendMessage(
|
|
chat_id: TEST_CHAT_ID,
|
|
text: 'Test Unit: testCopyMessage'
|
|
);
|
|
|
|
$this->assertInstanceOf(Message::class, $result);
|
|
$this->assertEquals(TEST_CHAT_ID, $result->getChat()->getId());
|
|
$this->assertEquals('Test Unit: testCopyMessage', $result->getText());
|
|
|
|
$result = self::$bot->copyMessage(
|
|
chat_id: TEST_CHAT_ID,
|
|
from_chat_id: TEST_CHAT_ID,
|
|
message_id: $result->getMessageId()
|
|
);
|
|
|
|
$this->assertInstanceOf(MessageId::class, $result);
|
|
}
|
|
}
|