-
Notifications
You must be signed in to change notification settings - Fork 573
Expand file tree
/
Copy pathlex_test.go
More file actions
49 lines (37 loc) · 1.2 KB
/
lex_test.go
File metadata and controls
49 lines (37 loc) · 1.2 KB
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
package events
import (
"encoding/json"
"testing"
"github.com/aws/aws-lambda-go/events/test"
"github.com/stretchr/testify/assert"
)
func TestLexEventMarshaling(t *testing.T) {
inputJSON := test.ReadJSONFromFile(t, "./testdata/lex-event.json")
var inputEvent LexEvent
if err := json.Unmarshal(inputJSON, &inputEvent); err != nil {
t.Errorf("could not unmarshal event. details: %v", err)
}
outputJSON, err := json.Marshal(inputEvent)
if err != nil {
t.Errorf("could not marshal event. details: %v", err)
}
assert.JSONEq(t, string(inputJSON), string(outputJSON))
}
func TestLexResponseMarshaling(t *testing.T) {
inputJSON := test.ReadJSONFromFile(t, "./testdata/lex-response.json")
var inputEvent LexResponse
if err := json.Unmarshal(inputJSON, &inputEvent); err != nil {
t.Errorf("could not unmarshal event. details: %v", err)
}
outputJSON, err := json.Marshal(inputEvent)
if err != nil {
t.Errorf("could not marshal event. details: %v", err)
}
assert.JSONEq(t, string(inputJSON), string(outputJSON))
}
func TestLexMarshalingMalformedJson(t *testing.T) {
test.TestMalformedJson(t, LexEvent{})
}
func TestLexResponseMalformedJson(t *testing.T) {
test.TestMalformedJson(t, LexResponse{})
}