Merge pull request #2799 from ImFlog/fix_dynamodb_updated_new
Fix UPDATED_NEW return values differences
This commit is contained in:
commit
71bf314a0f
3 changed files with 98 additions and 18 deletions
|
|
@ -3431,13 +3431,18 @@ def test_update_supports_list_append():
|
|||
)
|
||||
|
||||
# Update item using list_append expression
|
||||
client.update_item(
|
||||
updated_item = client.update_item(
|
||||
TableName="TestTable",
|
||||
Key={"SHA256": {"S": "sha-of-file"}},
|
||||
UpdateExpression="SET crontab = list_append(crontab, :i)",
|
||||
ExpressionAttributeValues={":i": {"L": [{"S": "bar2"}]}},
|
||||
ReturnValues="UPDATED_NEW",
|
||||
)
|
||||
|
||||
# Verify updated item is correct
|
||||
updated_item["Attributes"].should.equal(
|
||||
{"crontab": {"L": [{"S": "bar1"}, {"S": "bar2"}]}}
|
||||
)
|
||||
# Verify item is appended to the existing list
|
||||
result = client.get_item(
|
||||
TableName="TestTable", Key={"SHA256": {"S": "sha-of-file"}}
|
||||
|
|
@ -3470,15 +3475,19 @@ def test_update_supports_nested_list_append():
|
|||
)
|
||||
|
||||
# Update item using list_append expression
|
||||
client.update_item(
|
||||
updated_item = client.update_item(
|
||||
TableName="TestTable",
|
||||
Key={"id": {"S": "nested_list_append"}},
|
||||
UpdateExpression="SET a.#b = list_append(a.#b, :i)",
|
||||
ExpressionAttributeValues={":i": {"L": [{"S": "bar2"}]}},
|
||||
ExpressionAttributeNames={"#b": "b"},
|
||||
ReturnValues="UPDATED_NEW",
|
||||
)
|
||||
|
||||
# Verify item is appended to the existing list
|
||||
# Verify updated item is correct
|
||||
updated_item["Attributes"].should.equal(
|
||||
{"a": {"M": {"b": {"L": [{"S": "bar1"}, {"S": "bar2"}]}}}}
|
||||
)
|
||||
result = client.get_item(
|
||||
TableName="TestTable", Key={"id": {"S": "nested_list_append"}}
|
||||
)["Item"]
|
||||
|
|
@ -3510,14 +3519,19 @@ def test_update_supports_multiple_levels_nested_list_append():
|
|||
)
|
||||
|
||||
# Update item using list_append expression
|
||||
client.update_item(
|
||||
updated_item = client.update_item(
|
||||
TableName="TestTable",
|
||||
Key={"id": {"S": "nested_list_append"}},
|
||||
UpdateExpression="SET a.#b.c = list_append(a.#b.#c, :i)",
|
||||
ExpressionAttributeValues={":i": {"L": [{"S": "bar2"}]}},
|
||||
ExpressionAttributeNames={"#b": "b", "#c": "c"},
|
||||
ReturnValues="UPDATED_NEW",
|
||||
)
|
||||
|
||||
# Verify updated item is correct
|
||||
updated_item["Attributes"].should.equal(
|
||||
{"a": {"M": {"b": {"M": {"c": {"L": [{"S": "bar1"}, {"S": "bar2"}]}}}}}}
|
||||
)
|
||||
# Verify item is appended to the existing list
|
||||
result = client.get_item(
|
||||
TableName="TestTable", Key={"id": {"S": "nested_list_append"}}
|
||||
|
|
@ -3551,14 +3565,19 @@ def test_update_supports_nested_list_append_onto_another_list():
|
|||
)
|
||||
|
||||
# Update item using list_append expression
|
||||
client.update_item(
|
||||
updated_item = client.update_item(
|
||||
TableName="TestTable",
|
||||
Key={"id": {"S": "list_append_another"}},
|
||||
UpdateExpression="SET a.#c = list_append(a.#b, :i)",
|
||||
ExpressionAttributeValues={":i": {"L": [{"S": "bar2"}]}},
|
||||
ExpressionAttributeNames={"#b": "b", "#c": "c"},
|
||||
ReturnValues="UPDATED_NEW",
|
||||
)
|
||||
|
||||
# Verify updated item is correct
|
||||
updated_item["Attributes"].should.equal(
|
||||
{"a": {"M": {"c": {"L": [{"S": "bar1"}, {"S": "bar2"}]}}}}
|
||||
)
|
||||
# Verify item is appended to the existing list
|
||||
result = client.get_item(
|
||||
TableName="TestTable", Key={"id": {"S": "list_append_another"}}
|
||||
|
|
@ -3601,13 +3620,18 @@ def test_update_supports_list_append_maps():
|
|||
)
|
||||
|
||||
# Update item using list_append expression
|
||||
client.update_item(
|
||||
updated_item = client.update_item(
|
||||
TableName="TestTable",
|
||||
Key={"id": {"S": "nested_list_append"}, "rid": {"S": "range_key"}},
|
||||
UpdateExpression="SET a = list_append(a, :i)",
|
||||
ExpressionAttributeValues={":i": {"L": [{"M": {"b": {"S": "bar2"}}}]}},
|
||||
ReturnValues="UPDATED_NEW",
|
||||
)
|
||||
|
||||
# Verify updated item is correct
|
||||
updated_item["Attributes"].should.equal(
|
||||
{"a": {"L": [{"M": {"b": {"S": "bar1"}}}, {"M": {"b": {"S": "bar2"}}}]}}
|
||||
)
|
||||
# Verify item is appended to the existing list
|
||||
result = client.query(
|
||||
TableName="TestTable",
|
||||
|
|
@ -3643,11 +3667,18 @@ def test_update_supports_list_append_with_nested_if_not_exists_operation():
|
|||
table = dynamo.Table(table_name)
|
||||
|
||||
table.put_item(Item={"Id": "item-id", "nest1": {"nest2": {}}})
|
||||
table.update_item(
|
||||
updated_item = table.update_item(
|
||||
Key={"Id": "item-id"},
|
||||
UpdateExpression="SET nest1.nest2.event_history = list_append(if_not_exists(nest1.nest2.event_history, :empty_list), :new_value)",
|
||||
ExpressionAttributeValues={":empty_list": [], ":new_value": ["some_value"]},
|
||||
ReturnValues="UPDATED_NEW",
|
||||
)
|
||||
|
||||
# Verify updated item is correct
|
||||
updated_item["Attributes"].should.equal(
|
||||
{"nest1": {"nest2": {"event_history": ["some_value"]}}}
|
||||
)
|
||||
|
||||
table.get_item(Key={"Id": "item-id"})["Item"].should.equal(
|
||||
{"Id": "item-id", "nest1": {"nest2": {"event_history": ["some_value"]}}}
|
||||
)
|
||||
|
|
@ -3668,11 +3699,18 @@ def test_update_supports_list_append_with_nested_if_not_exists_operation_and_pro
|
|||
table = dynamo.Table(table_name)
|
||||
|
||||
table.put_item(Item={"Id": "item-id", "event_history": ["other_value"]})
|
||||
table.update_item(
|
||||
updated_item = table.update_item(
|
||||
Key={"Id": "item-id"},
|
||||
UpdateExpression="SET event_history = list_append(if_not_exists(event_history, :empty_list), :new_value)",
|
||||
ExpressionAttributeValues={":empty_list": [], ":new_value": ["some_value"]},
|
||||
ReturnValues="UPDATED_NEW",
|
||||
)
|
||||
|
||||
# Verify updated item is correct
|
||||
updated_item["Attributes"].should.equal(
|
||||
{"event_history": ["other_value", "some_value"]}
|
||||
)
|
||||
|
||||
table.get_item(Key={"Id": "item-id"})["Item"].should.equal(
|
||||
{"Id": "item-id", "event_history": ["other_value", "some_value"]}
|
||||
)
|
||||
|
|
@ -3759,11 +3797,16 @@ def test_update_nested_item_if_original_value_is_none():
|
|||
)
|
||||
table = dynamo.Table("origin-rbu-dev")
|
||||
table.put_item(Item={"job_id": "a", "job_details": {"job_name": None}})
|
||||
table.update_item(
|
||||
updated_item = table.update_item(
|
||||
Key={"job_id": "a"},
|
||||
UpdateExpression="SET job_details.job_name = :output",
|
||||
ExpressionAttributeValues={":output": "updated"},
|
||||
ReturnValues="UPDATED_NEW",
|
||||
)
|
||||
|
||||
# Verify updated item is correct
|
||||
updated_item["Attributes"].should.equal({"job_details": {"job_name": "updated"}})
|
||||
|
||||
table.scan()["Items"][0]["job_details"]["job_name"].should.equal("updated")
|
||||
|
||||
|
||||
|
|
@ -3779,11 +3822,16 @@ def test_allow_update_to_item_with_different_type():
|
|||
table = dynamo.Table("origin-rbu-dev")
|
||||
table.put_item(Item={"job_id": "a", "job_details": {"job_name": {"nested": "yes"}}})
|
||||
table.put_item(Item={"job_id": "b", "job_details": {"job_name": {"nested": "yes"}}})
|
||||
table.update_item(
|
||||
updated_item = table.update_item(
|
||||
Key={"job_id": "a"},
|
||||
UpdateExpression="SET job_details.job_name = :output",
|
||||
ExpressionAttributeValues={":output": "updated"},
|
||||
ReturnValues="UPDATED_NEW",
|
||||
)
|
||||
|
||||
# Verify updated item is correct
|
||||
updated_item["Attributes"].should.equal({"job_details": {"job_name": "updated"}})
|
||||
|
||||
table.get_item(Key={"job_id": "a"})["Item"]["job_details"][
|
||||
"job_name"
|
||||
].should.be.equal("updated")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue