-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhook_test.go
48 lines (42 loc) · 939 Bytes
/
hook_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
package glcm
import (
"errors"
"testing"
)
func TestNewHandler(t *testing.T) {
tests := []struct {
name string
handlerFn func(...interface{}) error
args []interface{}
wantErr bool
}{
{
name: "Handler executes successfully",
handlerFn: func(args ...interface{}) error {
return nil
},
args: []interface{}{"arg1", "arg2"},
wantErr: false,
},
{
name: "Handler returns error",
handlerFn: func(args ...interface{}) error {
return errors.New("handler error")
},
args: []interface{}{"arg1", "arg2"},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
h := NewHook(tt.name, tt.handlerFn, tt.args...)
err := h.Execute()
if (err != nil) != tt.wantErr {
t.Errorf("Execute() error = %v, wantErr %v", err, tt.wantErr)
}
if h.Name() != tt.name {
t.Errorf("Name() = %v, want %v", h.Name(), tt.name)
}
})
}
}