forked from aws/aws-lambda-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_test.go
37 lines (30 loc) · 954 Bytes
/
config_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
// Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
package events
import (
"encoding/json"
"io/ioutil" //nolint: staticcheck
"testing"
"github.com/aws/aws-lambda-go/events/test"
"github.com/stretchr/testify/assert"
)
func TestConfigEventMarshaling(t *testing.T) {
// read json from file
inputJSON, err := ioutil.ReadFile("./testdata/config-event.json")
if err != nil {
t.Errorf("could not open test file. details: %v", err)
}
// de-serialize into Go object
var inputEvent ConfigEvent
if err := json.Unmarshal(inputJSON, &inputEvent); err != nil {
t.Errorf("could not unmarshal event. details: %v", err)
}
// serialize to json
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 TestConfigMarshalingMalformedJson(t *testing.T) {
test.TestMalformedJson(t, ConfigEvent{})
}