2015-07-29 11:41:41 +02:00
|
|
|
package tgbotapi_test
|
|
|
|
|
|
|
|
import (
|
2015-11-21 12:44:26 +01:00
|
|
|
"io/ioutil"
|
2015-07-29 11:41:41 +02:00
|
|
|
"log"
|
2015-11-21 12:22:08 +01:00
|
|
|
"net/http"
|
2015-07-29 11:41:41 +02:00
|
|
|
"os"
|
|
|
|
"testing"
|
2016-11-25 06:50:35 +01:00
|
|
|
"time"
|
2016-12-16 02:07:54 +01:00
|
|
|
|
|
|
|
"github.com/go-telegram-bot-api/telegram-bot-api"
|
2015-07-29 11:41:41 +02:00
|
|
|
)
|
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
const (
|
2017-05-22 00:04:12 +02:00
|
|
|
TestToken = "153667468:AAHlSHlMqSt1f_uFmVRJbm5gntu2HI4WW8I"
|
|
|
|
ChatID = 76918703
|
2017-08-05 12:50:44 +02:00
|
|
|
SupergroupChatID = -1001120141283
|
2017-05-22 00:04:12 +02:00
|
|
|
ReplyToMessageID = 35
|
|
|
|
ExistingPhotoFileID = "AgADAgADw6cxG4zHKAkr42N7RwEN3IFShCoABHQwXEtVks4EH2wBAAEC"
|
|
|
|
ExistingDocumentFileID = "BQADAgADOQADjMcoCcioX1GrDvp3Ag"
|
|
|
|
ExistingAudioFileID = "BQADAgADRgADjMcoCdXg3lSIN49lAg"
|
|
|
|
ExistingVoiceFileID = "AwADAgADWQADjMcoCeul6r_q52IyAg"
|
|
|
|
ExistingVideoFileID = "BAADAgADZgADjMcoCav432kYe0FRAg"
|
|
|
|
ExistingVideoNoteFileID = "DQADAgADdQAD70cQSUK41dLsRMqfAg"
|
|
|
|
ExistingStickerFileID = "BQADAgADcwADjMcoCbdl-6eB--YPAg"
|
2015-11-21 13:34:30 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func getBot(t *testing.T) (*tgbotapi.BotAPI, error) {
|
|
|
|
bot, err := tgbotapi.NewBotAPI(TestToken)
|
2017-05-22 00:04:12 +02:00
|
|
|
bot.Debug = true
|
2015-07-29 11:41:41 +02:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-21 13:34:30 +01:00
|
|
|
t.Fail()
|
2015-07-29 11:41:41 +02:00
|
|
|
}
|
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
return bot, err
|
2015-07-29 11:41:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewBotAPI_notoken(t *testing.T) {
|
|
|
|
_, err := tgbotapi.NewBotAPI("")
|
|
|
|
|
2015-11-20 11:42:26 +01:00
|
|
|
if err == nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-07-29 11:41:41 +02:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetUpdates(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-07-29 11:41:41 +02:00
|
|
|
|
|
|
|
u := tgbotapi.NewUpdate(0)
|
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.GetUpdates(u)
|
2015-07-29 11:41:41 +02:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-07-29 11:41:41 +02:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 16:30:50 +01:00
|
|
|
func TestSendWithMessage(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-07-29 11:41:41 +02:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewMessage(ChatID, "A test message from the test library in telegram-bot-api")
|
2015-11-20 18:26:12 +01:00
|
|
|
msg.ParseMode = "markdown"
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 18:26:12 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithMessageReply(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewMessage(ChatID, "A test message from the test library in telegram-bot-api")
|
|
|
|
msg.ReplyToMessageID = ReplyToMessageID
|
|
|
|
_, err := bot.Send(msg)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 18:26:12 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithMessageForward(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewForward(ChatID, ChatID, ReplyToMessageID)
|
|
|
|
_, err := bot.Send(msg)
|
2015-11-20 16:30:50 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 16:30:50 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 17:43:56 +01:00
|
|
|
func TestSendWithNewPhoto(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 16:30:50 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewPhotoUpload(ChatID, "tests/image.jpg")
|
2015-11-20 18:26:12 +01:00
|
|
|
msg.Caption = "Test"
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-20 16:30:50 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 16:30:50 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
2015-07-29 11:41:41 +02:00
|
|
|
}
|
|
|
|
|
2015-11-21 12:36:43 +01:00
|
|
|
func TestSendWithNewPhotoWithFileBytes(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-21 12:36:43 +01:00
|
|
|
|
|
|
|
data, _ := ioutil.ReadFile("tests/image.jpg")
|
|
|
|
b := tgbotapi.FileBytes{Name: "image.jpg", Bytes: data}
|
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewPhotoUpload(ChatID, b)
|
2015-11-21 12:36:43 +01:00
|
|
|
msg.Caption = "Test"
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-21 12:36:43 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-21 12:36:43 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithNewPhotoWithFileReader(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-21 12:36:43 +01:00
|
|
|
|
|
|
|
f, _ := os.Open("tests/image.jpg")
|
|
|
|
reader := tgbotapi.FileReader{Name: "image.jpg", Reader: f, Size: -1}
|
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewPhotoUpload(ChatID, reader)
|
2015-11-21 12:36:43 +01:00
|
|
|
msg.Caption = "Test"
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-21 12:36:43 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-21 12:36:43 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 18:26:12 +01:00
|
|
|
func TestSendWithNewPhotoReply(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewPhotoUpload(ChatID, "tests/image.jpg")
|
|
|
|
msg.ReplyToMessageID = ReplyToMessageID
|
2015-11-20 17:43:56 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 18:26:12 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
2015-11-20 17:43:56 +01:00
|
|
|
|
|
|
|
func TestSendWithExistingPhoto(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 17:43:56 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewPhotoShare(ChatID, ExistingPhotoFileID)
|
2015-11-20 18:26:12 +01:00
|
|
|
msg.Caption = "Test"
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-20 17:43:56 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 17:43:56 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithNewDocument(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 17:43:56 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewDocumentUpload(ChatID, "tests/image.jpg")
|
|
|
|
_, err := bot.Send(msg)
|
2015-11-20 17:43:56 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 17:43:56 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithExistingDocument(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 17:43:56 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewDocumentShare(ChatID, ExistingDocumentFileID)
|
|
|
|
_, err := bot.Send(msg)
|
2015-11-20 17:43:56 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 17:43:56 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 18:26:12 +01:00
|
|
|
func TestSendWithNewAudio(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewAudioUpload(ChatID, "tests/audio.mp3")
|
2015-11-20 18:26:12 +01:00
|
|
|
msg.Title = "TEST"
|
|
|
|
msg.Duration = 10
|
|
|
|
msg.Performer = "TEST"
|
2015-12-13 18:00:20 +01:00
|
|
|
msg.MimeType = "audio/mpeg"
|
|
|
|
msg.FileSize = 688
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 18:26:12 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithExistingAudio(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewAudioShare(ChatID, ExistingAudioFileID)
|
2015-11-20 18:26:12 +01:00
|
|
|
msg.Title = "TEST"
|
|
|
|
msg.Duration = 10
|
|
|
|
msg.Performer = "TEST"
|
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 18:26:12 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithNewVoice(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewVoiceUpload(ChatID, "tests/voice.ogg")
|
2015-11-20 18:26:12 +01:00
|
|
|
msg.Duration = 10
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 18:26:12 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithExistingVoice(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewVoiceShare(ChatID, ExistingVoiceFileID)
|
2015-11-20 18:26:12 +01:00
|
|
|
msg.Duration = 10
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 18:26:12 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-14 00:06:18 +02:00
|
|
|
func TestSendWithContact(t *testing.T) {
|
|
|
|
bot, _ := getBot(t)
|
|
|
|
|
|
|
|
contact := tgbotapi.NewContact(ChatID, "5551234567", "Test")
|
|
|
|
|
|
|
|
if _, err := bot.Send(contact); err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2016-04-14 00:06:18 +02:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 18:26:12 +01:00
|
|
|
func TestSendWithLocation(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
2017-12-29 20:00:02 +01:00
|
|
|
_, err := bot.Send(tgbotapi.NewLocation(ChatID, 40, 40))
|
2015-11-20 18:26:12 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 18:26:12 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-14 00:06:18 +02:00
|
|
|
func TestSendWithVenue(t *testing.T) {
|
|
|
|
bot, _ := getBot(t)
|
|
|
|
|
|
|
|
venue := tgbotapi.NewVenue(ChatID, "A Test Location", "123 Test Street", 40, 40)
|
|
|
|
|
|
|
|
if _, err := bot.Send(venue); err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2016-04-14 00:06:18 +02:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-21 11:17:34 +01:00
|
|
|
func TestSendWithNewVideo(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewVideoUpload(ChatID, "tests/video.mp4")
|
2015-11-21 11:17:34 +01:00
|
|
|
msg.Duration = 10
|
|
|
|
msg.Caption = "TEST"
|
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-21 11:17:34 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithExistingVideo(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewVideoShare(ChatID, ExistingVideoFileID)
|
2015-11-21 11:17:34 +01:00
|
|
|
msg.Duration = 10
|
|
|
|
msg.Caption = "TEST"
|
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-21 11:17:34 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-22 00:04:12 +02:00
|
|
|
func TestSendWithNewVideoNote(t *testing.T) {
|
|
|
|
bot, _ := getBot(t)
|
|
|
|
|
|
|
|
msg := tgbotapi.NewVideoNoteUpload(ChatID, 240, "tests/videonote.mp4")
|
|
|
|
msg.Duration = 10
|
|
|
|
|
|
|
|
_, err := bot.Send(msg)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithExistingVideoNote(t *testing.T) {
|
|
|
|
bot, _ := getBot(t)
|
|
|
|
|
|
|
|
msg := tgbotapi.NewVideoNoteShare(ChatID, 240, ExistingVideoNoteFileID)
|
|
|
|
msg.Duration = 10
|
|
|
|
|
|
|
|
_, err := bot.Send(msg)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-21 11:17:34 +01:00
|
|
|
func TestSendWithNewSticker(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewStickerUpload(ChatID, "tests/image.jpg")
|
2015-11-21 11:17:34 +01:00
|
|
|
|
2015-11-21 13:36:55 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-21 11:17:34 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithExistingSticker(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewStickerShare(ChatID, ExistingStickerFileID)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-21 11:17:34 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithNewStickerAndKeyboardHide(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewStickerUpload(ChatID, "tests/image.jpg")
|
2017-12-29 06:17:32 +01:00
|
|
|
msg.ReplyMarkup = tgbotapi.ReplyKeyboardRemove{
|
|
|
|
RemoveKeyboard: true,
|
|
|
|
Selective: false,
|
|
|
|
}
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-21 11:17:34 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendWithExistingStickerAndKeyboardHide(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
msg := tgbotapi.NewStickerShare(ChatID, ExistingStickerFileID)
|
2017-12-29 06:17:32 +01:00
|
|
|
msg.ReplyMarkup = tgbotapi.ReplyKeyboardRemove{
|
|
|
|
RemoveKeyboard: true,
|
|
|
|
Selective: false,
|
|
|
|
}
|
2015-11-21 11:17:34 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.Send(msg)
|
2015-11-21 11:17:34 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-21 11:17:34 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 17:43:56 +01:00
|
|
|
func TestGetFile(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 17:43:56 +01:00
|
|
|
|
2017-12-29 06:17:32 +01:00
|
|
|
file := tgbotapi.FileConfig{
|
|
|
|
FileID: ExistingPhotoFileID,
|
|
|
|
}
|
2015-11-20 17:43:56 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.GetFile(file)
|
2015-11-20 17:43:56 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 17:43:56 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSendChatConfig(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 17:43:56 +01:00
|
|
|
|
2017-12-29 07:44:47 +01:00
|
|
|
_, err := bot.Request(tgbotapi.NewChatAction(ChatID, tgbotapi.ChatTyping))
|
2015-11-20 17:43:56 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 17:43:56 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-12 19:53:19 +02:00
|
|
|
func TestSendEditMessage(t *testing.T) {
|
|
|
|
bot, _ := getBot(t)
|
|
|
|
|
|
|
|
msg, err := bot.Send(tgbotapi.NewMessage(ChatID, "Testing editing."))
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2016-04-12 19:53:19 +02:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
edit := tgbotapi.EditMessageTextConfig{
|
|
|
|
BaseEdit: tgbotapi.BaseEdit{
|
|
|
|
ChatID: ChatID,
|
|
|
|
MessageID: msg.MessageID,
|
|
|
|
},
|
|
|
|
Text: "Updated text.",
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = bot.Send(edit)
|
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2016-04-12 19:53:19 +02:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 17:43:56 +01:00
|
|
|
func TestGetUserProfilePhotos(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 17:43:56 +01:00
|
|
|
|
2015-11-21 13:34:30 +01:00
|
|
|
_, err := bot.GetUserProfilePhotos(tgbotapi.NewUserProfilePhotos(ChatID))
|
2015-11-20 17:43:56 +01:00
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 17:43:56 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-21 12:36:43 +01:00
|
|
|
func TestSetWebhookWithCert(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-21 12:22:08 +01:00
|
|
|
|
2016-11-25 06:50:35 +01:00
|
|
|
time.Sleep(time.Second * 2)
|
|
|
|
|
2017-12-29 07:50:45 +01:00
|
|
|
bot.Request(tgbotapi.RemoveWebhookConfig{})
|
2015-11-21 12:22:08 +01:00
|
|
|
|
2015-11-21 12:26:39 +01:00
|
|
|
wh := tgbotapi.NewWebhookWithCert("https://example.com/tgbotapi-test/"+bot.Token, "tests/cert.pem")
|
2017-12-29 08:08:01 +01:00
|
|
|
_, err := bot.Request(wh)
|
2015-11-21 12:22:08 +01:00
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-21 12:22:08 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
2018-01-07 19:10:50 +01:00
|
|
|
info, err := bot.GetWebhookInfo()
|
2018-03-26 19:22:16 +02:00
|
|
|
|
2018-01-07 19:10:50 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
2018-03-26 19:22:16 +02:00
|
|
|
|
2018-01-07 19:10:50 +01:00
|
|
|
if info.LastErrorDate != 0 {
|
2018-03-26 19:22:16 +02:00
|
|
|
t.Errorf("failed to set webhook: %s", info.LastErrorMessage)
|
2018-01-07 19:10:50 +01:00
|
|
|
}
|
2018-03-26 19:22:16 +02:00
|
|
|
|
2017-12-29 07:50:45 +01:00
|
|
|
bot.Request(tgbotapi.RemoveWebhookConfig{})
|
2015-11-21 12:22:08 +01:00
|
|
|
}
|
|
|
|
|
2015-11-21 12:36:43 +01:00
|
|
|
func TestSetWebhookWithoutCert(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-21 12:36:43 +01:00
|
|
|
|
2016-11-25 06:50:35 +01:00
|
|
|
time.Sleep(time.Second * 2)
|
|
|
|
|
2017-12-29 07:50:45 +01:00
|
|
|
bot.Request(tgbotapi.RemoveWebhookConfig{})
|
2015-11-21 12:36:43 +01:00
|
|
|
|
|
|
|
wh := tgbotapi.NewWebhook("https://example.com/tgbotapi-test/" + bot.Token)
|
2017-12-29 08:08:01 +01:00
|
|
|
_, err := bot.Request(wh)
|
2015-11-21 12:36:43 +01:00
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-21 12:36:43 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
2018-01-07 19:10:50 +01:00
|
|
|
info, err := bot.GetWebhookInfo()
|
2018-03-26 19:22:16 +02:00
|
|
|
|
2018-01-07 19:10:50 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
2018-03-26 19:22:16 +02:00
|
|
|
|
2018-01-07 19:10:50 +01:00
|
|
|
if info.LastErrorDate != 0 {
|
2018-03-26 19:22:16 +02:00
|
|
|
t.Errorf("failed to set webhook: %s", info.LastErrorMessage)
|
2018-01-07 19:10:50 +01:00
|
|
|
}
|
2018-03-26 19:22:16 +02:00
|
|
|
|
2017-12-29 07:50:45 +01:00
|
|
|
bot.Request(tgbotapi.RemoveWebhookConfig{})
|
2015-11-21 12:36:43 +01:00
|
|
|
}
|
|
|
|
|
2015-11-20 17:43:56 +01:00
|
|
|
func TestUpdatesChan(t *testing.T) {
|
2015-11-21 13:34:30 +01:00
|
|
|
bot, _ := getBot(t)
|
2015-11-20 17:43:56 +01:00
|
|
|
|
|
|
|
var ucfg tgbotapi.UpdateConfig = tgbotapi.NewUpdate(0)
|
|
|
|
ucfg.Timeout = 60
|
2015-11-21 15:31:59 +01:00
|
|
|
_, err := bot.GetUpdatesChan(ucfg)
|
2015-11-20 18:26:12 +01:00
|
|
|
|
2015-11-20 17:43:56 +01:00
|
|
|
if err != nil {
|
2016-11-25 06:50:35 +01:00
|
|
|
t.Error(err)
|
2015-11-20 17:43:56 +01:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-29 11:41:41 +02:00
|
|
|
func ExampleNewBotAPI() {
|
|
|
|
bot, err := tgbotapi.NewBotAPI("MyAwesomeBotToken")
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
bot.Debug = true
|
|
|
|
|
|
|
|
log.Printf("Authorized on account %s", bot.Self.UserName)
|
|
|
|
|
|
|
|
u := tgbotapi.NewUpdate(0)
|
|
|
|
u.Timeout = 60
|
|
|
|
|
2015-11-21 15:31:59 +01:00
|
|
|
updates, err := bot.GetUpdatesChan(u)
|
2015-07-29 11:41:41 +02:00
|
|
|
|
2017-01-26 18:43:28 +01:00
|
|
|
// Optional: wait for updates and clear them if you don't want to handle
|
|
|
|
// a large backlog of old messages
|
2016-12-16 02:07:54 +01:00
|
|
|
time.Sleep(time.Millisecond * 500)
|
|
|
|
updates.Clear()
|
|
|
|
|
2015-11-21 15:26:28 +01:00
|
|
|
for update := range updates {
|
2016-05-22 17:16:28 +02:00
|
|
|
if update.Message == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2015-07-29 11:41:41 +02:00
|
|
|
log.Printf("[%s] %s", update.Message.From.UserName, update.Message.Text)
|
|
|
|
|
|
|
|
msg := tgbotapi.NewMessage(update.Message.Chat.ID, update.Message.Text)
|
|
|
|
msg.ReplyToMessageID = update.Message.MessageID
|
|
|
|
|
2015-11-20 16:30:50 +01:00
|
|
|
bot.Send(msg)
|
2015-07-29 11:41:41 +02:00
|
|
|
}
|
|
|
|
}
|
2015-11-21 12:53:00 +01:00
|
|
|
|
|
|
|
func ExampleNewWebhook() {
|
|
|
|
bot, err := tgbotapi.NewBotAPI("MyAwesomeBotToken")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
bot.Debug = true
|
|
|
|
|
|
|
|
log.Printf("Authorized on account %s", bot.Self.UserName)
|
|
|
|
|
2017-12-29 08:08:01 +01:00
|
|
|
_, err = bot.Request(tgbotapi.NewWebhookWithCert("https://www.google.com:8443/"+bot.Token, "cert.pem"))
|
2015-11-21 12:53:00 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2018-01-07 19:10:50 +01:00
|
|
|
info, err := bot.GetWebhookInfo()
|
2018-03-26 19:22:16 +02:00
|
|
|
|
2018-01-07 19:10:50 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2018-03-26 19:22:16 +02:00
|
|
|
|
2018-01-07 19:10:50 +01:00
|
|
|
if info.LastErrorDate != 0 {
|
2018-03-26 19:22:16 +02:00
|
|
|
log.Printf("failed to set webhook: %s", info.LastErrorMessage)
|
2018-01-07 19:10:50 +01:00
|
|
|
}
|
2018-03-26 19:22:16 +02:00
|
|
|
|
2016-01-04 06:05:36 +01:00
|
|
|
updates := bot.ListenForWebhook("/" + bot.Token)
|
2015-11-21 12:53:00 +01:00
|
|
|
go http.ListenAndServeTLS("0.0.0.0:8443", "cert.pem", "key.pem", nil)
|
|
|
|
|
2015-11-21 15:26:28 +01:00
|
|
|
for update := range updates {
|
2015-11-21 12:53:00 +01:00
|
|
|
log.Printf("%+v\n", update)
|
|
|
|
}
|
|
|
|
}
|
2016-02-28 17:14:08 +01:00
|
|
|
|
2018-03-26 19:22:16 +02:00
|
|
|
func ExampleInlineConfig() {
|
2016-02-28 17:14:08 +01:00
|
|
|
bot, err := tgbotapi.NewBotAPI("MyAwesomeBotToken") // create new bot
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Authorized on account %s", bot.Self.UserName)
|
|
|
|
|
|
|
|
u := tgbotapi.NewUpdate(0)
|
|
|
|
u.Timeout = 60
|
|
|
|
|
|
|
|
updates, err := bot.GetUpdatesChan(u)
|
|
|
|
|
|
|
|
for update := range updates {
|
2016-05-22 17:16:28 +02:00
|
|
|
if update.InlineQuery == nil { // if no inline query, ignore it
|
2016-02-28 17:14:08 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-06-02 22:41:55 +02:00
|
|
|
article := tgbotapi.NewInlineQueryResultArticle(update.InlineQuery.ID, "Echo", update.InlineQuery.Query)
|
|
|
|
article.Description = update.InlineQuery.Query
|
|
|
|
|
|
|
|
inlineConf := tgbotapi.InlineConfig{
|
|
|
|
InlineQueryID: update.InlineQuery.ID,
|
|
|
|
IsPersonal: true,
|
|
|
|
CacheTime: 0,
|
|
|
|
Results: []interface{}{article},
|
|
|
|
}
|
|
|
|
|
2017-12-29 08:08:01 +01:00
|
|
|
if _, err := bot.Request(inlineConf); err != nil {
|
2016-06-02 22:41:55 +02:00
|
|
|
log.Println(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-08 11:32:05 +02:00
|
|
|
|
|
|
|
func TestDeleteMessage(t *testing.T) {
|
|
|
|
bot, _ := getBot(t)
|
|
|
|
|
|
|
|
msg := tgbotapi.NewMessage(ChatID, "A test message from the test library in telegram-bot-api")
|
|
|
|
msg.ParseMode = "markdown"
|
|
|
|
message, _ := bot.Send(msg)
|
|
|
|
|
|
|
|
deleteMessageConfig := tgbotapi.DeleteMessageConfig{
|
|
|
|
ChatID: message.Chat.ID,
|
|
|
|
MessageID: message.MessageID,
|
|
|
|
}
|
2017-12-29 07:50:45 +01:00
|
|
|
_, err := bot.Request(deleteMessageConfig)
|
2017-06-08 11:32:05 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
2017-08-05 11:37:43 +02:00
|
|
|
|
|
|
|
func TestPinChatMessage(t *testing.T) {
|
|
|
|
bot, _ := getBot(t)
|
|
|
|
|
2017-08-05 12:50:44 +02:00
|
|
|
msg := tgbotapi.NewMessage(SupergroupChatID, "A test message from the test library in telegram-bot-api")
|
2017-08-05 11:37:43 +02:00
|
|
|
msg.ParseMode = "markdown"
|
|
|
|
message, _ := bot.Send(msg)
|
|
|
|
|
|
|
|
pinChatMessageConfig := tgbotapi.PinChatMessageConfig{
|
2017-11-09 19:51:50 +01:00
|
|
|
ChatID: message.Chat.ID,
|
|
|
|
MessageID: message.MessageID,
|
2017-08-05 11:37:43 +02:00
|
|
|
DisableNotification: false,
|
|
|
|
}
|
2017-12-29 07:50:45 +01:00
|
|
|
_, err := bot.Request(pinChatMessageConfig)
|
2017-08-05 11:37:43 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUnpinChatMessage(t *testing.T) {
|
|
|
|
bot, _ := getBot(t)
|
|
|
|
|
2017-08-05 12:50:44 +02:00
|
|
|
msg := tgbotapi.NewMessage(SupergroupChatID, "A test message from the test library in telegram-bot-api")
|
2017-08-05 11:37:43 +02:00
|
|
|
msg.ParseMode = "markdown"
|
|
|
|
message, _ := bot.Send(msg)
|
|
|
|
|
|
|
|
// We need pin message to unpin something
|
|
|
|
pinChatMessageConfig := tgbotapi.PinChatMessageConfig{
|
2017-11-09 19:51:50 +01:00
|
|
|
ChatID: message.Chat.ID,
|
|
|
|
MessageID: message.MessageID,
|
2017-08-05 11:37:43 +02:00
|
|
|
DisableNotification: false,
|
|
|
|
}
|
2018-03-26 19:39:07 +02:00
|
|
|
|
|
|
|
if _, err := bot.Request(pinChatMessageConfig); err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
2017-08-05 11:37:43 +02:00
|
|
|
|
|
|
|
unpinChatMessageConfig := tgbotapi.UnpinChatMessageConfig{
|
2017-11-09 19:51:50 +01:00
|
|
|
ChatID: message.Chat.ID,
|
2017-08-05 11:37:43 +02:00
|
|
|
}
|
|
|
|
|
2018-03-26 19:39:07 +02:00
|
|
|
if _, err := bot.Request(unpinChatMessageConfig); err != nil {
|
2017-08-05 11:37:43 +02:00
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
2017-11-09 19:51:50 +01:00
|
|
|
}
|