Add test
This commit is contained in:
parent
5281caad39
commit
54096d2e85
@ -644,6 +644,21 @@ public class AbilityBotTest {
|
|||||||
verify(silent, times(1)).send(expected, GROUP_ID);
|
verify(silent, times(1)).send(expected, GROUP_ID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void canProcessChannelPosts() {
|
||||||
|
Update update = mock(Update.class);
|
||||||
|
Message message = mock(Message.class);
|
||||||
|
when(message.getChatId()).thenReturn(1L);
|
||||||
|
|
||||||
|
when(update.getChannelPost()).thenReturn(message);
|
||||||
|
when(update.hasChannelPost()).thenReturn(true);
|
||||||
|
|
||||||
|
bot.onUpdateReceived(update);
|
||||||
|
|
||||||
|
String expected = "test channel post";
|
||||||
|
verify(silent, times(1)).send(expected, 1);
|
||||||
|
}
|
||||||
|
|
||||||
private void handlesAllUpdates(Consumer<Update> utilMethod) {
|
private void handlesAllUpdates(Consumer<Update> utilMethod) {
|
||||||
Arrays.stream(Update.class.getMethods())
|
Arrays.stream(Update.class.getMethods())
|
||||||
// filter to all these methods of hasXXX (hasPoll, hasMessage, etc...)
|
// filter to all these methods of hasXXX (hasPoll, hasMessage, etc...)
|
||||||
|
@ -3,6 +3,7 @@ package org.telegram.abilitybots.api.bot;
|
|||||||
import org.telegram.abilitybots.api.db.DBContext;
|
import org.telegram.abilitybots.api.db.DBContext;
|
||||||
import org.telegram.abilitybots.api.objects.Ability;
|
import org.telegram.abilitybots.api.objects.Ability;
|
||||||
import org.telegram.abilitybots.api.objects.Ability.AbilityBuilder;
|
import org.telegram.abilitybots.api.objects.Ability.AbilityBuilder;
|
||||||
|
import org.telegram.abilitybots.api.objects.Flag;
|
||||||
import org.telegram.abilitybots.api.objects.Reply;
|
import org.telegram.abilitybots.api.objects.Reply;
|
||||||
import org.telegram.abilitybots.api.toggle.AbilityToggle;
|
import org.telegram.abilitybots.api.toggle.AbilityToggle;
|
||||||
|
|
||||||
@ -72,6 +73,12 @@ public class DefaultBot extends AbilityBot {
|
|||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Reply channelPostReply() {
|
||||||
|
return Reply.of(
|
||||||
|
upd -> silent.send("test channel post", upd.getChannelPost().getChatId()), Flag.CHANNEL_POST
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
public Ability testAbility() {
|
public Ability testAbility() {
|
||||||
return getDefaultBuilder().build();
|
return getDefaultBuilder().build();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user