Merge pull request #321 from ErrorBoi/cleanup-bot-test Cleanup bot test
jump to
@@ -29,7 +29,6 @@ bot.Debug = true
if err != nil { t.Error(err) - t.Fail() } return bot, err@@ -40,7 +39,6 @@ _, err := NewBotAPI("")
if err == nil { t.Error(err) - t.Fail() } }@@ -53,7 +51,6 @@ _, err := bot.GetUpdates(u)
if err != nil { t.Error(err) - t.Fail() } }@@ -66,7 +63,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -79,7 +75,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -91,7 +86,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -104,7 +98,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -120,7 +113,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -136,7 +128,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -150,7 +141,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -208,7 +198,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -220,7 +209,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -232,7 +220,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -249,7 +236,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -265,7 +251,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -278,7 +263,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -291,7 +275,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -302,7 +285,6 @@ contact := NewContact(ChatID, "5551234567", "Test")
if _, err := bot.Send(contact); err != nil { t.Error(err) - t.Fail() } }@@ -313,7 +295,6 @@ _, err := bot.Send(NewLocation(ChatID, 40, 40))
if err != nil { t.Error(err) - t.Fail() } }@@ -324,7 +305,6 @@ venue := NewVenue(ChatID, "A Test Location", "123 Test Street", 40, 40)
if _, err := bot.Send(venue); err != nil { t.Error(err) - t.Fail() } }@@ -339,7 +319,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -354,7 +333,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -368,7 +346,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -382,7 +359,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -395,7 +371,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -408,7 +383,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -424,7 +398,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -441,7 +414,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -456,7 +428,6 @@ _, err := bot.GetFile(file)
if err != nil { t.Error(err) - t.Fail() } }@@ -467,7 +438,6 @@ _, err := bot.Request(NewChatAction(ChatID, ChatTyping))
if err != nil { t.Error(err) - t.Fail() } }@@ -477,7 +447,6 @@
msg, err := bot.Send(NewMessage(ChatID, "Testing editing.")) if err != nil { t.Error(err) - t.Fail() } edit := EditMessageTextConfig{@@ -491,7 +460,6 @@
_, err = bot.Send(edit) if err != nil { t.Error(err) - t.Fail() } }@@ -501,7 +469,6 @@
_, err := bot.GetUserProfilePhotos(NewUserProfilePhotos(ChatID)) if err != nil { t.Error(err) - t.Fail() } }@@ -516,7 +483,6 @@ wh := NewWebhookWithCert("https://example.com/tgbotapi-test/"+bot.Token, "tests/cert.pem")
_, err := bot.Request(wh) if err != nil { t.Error(err) - t.Fail() } _, err = bot.GetWebhookInfo()@@ -539,7 +505,6 @@ wh := NewWebhook("https://example.com/tgbotapi-test/" + bot.Token)
_, err := bot.Request(wh) if err != nil { t.Error(err) - t.Fail() } info, err := bot.GetWebhookInfo()@@ -725,7 +690,6 @@ _, err := bot.Request(deleteMessageConfig)
if err != nil { t.Error(err) - t.Fail() } }@@ -745,7 +709,6 @@ _, err := bot.Request(pinChatMessageConfig)
if err != nil { t.Error(err) - t.Fail() } }@@ -765,7 +728,6 @@ }
if _, err := bot.Request(pinChatMessageConfig); err != nil { t.Error(err) - t.Fail() } unpinChatMessageConfig := UnpinChatMessageConfig{@@ -774,7 +736,6 @@ }
if _, err := bot.Request(unpinChatMessageConfig); err != nil { t.Error(err) - t.Fail() } }@@ -786,28 +747,23 @@
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() } }