forked from pion/interceptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors_test.go
44 lines (39 loc) · 922 Bytes
/
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
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
package interceptor
import (
"errors"
"testing"
)
func TestMultiError(t *testing.T) {
rawErrs := []error{
errors.New("err1"), //nolint
errors.New("err2"), //nolint
errors.New("err3"), //nolint
errors.New("err4"), //nolint
}
errs := flattenErrs([]error{
rawErrs[0],
nil,
rawErrs[1],
flattenErrs([]error{
rawErrs[2],
}),
})
str := "err1\nerr2\nerr3"
if errs.Error() != str {
t.Errorf("String representation doesn't match, expected: %s, got: %s", errs.Error(), str)
}
errIs, ok := errs.(multiError) //nolint
if !ok {
t.Fatal("FlattenErrs returns non-multiError")
}
for i := 0; i < 3; i++ {
if !errIs.Is(rawErrs[i]) {
t.Errorf("'%+v' should contains '%v'", errs, rawErrs[i])
}
}
if errIs.Is(rawErrs[3]) {
t.Errorf("'%+v' should not contains '%v'", errs, rawErrs[3])
}
}