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
|
package dynamodbattribute
import (
"fmt"
"testing"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/stretchr/testify/assert"
)
func TestMarshalErrorTypes(t *testing.T) {
var _ awserr.Error = (*InvalidMarshalError)(nil)
var _ awserr.Error = (*unsupportedMarshalTypeError)(nil)
}
func TestMarshalShared(t *testing.T) {
for i, c := range sharedTestCases {
av, err := Marshal(c.expected)
assertConvertTest(t, i, av, c.in, err, c.err)
}
}
func TestMarshalListShared(t *testing.T) {
for i, c := range sharedListTestCases {
av, err := MarshalList(c.expected)
assertConvertTest(t, i, av, c.in, err, c.err)
}
}
func TestMarshalMapShared(t *testing.T) {
for i, c := range sharedMapTestCases {
av, err := MarshalMap(c.expected)
assertConvertTest(t, i, av, c.in, err, c.err)
}
}
type marshalMarshaler struct {
Value string
Value2 int
Value3 bool
}
func (m *marshalMarshaler) MarshalDynamoDBAttributeValue(av *dynamodb.AttributeValue) error {
av.M = map[string]*dynamodb.AttributeValue{
"abc": {S: &m.Value},
"def": {N: aws.String(fmt.Sprintf("%d", m.Value2))},
"ghi": {BOOL: &m.Value3},
}
return nil
}
func TestMarshalMashaler(t *testing.T) {
m := &marshalMarshaler{
Value: "value",
Value2: 123,
Value3: true,
}
expect := &dynamodb.AttributeValue{
M: map[string]*dynamodb.AttributeValue{
"abc": {S: aws.String("value")},
"def": {N: aws.String("123")},
"ghi": {BOOL: aws.Bool(true)},
},
}
actual, err := Marshal(m)
assert.NoError(t, err)
assert.Equal(t, expect, actual)
}
type testOmitEmptyElemListStruct struct {
Values []string `dynamodbav:",omitemptyelem"`
}
type testOmitEmptyElemMapStruct struct {
Values map[string]interface{} `dynamodbav:",omitemptyelem"`
}
func TestMarshalListOmitEmptyElem(t *testing.T) {
expect := &dynamodb.AttributeValue{
M: map[string]*dynamodb.AttributeValue{
"Values": {L: []*dynamodb.AttributeValue{
{S: aws.String("abc")},
{S: aws.String("123")},
}},
},
}
m := testOmitEmptyElemListStruct{Values: []string{"abc", "", "123"}}
actual, err := Marshal(m)
assert.NoError(t, err)
assert.Equal(t, expect, actual)
}
func TestMarshalMapOmitEmptyElem(t *testing.T) {
expect := &dynamodb.AttributeValue{
M: map[string]*dynamodb.AttributeValue{
"Values": {M: map[string]*dynamodb.AttributeValue{
"abc": {N: aws.String("123")},
"klm": {S: aws.String("abc")},
}},
},
}
m := testOmitEmptyElemMapStruct{Values: map[string]interface{}{
"abc": 123.,
"efg": nil,
"hij": "",
"klm": "abc",
}}
actual, err := Marshal(m)
assert.NoError(t, err)
assert.Equal(t, expect, actual)
}
|