forked from vcabbage/amqp
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy patherrors_test.go
44 lines (33 loc) · 1.18 KB
/
errors_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
package amqp_test
import (
"errors"
"testing"
amqp "github.com/Azure/go-amqp"
"github.com/stretchr/testify/require"
)
func TestErrorUnwrap(t *testing.T) {
// In the majority of common use cases, the LinkError, ConnError and SessionError will contain an amqp.Error.
// It's simpler, for callers, if they can simply check errors.As(&amqp.Error) so they can write general error
// handling, rather than having to check the envelope type each time.
t.Run("LinkError", func(t *testing.T) {
var amqpErr *amqp.Error
le := &amqp.LinkError{}
require.False(t, errors.As(le, &amqpErr))
le.RemoteErr = &amqp.Error{Condition: amqp.ErrCondConnectionForced}
require.ErrorAs(t, le, &amqpErr)
})
t.Run("ConnError", func(t *testing.T) {
var amqpErr *amqp.Error
ce := &amqp.ConnError{}
require.False(t, errors.As(ce, &amqpErr))
ce.RemoteErr = &amqp.Error{Condition: amqp.ErrCondConnectionForced}
require.ErrorAs(t, ce, &amqpErr)
})
t.Run("SessionError", func(t *testing.T) {
var amqpErr *amqp.Error
se := &amqp.ConnError{}
require.False(t, errors.As(se, &amqpErr))
se.RemoteErr = &amqp.Error{Condition: amqp.ErrCondConnectionForced}
require.ErrorAs(t, se, &amqpErr)
})
}