forked from tucnak/telebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_test.go
74 lines (59 loc) · 1.59 KB
/
api_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package telebot
import (
"encoding/json"
"errors"
"io"
"net/http"
"net/http/httptest"
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
// testPayload implements json.Marshaler
// to test json encoding error behaviour.
type testPayload struct{}
func (testPayload) MarshalJSON() ([]byte, error) {
return nil, errors.New("test error")
}
func testRawServer(w http.ResponseWriter, r *http.Request) {
switch {
// causes EOF error on ioutil.ReadAll
case strings.HasSuffix(r.URL.Path, "/testReadError"):
// tells the body is 1 byte length but actually it's 0
w.Header().Set("Content-Length", "1")
// returns unknown telegram error
case strings.HasSuffix(r.URL.Path, "/testUnknownError"):
data, _ := json.Marshal(struct {
Ok bool `json:"ok"`
Code int `json:"error_code"`
Description string `json:"description"`
}{
Ok: false,
Code: 400,
Description: "unknown error",
})
w.WriteHeader(400)
w.Write(data)
}
}
func TestRaw(t *testing.T) {
if token == "" {
t.Skip("TELEBOT_SECRET is required")
}
b, err := newTestBot()
if err != nil {
t.Fatal(err)
}
_, err = b.Raw("BAD METHOD", nil)
assert.EqualError(t, err, ErrNotFound.Error())
_, err = b.Raw("", &testPayload{})
assert.Error(t, err)
srv := httptest.NewServer(http.HandlerFunc(testRawServer))
defer srv.Close()
b.URL = srv.URL
b.client = srv.Client()
_, err = b.Raw("testReadError", nil)
assert.EqualError(t, err, "telebot: "+io.ErrUnexpectedEOF.Error())
_, err = b.Raw("testUnknownError", nil)
assert.EqualError(t, err, "telegram: unknown error (400)")
}