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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
|
package dynamodbattribute
import (
"reflect"
"strings"
"testing"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/dynamodb"
)
type testBinarySetStruct struct {
Binarys [][]byte `dynamodbav:",binaryset"`
}
type testNumberSetStruct struct {
Numbers []int `dynamodbav:",numberset"`
}
type testStringSetStruct struct {
Strings []string `dynamodbav:",stringset"`
}
type testIntAsStringStruct struct {
Value int `dynamodbav:",string"`
}
type testOmitEmptyStruct struct {
Value string `dynamodbav:",omitempty"`
Value2 *string `dynamodbav:",omitempty"`
Value3 int
}
type testAliasedString string
type testAliasedStringSlice []string
type testAliasedInt int
type testAliasedIntSlice []int
type testAliasedMap map[string]int
type testAliasedSlice []string
type testAliasedByteSlice []byte
type testAliasedBool bool
type testAliasedBoolSlice []bool
type testAliasedStruct struct {
Value testAliasedString
Value2 testAliasedInt
Value3 testAliasedMap
Value4 testAliasedSlice
Value5 testAliasedByteSlice
Value6 []testAliasedInt
Value7 []testAliasedString
Value8 []testAliasedByteSlice `dynamodbav:",binaryset"`
Value9 []testAliasedInt `dynamodbav:",numberset"`
Value10 []testAliasedString `dynamodbav:",stringset"`
Value11 testAliasedIntSlice
Value12 testAliasedStringSlice
Value13 testAliasedBool
Value14 testAliasedBoolSlice
Value15 map[testAliasedString]string
}
type testNamedPointer *int
var testDate, _ = time.Parse(time.RFC3339, "2016-05-03T17:06:26.209072Z")
var sharedTestCases = []struct {
in *dynamodb.AttributeValue
actual, expected interface{}
encoderOpts func(encoder *Encoder)
enableEmptyString bool
enableEmptyByteSlice bool
err error
}{
0: { // Binary slice
in: &dynamodb.AttributeValue{B: []byte{48, 49}},
actual: &[]byte{},
expected: []byte{48, 49},
},
1: { // Binary slice oversized
in: &dynamodb.AttributeValue{B: []byte{48, 49}},
actual: func() *[]byte {
v := make([]byte, 0, 10)
return &v
}(),
expected: []byte{48, 49},
},
2: { // Binary slice pointer
in: &dynamodb.AttributeValue{B: []byte{48, 49}},
actual: func() **[]byte {
v := make([]byte, 0, 10)
v2 := &v
return &v2
}(),
expected: []byte{48, 49},
},
3: { // Bool
in: &dynamodb.AttributeValue{BOOL: aws.Bool(true)},
actual: new(bool),
expected: true,
},
4: { // List
in: &dynamodb.AttributeValue{L: []*dynamodb.AttributeValue{
{N: aws.String("123")},
}},
actual: &[]int{},
expected: []int{123},
},
5: { // Map, interface
in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{
"abc": {N: aws.String("123")},
}},
actual: &map[string]int{},
expected: map[string]int{"abc": 123},
},
6: { // Map, struct
in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{
"Abc": {N: aws.String("123")},
}},
actual: &struct{ Abc int }{},
expected: struct{ Abc int }{Abc: 123},
},
7: { // Map, struct
in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{
"abc": {N: aws.String("123")},
}},
actual: &struct {
Abc int `json:"abc" dynamodbav:"abc"`
}{},
expected: struct {
Abc int `json:"abc" dynamodbav:"abc"`
}{Abc: 123},
},
8: { // Number, int
in: &dynamodb.AttributeValue{N: aws.String("123")},
actual: new(int),
expected: 123,
},
9: { // Number, Float
in: &dynamodb.AttributeValue{N: aws.String("123.1")},
actual: new(float64),
expected: float64(123.1),
},
10: { // Null string
in: &dynamodb.AttributeValue{NULL: aws.Bool(true)},
actual: new(string),
expected: "",
},
11: { // Null ptr string
in: &dynamodb.AttributeValue{NULL: aws.Bool(true)},
actual: new(*string),
expected: nil,
},
12: { // Non-Empty String
in: &dynamodb.AttributeValue{S: aws.String("abc")},
actual: new(string),
expected: "abc",
},
13: { // Binary Set
in: &dynamodb.AttributeValue{
M: map[string]*dynamodb.AttributeValue{
"Binarys": {BS: [][]byte{{48, 49}, {50, 51}}},
},
},
actual: &testBinarySetStruct{},
expected: testBinarySetStruct{Binarys: [][]byte{{48, 49}, {50, 51}}},
},
14: { // Number Set
in: &dynamodb.AttributeValue{
M: map[string]*dynamodb.AttributeValue{
"Numbers": {NS: []*string{aws.String("123"), aws.String("321")}},
},
},
actual: &testNumberSetStruct{},
expected: testNumberSetStruct{Numbers: []int{123, 321}},
},
15: { // String Set
in: &dynamodb.AttributeValue{
M: map[string]*dynamodb.AttributeValue{
"Strings": {SS: []*string{aws.String("abc"), aws.String("efg")}},
},
},
actual: &testStringSetStruct{},
expected: testStringSetStruct{Strings: []string{"abc", "efg"}},
},
16: { // Int value as string
in: &dynamodb.AttributeValue{
M: map[string]*dynamodb.AttributeValue{
"Value": {S: aws.String("123")},
},
},
actual: &testIntAsStringStruct{},
expected: testIntAsStringStruct{Value: 123},
},
17: { // Omitempty
in: &dynamodb.AttributeValue{
M: map[string]*dynamodb.AttributeValue{
"Value3": {N: aws.String("0")},
},
},
actual: &testOmitEmptyStruct{},
expected: testOmitEmptyStruct{Value: "", Value2: nil, Value3: 0},
},
18: { // aliased type
in: &dynamodb.AttributeValue{
M: map[string]*dynamodb.AttributeValue{
"Value": {S: aws.String("123")},
"Value2": {N: aws.String("123")},
"Value3": {M: map[string]*dynamodb.AttributeValue{
"Key": {N: aws.String("321")},
}},
"Value4": {L: []*dynamodb.AttributeValue{
{S: aws.String("1")},
{S: aws.String("2")},
{S: aws.String("3")},
}},
"Value5": {B: []byte{0, 1, 2}},
"Value6": {L: []*dynamodb.AttributeValue{
{N: aws.String("1")},
{N: aws.String("2")},
{N: aws.String("3")},
}},
"Value7": {L: []*dynamodb.AttributeValue{
{S: aws.String("1")},
{S: aws.String("2")},
{S: aws.String("3")},
}},
"Value8": {BS: [][]byte{
{0, 1, 2}, {3, 4, 5},
}},
"Value9": {NS: []*string{
aws.String("1"),
aws.String("2"),
aws.String("3"),
}},
"Value10": {SS: []*string{
aws.String("1"),
aws.String("2"),
aws.String("3"),
}},
"Value11": {L: []*dynamodb.AttributeValue{
{N: aws.String("1")},
{N: aws.String("2")},
{N: aws.String("3")},
}},
"Value12": {L: []*dynamodb.AttributeValue{
{S: aws.String("1")},
{S: aws.String("2")},
{S: aws.String("3")},
}},
"Value13": {BOOL: aws.Bool(true)},
"Value14": {L: []*dynamodb.AttributeValue{
{BOOL: aws.Bool(true)},
{BOOL: aws.Bool(false)},
{BOOL: aws.Bool(true)},
}},
"Value15": {M: map[string]*dynamodb.AttributeValue{
"TestKey": {S: aws.String("TestElement")},
}},
},
},
actual: &testAliasedStruct{},
expected: testAliasedStruct{
Value: "123", Value2: 123,
Value3: testAliasedMap{
"Key": 321,
},
Value4: testAliasedSlice{"1", "2", "3"},
Value5: testAliasedByteSlice{0, 1, 2},
Value6: []testAliasedInt{1, 2, 3},
Value7: []testAliasedString{"1", "2", "3"},
Value8: []testAliasedByteSlice{
{0, 1, 2},
{3, 4, 5},
},
Value9: []testAliasedInt{1, 2, 3},
Value10: []testAliasedString{"1", "2", "3"},
Value11: testAliasedIntSlice{1, 2, 3},
Value12: testAliasedStringSlice{"1", "2", "3"},
Value13: true,
Value14: testAliasedBoolSlice{true, false, true},
Value15: map[testAliasedString]string{
"TestKey": "TestElement",
},
},
},
19: {
in: &dynamodb.AttributeValue{N: aws.String("123")},
actual: new(testNamedPointer),
expected: testNamedPointer(aws.Int(123)),
},
20: { // time.Time
in: &dynamodb.AttributeValue{S: aws.String("2016-05-03T17:06:26.209072Z")},
actual: new(time.Time),
expected: testDate,
},
21: { // time.Time List
in: &dynamodb.AttributeValue{L: []*dynamodb.AttributeValue{
{S: aws.String("2016-05-03T17:06:26.209072Z")},
{S: aws.String("2016-05-04T17:06:26.209072Z")},
}},
actual: new([]time.Time),
expected: []time.Time{testDate, testDate.Add(24 * time.Hour)},
},
22: { // time.Time struct
in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{
"abc": {S: aws.String("2016-05-03T17:06:26.209072Z")},
}},
actual: &struct {
Abc time.Time `json:"abc" dynamodbav:"abc"`
}{},
expected: struct {
Abc time.Time `json:"abc" dynamodbav:"abc"`
}{Abc: testDate},
},
23: { // time.Time ptr struct
in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{
"abc": {S: aws.String("2016-05-03T17:06:26.209072Z")},
}},
actual: &struct {
Abc *time.Time `json:"abc" dynamodbav:"abc"`
}{},
expected: struct {
Abc *time.Time `json:"abc" dynamodbav:"abc"`
}{Abc: &testDate},
},
24: { // empty string and NullEmptyString off
encoderOpts: func(encoder *Encoder) {
encoder.NullEmptyString = false
},
in: &dynamodb.AttributeValue{S: aws.String("")},
actual: new(string),
expected: "",
},
25: { // empty ptr string and NullEmptyString off
encoderOpts: func(encoder *Encoder) {
encoder.NullEmptyString = false
},
in: &dynamodb.AttributeValue{S: aws.String("")},
actual: new(*string),
expected: "",
},
26: { // string set with empty string and NullEmptyString off
encoderOpts: func(encoder *Encoder) {
encoder.NullEmptyString = false
},
in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{
"Value": {SS: []*string{aws.String("one"), aws.String(""), aws.String("three")}},
}},
actual: &struct {
Value []string `dynamodbav:",stringset"`
}{},
expected: struct {
Value []string `dynamodbav:",stringset"`
}{
Value: []string{"one", "", "three"},
},
},
27: { // empty byte slice and NullEmptyString off
encoderOpts: func(encoder *Encoder) {
encoder.NullEmptyByteSlice = false
},
in: &dynamodb.AttributeValue{B: []byte{}},
actual: &[]byte{},
expected: []byte{},
},
28: { // byte slice set with empty values and NullEmptyString off
encoderOpts: func(encoder *Encoder) {
encoder.NullEmptyByteSlice = false
},
in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{"Value": {BS: [][]byte{{0x0}, {}, {0x2}}}}},
actual: &struct {
Value [][]byte `dynamodbav:",binaryset"`
}{},
expected: struct {
Value [][]byte `dynamodbav:",binaryset"`
}{
Value: [][]byte{{0x0}, {}, {0x2}},
},
},
29: { // empty byte slice and NullEmptyByteSlice disabled, and omitempty
encoderOpts: func(encoder *Encoder) {
encoder.NullEmptyByteSlice = false
},
in: &dynamodb.AttributeValue{
NULL: aws.Bool(true),
},
actual: &struct {
Value []byte `dynamodbav:",omitempty"`
}{
Value: []byte{},
},
expected: &struct {
Value []byte `dynamodbav:",omitempty"`
}{},
},
}
var sharedListTestCases = []struct {
in []*dynamodb.AttributeValue
actual, expected interface{}
err error
}{
{
in: []*dynamodb.AttributeValue{
{B: []byte{48, 49}},
{BOOL: aws.Bool(true)},
{N: aws.String("123")},
{S: aws.String("123")},
},
actual: func() *[]interface{} {
v := []interface{}{}
return &v
}(),
expected: []interface{}{[]byte{48, 49}, true, 123., "123"},
},
{
in: []*dynamodb.AttributeValue{
{N: aws.String("1")},
{N: aws.String("2")},
{N: aws.String("3")},
},
actual: &[]interface{}{},
expected: []interface{}{1., 2., 3.},
},
}
var sharedMapTestCases = []struct {
in map[string]*dynamodb.AttributeValue
actual, expected interface{}
err error
}{
{
in: map[string]*dynamodb.AttributeValue{
"B": {B: []byte{48, 49}},
"BOOL": {BOOL: aws.Bool(true)},
"N": {N: aws.String("123")},
"S": {S: aws.String("123")},
},
actual: &map[string]interface{}{},
expected: map[string]interface{}{
"B": []byte{48, 49}, "BOOL": true,
"N": 123., "S": "123",
},
},
}
func assertConvertTest(t *testing.T, i int, actual, expected interface{}, err, expectedErr error) {
if expectedErr != nil {
if err != nil {
if e, a := expectedErr, err; !strings.Contains(a.Error(), e.Error()) {
t.Errorf("case %d expect %v, got %v", i, e, a)
}
} else {
t.Fatalf("case %d, expected error, %v", i, expectedErr)
}
} else if err != nil {
t.Fatalf("case %d, expect no error, got %v", i, err)
} else {
if e, a := ptrToValue(expected), ptrToValue(actual); !reflect.DeepEqual(e, a) {
t.Errorf("case %d, expect %v, got %v", i, e, a)
}
}
}
func ptrToValue(in interface{}) interface{} {
v := reflect.ValueOf(in)
if v.Kind() == reflect.Ptr {
v = v.Elem()
}
if !v.IsValid() {
return nil
}
if v.Kind() == reflect.Ptr {
return ptrToValue(v.Interface())
}
return v.Interface()
}
|