-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgoerr_test.go
85 lines (68 loc) · 1.89 KB
/
goerr_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
83
84
85
package goerr_test
import (
"errors"
"github.com/madhanganesh/goerr"
"github.com/madhanganesh/goerr/samplesrc"
"regexp"
"strings"
"testing"
)
func TestBasic(t *testing.T) {
err := samplesrc.Repository()
if err == nil {
t.Error("expecting an error")
}
want := "error from database"
got := err.Error()
if want != got {
t.Errorf("Want: %s; Got: %s", want, got)
}
}
func TestNestedErrors(t *testing.T) {
err := samplesrc.Service()
want := "service failed"
got := err.Error()
if want != got {
t.Errorf("Want: %s; Got: %s", want, got)
}
}
func TestStackDetails(t *testing.T) {
err := samplesrc.Service()
stacks := goerr.ListStacks(err)
if len(stacks) != 2 {
t.Errorf("Nr. of stack entries. Want: %d; Got: %d", 2, len(stacks))
}
first := stacks[0]
if !strings.Contains(first, "service failed") {
t.Errorf("stack do not contain right error")
}
if !strings.Contains(first, "/goerr/samplesrc/samples.go:19") {
t.Errorf("stack do not contain right file/line number")
}
second := stacks[1]
if !strings.Contains(second, "error from database") {
t.Errorf("stack do not contain right error")
}
if !strings.Contains(second, "/goerr/samplesrc/samples.go:26") {
t.Errorf("stack do not contain right file/line number")
}
}
func TestStack(t *testing.T) {
err := samplesrc.Controller()
stack := goerr.Stack(err)
pattern := `controller failed \[.*/goerr/samplesrc/samples.go:11 \(samplesrc.Controller\)\]
\tservice failed \[.*/goerr/samplesrc/samples.go:19 \(samplesrc.Service\)\]
\t\terror from database.* \[.*/goerr/samplesrc/samples.go:26 \(samplesrc.Repository\)\]`
match, _ := regexp.MatchString(pattern, stack)
if !match {
t.Errorf("stack is not matching the expectation")
}
}
func TestStackNonGoErr(t *testing.T) {
err := errors.New("some sample error")
want := "some sample error"
got := goerr.Stack(err)
if want != got {
t.Errorf("Want: %s, Got: %s", want, got)
}
}