mirror of
https://github.com/danog/tgbot-dialog-id.git
synced 2024-11-26 19:14:44 +01:00
30 lines
962 B
PHP
30 lines
962 B
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
use danog\DialogId\DialogType;
|
||
|
|
||
|
require 'vendor/autoload.php';
|
||
|
|
||
|
function expect(bool $expect): void
|
||
|
{
|
||
|
if (!$expect) {
|
||
|
throw new AssertionError("Not verified!");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
expect(DialogType::from(101374607) === DialogType::USER);
|
||
|
expect(DialogType::from(-123456789) === DialogType::CHAT);
|
||
|
expect(DialogType::from(-1001234567890) === DialogType::CHANNEL_OR_SUPERGROUP);
|
||
|
expect(DialogType::from(-1999898625393) === DialogType::SECRET_CHAT);
|
||
|
|
||
|
expect(DialogType::isUser(1099511627775) === true);
|
||
|
expect(DialogType::isChat(-999_999_999_999) === true);
|
||
|
expect(DialogType::isSupergroupOrChannel(-1997852516352) === true);
|
||
|
expect(DialogType::isSecretChat(-2002147483648) === true);
|
||
|
|
||
|
expect(DialogType::isUser(101374607) === true);
|
||
|
expect(DialogType::isChat(-101374607) === true);
|
||
|
expect(DialogType::isSupergroupOrChannel(-1001234567890) === true);
|
||
|
expect(DialogType::isSecretChat(-1999898625393) === true);
|
||
|
|
||
|
echo "OK!".PHP_EOL;
|