forked from EvilLord666/step
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser_test.go
124 lines (99 loc) · 2.95 KB
/
parser_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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package machine
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Test_Machine_Parser_FromJSON(t *testing.T) {
json := []byte(`
{
"Comment": "Adds some coordinates to the input",
"StartAt": "Coords",
"States": {
"Coords": {
"Type": "Pass",
"Result": {
"x": 3.14,
"y": 103.14159
},
"ResultPath": "$.coords",
"End": true
}
}
}`)
_, err := FromJSON(json)
assert.Equal(t, err, nil)
}
func Test_Parser_Expands_TaskFn(t *testing.T) {
json := []byte(`
{
"StartAt": "A",
"States": {
"A": {
"Type": "TaskFn",
"Next": "B"
},
"B": {
"Type": "TaskFn",
"End": true
}
}
}`)
sm, err := FromJSON(json)
assert.NoError(t, err)
// Names and Types
assert.Equal(t, len(sm.States), 2)
assert.Equal(t, *sm.States["A"].GetType(), "Task")
assert.Equal(t, *sm.States["B"].GetType(), "Task")
ataskState := sm.States["A"].(*TaskState)
btaskState := sm.States["B"].(*TaskState)
// ORDER
assert.Equal(t, ataskState.Parameters, map[string]interface{}{"Task": "A", "Input.$": "$"})
assert.Equal(t, btaskState.Parameters, map[string]interface{}{"Task": "B", "Input.$": "$"})
}
func Test_Machine_Parser_FileNonexistantFile(t *testing.T) {
_, err := ParseFile("../examples/non_existent_file.json")
assert.Error(t, err)
}
func Test_Machine_Parser_OfBadStateType(t *testing.T) {
_, err := ParseFile("../examples/bad_type.json")
assert.Error(t, err)
assert.Regexp(t, "Unknown State", err.Error())
}
func Test_Machine_Parser_OfBadPath(t *testing.T) {
_, err := ParseFile("../examples/bad_path.json")
assert.Error(t, err)
assert.Regexp(t, "Bad JSON path", err.Error())
}
// BASIC TYPE TESTS
func Test_Machine_Parser_AllTypes(t *testing.T) {
sm, err := ParseFile("../examples/all_types.json")
assert.NoError(t, err)
assert.NoError(t, sm.Validate())
}
func Test_Machine_Parser_BasicPass(t *testing.T) {
sm, err := ParseFile("../examples/basic_pass.json")
assert.NoError(t, err)
assert.NoError(t, sm.Validate())
}
func Test_Machine_Parser_BasicChoice(t *testing.T) {
sm, err := ParseFile("../examples/basic_choice.json")
assert.Equal(t, err, nil)
assert.NoError(t, sm.Validate())
}
func Test_Machine_Parser_TaskFn(t *testing.T) {
sm, err := ParseFile("../examples/taskfn.json")
assert.Equal(t, err, nil)
assert.NoError(t, sm.Validate())
}
func Test_Machine_Parser_Map(t *testing.T) {
sm, err := ParseFile("../examples/map.json")
var mapState *MapState
mapState = sm.States["Start"].(*MapState)
assert.Equal(t, err, nil)
assert.NoError(t, sm.Validate())
assert.Equal(t, "$.detail", mapState.InputPath.String(), )
assert.Equal(t, "$.shipped", mapState.ItemsPath.String(), )
assert.Equal(t, "$.detail.shipped", mapState.ResultPath.String(), )
assert.Equal(t, 1, len(mapState.Iterator.States))
assert.Equal(t, "Task", *mapState.Iterator.States["Validate"].GetType(), )
}