-
Notifications
You must be signed in to change notification settings - Fork 18
/
attachment_test.go
82 lines (62 loc) · 1.78 KB
/
attachment_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
75
76
77
78
79
80
81
82
package proton_test
import (
"context"
"errors"
"net/http"
"sync"
"testing"
"github.com/ProtonMail/go-proton-api"
"github.com/ProtonMail/go-proton-api/server"
"github.com/stretchr/testify/require"
)
func TestAttachment_429Response(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
s := server.New()
defer s.Close()
m := proton.New(
proton.WithHostURL(s.GetHostURL()),
proton.WithTransport(proton.InsecureTransport()),
)
_, _, err := s.CreateUser("user", []byte("pass"))
require.NoError(t, err)
c, _, err := m.NewClientWithLogin(ctx, "user", []byte("pass"))
require.NoError(t, err)
s.AddStatusHook(func(r *http.Request) (int, bool) {
return http.StatusTooManyRequests, true
})
_, err = c.GetAttachment(ctx, "someID")
require.Error(t, err)
apiErr := new(proton.APIError)
require.True(t, errors.As(err, &apiErr), "expected to be API error")
require.Equal(t, 429, apiErr.Status)
require.Equal(t, proton.InvalidValue, apiErr.Code)
require.Equal(t, "Request failed with status 429", apiErr.Message)
}
func TestAttachment_ContextCancelled(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
s := server.New()
defer s.Close()
m := proton.New(
proton.WithHostURL(s.GetHostURL()),
proton.WithTransport(proton.InsecureTransport()),
)
_, _, err := s.CreateUser("user", []byte("pass"))
require.NoError(t, err)
c, _, err := m.NewClientWithLogin(ctx, "user", []byte("pass"))
require.NoError(t, err)
wg := sync.WaitGroup{}
wg.Add(1)
s.AddStatusHook(func(r *http.Request) (int, bool) {
wg.Wait()
return http.StatusTooManyRequests, true
})
go func() {
_, err = c.GetAttachment(ctx, "someID")
wg.Done()
}()
cancel()
wg.Wait()
require.Error(t, err)
require.True(t, errors.Is(err, context.Canceled))
}