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
- Test
- Handler
$bot->hearText('/start')
->reply()
->assertReplyText('Hello World!');
$bot->onCommand('start', function (Nutgram $bot) {
$bot->sendMessage('Hello World!');
});
Send multiple messages
- Test
- Handler
$bot->hearText('/start')
->reply()
->assertSequence(
fn (FakeNutgram $x) => $x->assertReplyText('foo'),
fn (FakeNutgram $x) => $x->assertReplyText('bar'),
);
$bot->onCommand('start', function (Nutgram $bot) {
$bot->sendMessage('foo');
$bot->sendMessage('bar');
});
Remove a keyboard
- Test
- Handler
$bot->hearText('/remove_keyboard')
->reply()
->assertReplyMessage([
'text' => 'Removing keyboard...',
'reply_markup' => ReplyKeyboardRemove::make(true),
])
->assertCalled('deleteMessage');
$bot->onCommand('remove_keyboard', function (Nutgram $bot) {
$message = $bot->sendMessage(
text: 'Removing keyboard...',
reply_markup: ReplyKeyboardRemove::make(true),
);
$message->delete();
});
OnlyDev Middleware
- Test
- Handler
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');
class OnlyDev
{
public function __invoke(Nutgram $bot, $next): void
{
if ($bot->user()?->id !== 123456789) {
return;
}
$next($bot);
}
}
Feedback Conversation
- Test
- 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();
Bot.php
$bot->onCommand('feedback', FeedbackConversation::class);
FeedbackConversation.php
class FeedbackConversation extends Conversation
{
public function start(Nutgram $bot): void
{
// ask for feedback
$bot->sendMessage(
text: 'Send your feedback',
reply_markup: InlineKeyboardMarkup::make()->addRow(
InlineKeyboardButton::make('Cancel', callback_data: 'feedback.cancel')
),
);
// wait for the user to send feedback
$this->next('getFeedback');
}
public function getFeedback(Nutgram $bot): void
{
//handle cancel button
if ($bot->callbackQuery()?->data === 'feedback.cancel') {
$bot->sendMessage('Feedback cancelled');
$bot->answerCallbackQuery();
//close conversation
$this->end();
return;
}
//get the input
$feedback = $bot->message()?->text;
//check valid input
if ($feedback === null) {
$bot->sendMessage('Invalid input, please send your feedback again');
$this->start($bot);
return;
}
//save the feedback
// TODO: save $feedback to database
// thanks the user
$bot->sendMessage('Thanks for your feedback!');
//close conversation
$this->end();
}
}