forked from krystal/guvnor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault_service_test.go
More file actions
50 lines (46 loc) · 860 Bytes
/
default_service_test.go
File metadata and controls
50 lines (46 loc) · 860 Bytes
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
package guvnor
import (
"path"
"testing"
"github.com/stretchr/testify/assert"
)
func Test_Engine_GetDefaultService(t *testing.T) {
tests := []struct {
name string
want *GetDefaultServiceResult
wantErr string
}{
{
name: "valid",
want: &GetDefaultServiceResult{
Name: "one",
},
},
{
name: "multiple",
wantErr: ErrMultipleServices.Error(),
},
{
name: "none",
wantErr: ErrNoService.Error(),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
e := Engine{
config: EngineConfig{
Paths: PathsConfig{
Config: path.Join("./testdata/", t.Name()),
},
},
}
got, gotErr := e.GetDefaultService()
if tt.wantErr != "" {
assert.EqualError(t, gotErr, tt.wantErr)
} else {
assert.NoError(t, gotErr)
}
assert.Equal(t, tt.want, got)
})
}
}