Merge pull request #321 from ErrorBoi/cleanup-bot-test

Cleanup bot test
bot-api-6.1
Syfaro 2020-07-23 14:12:36 -05:00 committed by GitHub
commit 4acb1cebba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 44 deletions

View File

@ -29,7 +29,6 @@ func getBot(t *testing.T) (*BotAPI, error) {
if err != nil {
t.Error(err)
t.Fail()
}
return bot, err
@ -40,7 +39,6 @@ func TestNewBotAPI_notoken(t *testing.T) {
if err == nil {
t.Error(err)
t.Fail()
}
}
@ -53,7 +51,6 @@ func TestGetUpdates(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -66,7 +63,6 @@ func TestSendWithMessage(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -79,7 +75,6 @@ func TestSendWithMessageReply(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -91,7 +86,6 @@ func TestSendWithMessageForward(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -104,7 +98,6 @@ func TestSendWithNewPhoto(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -120,7 +113,6 @@ func TestSendWithNewPhotoWithFileBytes(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -136,7 +128,6 @@ func TestSendWithNewPhotoWithFileReader(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -150,7 +141,6 @@ func TestSendWithNewPhotoReply(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -208,7 +198,6 @@ func TestSendWithExistingPhoto(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -220,7 +209,6 @@ func TestSendWithNewDocument(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -232,7 +220,6 @@ func TestSendWithExistingDocument(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -249,7 +236,6 @@ func TestSendWithNewAudio(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -265,7 +251,6 @@ func TestSendWithExistingAudio(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -278,7 +263,6 @@ func TestSendWithNewVoice(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -291,7 +275,6 @@ func TestSendWithExistingVoice(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -302,7 +285,6 @@ func TestSendWithContact(t *testing.T) {
if _, err := bot.Send(contact); err != nil {
t.Error(err)
t.Fail()
}
}
@ -313,7 +295,6 @@ func TestSendWithLocation(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -324,7 +305,6 @@ func TestSendWithVenue(t *testing.T) {
if _, err := bot.Send(venue); err != nil {
t.Error(err)
t.Fail()
}
}
@ -339,7 +319,6 @@ func TestSendWithNewVideo(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -354,7 +333,6 @@ func TestSendWithExistingVideo(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -368,7 +346,6 @@ func TestSendWithNewVideoNote(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -382,7 +359,6 @@ func TestSendWithExistingVideoNote(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -395,7 +371,6 @@ func TestSendWithNewSticker(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -408,7 +383,6 @@ func TestSendWithExistingSticker(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -424,7 +398,6 @@ func TestSendWithNewStickerAndKeyboardHide(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -441,7 +414,6 @@ func TestSendWithExistingStickerAndKeyboardHide(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -456,7 +428,6 @@ func TestGetFile(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -467,7 +438,6 @@ func TestSendChatConfig(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -477,7 +447,6 @@ func TestSendEditMessage(t *testing.T) {
msg, err := bot.Send(NewMessage(ChatID, "Testing editing."))
if err != nil {
t.Error(err)
t.Fail()
}
edit := EditMessageTextConfig{
@ -491,7 +460,6 @@ func TestSendEditMessage(t *testing.T) {
_, err = bot.Send(edit)
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -501,7 +469,6 @@ func TestGetUserProfilePhotos(t *testing.T) {
_, err := bot.GetUserProfilePhotos(NewUserProfilePhotos(ChatID))
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -516,7 +483,6 @@ func TestSetWebhookWithCert(t *testing.T) {
_, err := bot.Request(wh)
if err != nil {
t.Error(err)
t.Fail()
}
_, err = bot.GetWebhookInfo()
@ -539,7 +505,6 @@ func TestSetWebhookWithoutCert(t *testing.T) {
_, err := bot.Request(wh)
if err != nil {
t.Error(err)
t.Fail()
}
info, err := bot.GetWebhookInfo()
@ -725,7 +690,6 @@ func TestDeleteMessage(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -745,7 +709,6 @@ func TestPinChatMessage(t *testing.T) {
if err != nil {
t.Error(err)
t.Fail()
}
}
@ -765,7 +728,6 @@ func TestUnpinChatMessage(t *testing.T) {
if _, err := bot.Request(pinChatMessageConfig); err != nil {
t.Error(err)
t.Fail()
}
unpinChatMessageConfig := UnpinChatMessageConfig{
@ -774,7 +736,6 @@ func TestUnpinChatMessage(t *testing.T) {
if _, err := bot.Request(unpinChatMessageConfig); err != nil {
t.Error(err)
t.Fail()
}
}
@ -786,28 +747,23 @@ func TestPolls(t *testing.T) {
msg, err := bot.Send(poll)
if err != nil {
t.Error(err)
t.Fail()
}
result, err := bot.StopPoll(NewStopPoll(SupergroupChatID, msg.MessageID))
if err != nil {
t.Error(err)
t.Fail()
}
if result.Question != "Are polls working?" {
t.Error("Poll question did not match")
t.Fail()
}
if !result.IsClosed {
t.Error("Poll did not end")
t.Fail()
}
if result.Options[0].Text != "Yes" || result.Options[0].VoterCount != 0 || result.Options[1].Text != "No" || result.Options[1].VoterCount != 0 {
t.Error("Poll options were incorrect")
t.Fail()
}
}