Skip to main content
Version: 4.x

Examples

This page contains some examples of how to use the testing framework.

We assume that the $bot is loaded as mentioned on the Introduction page.

Send a message

$bot->hearText('/start')
->reply()
->assertReplyText('Hello World!');

Send multiple messages

$bot->hearText('/start')
->reply()
->assertSequence(
fn (FakeNutgram $x) => $x->assertReplyText('foo'),
fn (FakeNutgram $x) => $x->assertReplyText('bar'),
);

Remove a keyboard

$bot->hearText('/remove_keyboard')
->reply()
->assertReplyMessage([
'text' => 'Removing keyboard...',
'reply_markup' => ReplyKeyboardRemove::make(true),
])
->assertCalled('deleteMessage');

OnlyDev Middleware

unable to get stats
$bot->onCommand('stats', function (Nutgram $bot) {
$bot->sendMessage('Sensitive data');
})->middleware(OnlyDev::class);

$bot->hearText('/stats')
->reply()
->assertNoReply();
able to get stats
$bot->onCommand('stats', function (Nutgram $bot) {
$bot->sendMessage('Sensitive data');
})->middleware(OnlyDev::class);

$bot->setCommonUser(User::make(123456789, false, 'John')) // needed to not get a random user id
->setCommonChat(Chat::make(123456789, ChatType::PRIVATE)) // needed to not get a random user id
->hearText('/stats')
->reply()
->assertReplyText('Sensitive data');

Feedback Conversation

send feedback
// first step
$bot->willStartConversation()
->hearText('/feedback')
->reply()
->assertReplyMessage([
'text' => 'Send your feedback',
'reply_markup' => InlineKeyboardMarkup::make()->addRow(
InlineKeyboardButton::make('Cancel', callback_data: 'feedback.cancel'),
),
])
->assertActiveConversation();

// second step
$bot->hearText('this is a feedback')
->reply()
->assertReplyText('Thanks for your feedback!')
->assertNoConversation();
cancel feedback
// first step
$bot->willStartConversation()
->hearText('/feedback')
->reply()
->assertReplyMessage([
'text' => 'Send your feedback',
'reply_markup' => InlineKeyboardMarkup::make()->addRow(
InlineKeyboardButton::make('Cancel', callback_data: 'feedback.cancel'),
),
])
->assertActiveConversation();

// second step
$bot->hearCallbackQueryData('feedback.cancel')
->reply()
->assertReplyText('Feedback cancelled')
->assertCalled('answerCallbackQuery')
->assertNoConversation();