| 
									
										
										
										
											2014-08-27 11:17:06 -04:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							| 
									
										
										
										
											2014-11-27 08:03:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | import boto | 
					
						
							| 
									
										
										
										
											2015-08-01 19:32:33 -04:00
										 |  |  | import boto3 | 
					
						
							|  |  |  | from boto3.dynamodb.conditions import Key | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | import sure  # noqa | 
					
						
							|  |  |  | from freezegun import freeze_time | 
					
						
							|  |  |  | from boto.exception import JSONResponseError | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | from moto import mock_dynamodb2, mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2014-11-27 08:03:47 -05:00
										 |  |  | from tests.helpers import requires_boto_gte | 
					
						
							| 
									
										
										
										
											2016-09-23 16:14:17 +01:00
										 |  |  | import botocore | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 12:59:36 +02:00
										 |  |  | try: | 
					
						
							|  |  |  |     from boto.dynamodb2.fields import HashKey | 
					
						
							|  |  |  |     from boto.dynamodb2.table import Table | 
					
						
							|  |  |  |     from boto.dynamodb2.table import Item | 
					
						
							| 
									
										
										
										
											2015-07-13 10:33:36 -04:00
										 |  |  |     from boto.dynamodb2.exceptions import ConditionalCheckFailedException, ItemNotFound | 
					
						
							| 
									
										
										
										
											2014-01-07 12:59:36 +02:00
										 |  |  | except ImportError: | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def create_table(): | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table = Table.create( | 
					
						
							|  |  |  |         "messages", schema=[HashKey("forum_name")], throughput={"read": 10, "write": 10} | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     return table | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @freeze_time("2012-01-14") | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_create_table(): | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     create_table() | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     expected = { | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         "Table": { | 
					
						
							|  |  |  |             "AttributeDefinitions": [ | 
					
						
							|  |  |  |                 {"AttributeName": "forum_name", "AttributeType": "S"} | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |             ], | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |             "ProvisionedThroughput": { | 
					
						
							|  |  |  |                 "NumberOfDecreasesToday": 0, | 
					
						
							|  |  |  |                 "WriteCapacityUnits": 10, | 
					
						
							|  |  |  |                 "ReadCapacityUnits": 10, | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |             }, | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |             "TableSizeBytes": 0, | 
					
						
							|  |  |  |             "TableName": "messages", | 
					
						
							|  |  |  |             "TableStatus": "ACTIVE", | 
					
						
							|  |  |  |             "TableArn": "arn:aws:dynamodb:us-east-1:123456789011:table/messages", | 
					
						
							|  |  |  |             "KeySchema": [{"KeyType": "HASH", "AttributeName": "forum_name"}], | 
					
						
							|  |  |  |             "ItemCount": 0, | 
					
						
							|  |  |  |             "CreationDateTime": 1326499200.0, | 
					
						
							|  |  |  |             "GlobalSecondaryIndexes": [], | 
					
						
							|  |  |  |             "LocalSecondaryIndexes": [], | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     conn = boto.dynamodb2.connect_to_region( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         "us-east-1", aws_access_key_id="ak", aws_secret_access_key="sk" | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     conn.describe_table("messages").should.equal(expected) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_delete_table(): | 
					
						
							|  |  |  |     create_table() | 
					
						
							|  |  |  |     conn = boto.dynamodb2.layer1.DynamoDBConnection() | 
					
						
							|  |  |  |     conn.list_tables()["TableNames"].should.have.length_of(1) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     conn.delete_table("messages") | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     conn.list_tables()["TableNames"].should.have.length_of(0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     conn.delete_table.when.called_with("messages").should.throw(JSONResponseError) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_update_table_throughput(): | 
					
						
							|  |  |  |     table = create_table() | 
					
						
							|  |  |  |     table.throughput["read"].should.equal(10) | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     table.throughput["write"].should.equal(10) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.update(throughput={"read": 5, "write": 6}) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     table.throughput["read"].should.equal(5) | 
					
						
							|  |  |  |     table.throughput["write"].should.equal(6) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_item_add_and_describe_and_update(): | 
					
						
							|  |  |  |     table = create_table() | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     data = { | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         "forum_name": "LOLCat Forum", | 
					
						
							|  |  |  |         "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |         "SentBy": "User A", | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     table.put_item(data=data) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     returned_item = table.get_item(forum_name="LOLCat Forum") | 
					
						
							|  |  |  |     returned_item.should_not.be.none | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     dict(returned_item).should.equal( | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             "forum_name": "LOLCat Forum", | 
					
						
							|  |  |  |             "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |             "SentBy": "User A", | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     returned_item["SentBy"] = "User B" | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     returned_item.save(overwrite=True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     returned_item = table.get_item(forum_name="LOLCat Forum") | 
					
						
							|  |  |  |     dict(returned_item).should.equal( | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             "forum_name": "LOLCat Forum", | 
					
						
							|  |  |  |             "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |             "SentBy": "User B", | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2015-11-07 16:45:24 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2015-11-07 16:45:24 -05:00
										 |  |  | def test_item_partial_save(): | 
					
						
							|  |  |  |     table = create_table() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     data = { | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         "forum_name": "LOLCat Forum", | 
					
						
							|  |  |  |         "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |         "SentBy": "User A", | 
					
						
							| 
									
										
										
										
											2015-11-07 16:45:24 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     table.put_item(data=data) | 
					
						
							|  |  |  |     returned_item = table.get_item(forum_name="LOLCat Forum") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     returned_item["SentBy"] = "User B" | 
					
						
							| 
									
										
										
										
											2015-11-07 16:45:24 -05:00
										 |  |  |     returned_item.partial_save() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     returned_item = table.get_item(forum_name="LOLCat Forum") | 
					
						
							|  |  |  |     dict(returned_item).should.equal( | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             "forum_name": "LOLCat Forum", | 
					
						
							|  |  |  |             "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |             "SentBy": "User B", | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-11-07 16:45:24 -05:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_item_put_without_table(): | 
					
						
							|  |  |  |     conn = boto.dynamodb2.layer1.DynamoDBConnection() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     conn.put_item.when.called_with( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         table_name="undeclared-table", | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |         item={ | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |             "forum_name": "LOLCat Forum", | 
					
						
							|  |  |  |             "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |             "SentBy": "User A", | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     ).should.throw(JSONResponseError) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_get_item_with_undeclared_table(): | 
					
						
							|  |  |  |     conn = boto.dynamodb2.layer1.DynamoDBConnection() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     conn.get_item.when.called_with( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         table_name="undeclared-table", key={"forum_name": {"S": "LOLCat Forum"}} | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     ).should.throw(JSONResponseError) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-22 21:53:54 -04:00
										 |  |  | @requires_boto_gte("2.30.0") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_delete_item(): | 
					
						
							|  |  |  |     table = create_table() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     item_data = { | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         "forum_name": "LOLCat Forum", | 
					
						
							|  |  |  |         "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |         "SentBy": "User A", | 
					
						
							|  |  |  |         "ReceivedTime": "12/9/2011 11:36:03 PM", | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     item = Item(table, item_data) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     item.save() | 
					
						
							|  |  |  |     table.count().should.equal(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     response = item.delete() | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     response.should.equal(True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     table.count().should.equal(0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-08 17:25:59 -10:00
										 |  |  |     # Deletes are idempotent and 'False' here would imply an error condition | 
					
						
							|  |  |  |     item.delete().should.equal(True) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_delete_item_with_undeclared_table(): | 
					
						
							|  |  |  |     conn = boto.dynamodb2.layer1.DynamoDBConnection() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     conn.delete_item.when.called_with( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         table_name="undeclared-table", key={"forum_name": {"S": "LOLCat Forum"}} | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     ).should.throw(JSONResponseError) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_query(): | 
					
						
							|  |  |  |     table = create_table() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     item_data = { | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         "forum_name": "the-key", | 
					
						
							|  |  |  |         "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |         "SentBy": "User A", | 
					
						
							|  |  |  |         "ReceivedTime": "12/9/2011 11:36:03 PM", | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     item = Item(table, item_data) | 
					
						
							|  |  |  |     item.save(overwrite=True) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     table.count().should.equal(1) | 
					
						
							|  |  |  |     table = Table("messages") | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     results = table.query(forum_name__eq="the-key") | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     sum(1 for _ in results).should.equal(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_query_with_undeclared_table(): | 
					
						
							|  |  |  |     conn = boto.dynamodb2.layer1.DynamoDBConnection() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     conn.query.when.called_with( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         table_name="undeclared-table", | 
					
						
							|  |  |  |         key_conditions={ | 
					
						
							|  |  |  |             "forum_name": { | 
					
						
							|  |  |  |                 "ComparisonOperator": "EQ", | 
					
						
							|  |  |  |                 "AttributeValueList": [{"S": "the-key"}], | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     ).should.throw(JSONResponseError) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_scan(): | 
					
						
							|  |  |  |     table = create_table() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     item_data = { | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |         "SentBy": "User A", | 
					
						
							|  |  |  |         "ReceivedTime": "12/9/2011 11:36:03 PM", | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     item_data["forum_name"] = "the-key" | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     item = Item(table, item_data) | 
					
						
							|  |  |  |     item.save() | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     item["forum_name"] = "the-key2" | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     item.save(overwrite=True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     item_data = { | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |         "SentBy": "User B", | 
					
						
							|  |  |  |         "ReceivedTime": "12/9/2011 11:36:03 PM", | 
					
						
							|  |  |  |         "Ids": set([1, 2, 3]), | 
					
						
							|  |  |  |         "PK": 7, | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     item_data["forum_name"] = "the-key3" | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     item = Item(table, item_data) | 
					
						
							|  |  |  |     item.save() | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     results = table.scan() | 
					
						
							|  |  |  |     sum(1 for _ in results).should.equal(3) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     results = table.scan(SentBy__eq="User B") | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     sum(1 for _ in results).should.equal(1) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     results = table.scan(Body__beginswith="http") | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     sum(1 for _ in results).should.equal(3) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     results = table.scan(Ids__null=False) | 
					
						
							|  |  |  |     sum(1 for _ in results).should.equal(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     results = table.scan(Ids__null=True) | 
					
						
							|  |  |  |     sum(1 for _ in results).should.equal(2) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     results = table.scan(PK__between=[8, 9]) | 
					
						
							|  |  |  |     sum(1 for _ in results).should.equal(0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     results = table.scan(PK__between=[5, 8]) | 
					
						
							|  |  |  |     sum(1 for _ in results).should.equal(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_scan_with_undeclared_table(): | 
					
						
							|  |  |  |     conn = boto.dynamodb2.layer1.DynamoDBConnection() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     conn.scan.when.called_with( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         table_name="undeclared-table", | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |         scan_filter={ | 
					
						
							|  |  |  |             "SentBy": { | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |                 "AttributeValueList": [{"S": "User B"}], | 
					
						
							|  |  |  |                 "ComparisonOperator": "EQ", | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |     ).should.throw(JSONResponseError) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_write_batch(): | 
					
						
							|  |  |  |     table = create_table() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with table.batch_write() as batch: | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         batch.put_item( | 
					
						
							|  |  |  |             data={ | 
					
						
							|  |  |  |                 "forum_name": "the-key", | 
					
						
							|  |  |  |                 "subject": "123", | 
					
						
							|  |  |  |                 "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |                 "SentBy": "User A", | 
					
						
							|  |  |  |                 "ReceivedTime": "12/9/2011 11:36:03 PM", | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  |         batch.put_item( | 
					
						
							|  |  |  |             data={ | 
					
						
							|  |  |  |                 "forum_name": "the-key2", | 
					
						
							|  |  |  |                 "subject": "789", | 
					
						
							|  |  |  |                 "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |                 "SentBy": "User B", | 
					
						
							|  |  |  |                 "ReceivedTime": "12/9/2011 11:36:03 PM", | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     table.count().should.equal(2) | 
					
						
							|  |  |  |     with table.batch_write() as batch: | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         batch.delete_item(forum_name="the-key", subject="789") | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     table.count().should.equal(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_batch_read(): | 
					
						
							|  |  |  |     table = create_table() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     item_data = { | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |         "SentBy": "User A", | 
					
						
							|  |  |  |         "ReceivedTime": "12/9/2011 11:36:03 PM", | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     item_data["forum_name"] = "the-key1" | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     item = Item(table, item_data) | 
					
						
							|  |  |  |     item.save() | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     item = Item(table, item_data) | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     item_data["forum_name"] = "the-key2" | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     item.save(overwrite=True) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     item_data = { | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         "Body": "http://url_to_lolcat.gif", | 
					
						
							|  |  |  |         "SentBy": "User B", | 
					
						
							|  |  |  |         "ReceivedTime": "12/9/2011 11:36:03 PM", | 
					
						
							|  |  |  |         "Ids": set([1, 2, 3]), | 
					
						
							|  |  |  |         "PK": 7, | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     item = Item(table, item_data) | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     item_data["forum_name"] = "another-key" | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     item.save(overwrite=True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     results = table.batch_get( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         keys=[{"forum_name": "the-key1"}, {"forum_name": "another-key"}] | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Iterate through so that batch_item gets called | 
					
						
							|  |  |  |     count = len([x for x in results]) | 
					
						
							|  |  |  |     count.should.equal(2) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_get_key_fields(): | 
					
						
							|  |  |  |     table = create_table() | 
					
						
							|  |  |  |     kf = table.get_key_fields() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     kf[0].should.equal("forum_name") | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 10:33:36 -04:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2015-07-13 10:33:36 -04:00
										 |  |  | def test_get_missing_item(): | 
					
						
							|  |  |  |     table = create_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.get_item.when.called_with(forum_name="missing").should.throw(ItemNotFound) | 
					
						
							| 
									
										
										
										
											2015-07-13 10:33:36 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:56:51 +02:00
										 |  |  | @requires_boto_gte("2.9") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  | def test_get_special_item(): | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table = Table.create( | 
					
						
							|  |  |  |         "messages", | 
					
						
							|  |  |  |         schema=[HashKey("date-joined")], | 
					
						
							|  |  |  |         throughput={"read": 10, "write": 10}, | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     data = {"date-joined": 127549192, "SentBy": "User A"} | 
					
						
							| 
									
										
										
										
											2014-07-22 21:47:56 -04:00
										 |  |  |     table.put_item(data=data) | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     returned_item = table.get_item(**{"date-joined": 127549192}) | 
					
						
							| 
									
										
										
										
											2013-12-05 13:16:56 +02:00
										 |  |  |     dict(returned_item).should.equal(data) | 
					
						
							| 
									
										
										
										
											2014-11-29 22:03:20 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2014-11-29 22:03:20 -05:00
										 |  |  | def test_update_item_remove(): | 
					
						
							| 
									
										
										
										
											2017-10-29 16:25:17 +00:00
										 |  |  |     conn = boto.dynamodb2.connect_to_region("us-east-1") | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table = Table.create("messages", schema=[HashKey("username")]) | 
					
						
							| 
									
										
										
										
											2014-11-29 22:03:20 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     data = {"username": "steve", "SentBy": "User A", "SentTo": "User B"} | 
					
						
							| 
									
										
										
										
											2014-11-29 22:03:20 -05:00
										 |  |  |     table.put_item(data=data) | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     key_map = {"username": {"S": "steve"}} | 
					
						
							| 
									
										
										
										
											2014-11-29 22:03:20 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Then remove the SentBy field | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     conn.update_item("messages", key_map, update_expression="REMOVE SentBy, SentTo") | 
					
						
							| 
									
										
										
										
											2014-11-29 22:03:20 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     returned_item = table.get_item(username="steve") | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     dict(returned_item).should.equal({"username": "steve"}) | 
					
						
							| 
									
										
										
										
											2014-11-29 22:03:20 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 22:38:15 -07:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							|  |  |  | def test_update_item_nested_remove(): | 
					
						
							|  |  |  |     conn = boto.dynamodb2.connect_to_region("us-east-1") | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table = Table.create("messages", schema=[HashKey("username")]) | 
					
						
							| 
									
										
										
										
											2019-06-11 22:38:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     data = {"username": "steve", "Meta": {"FullName": "Steve Urkel"}} | 
					
						
							| 
									
										
										
										
											2019-06-11 22:38:15 -07:00
										 |  |  |     table.put_item(data=data) | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     key_map = {"username": {"S": "steve"}} | 
					
						
							| 
									
										
										
										
											2019-06-11 22:38:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 22:41:56 -07:00
										 |  |  |     # Then remove the Meta.FullName field | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     conn.update_item("messages", key_map, update_expression="REMOVE Meta.FullName") | 
					
						
							| 
									
										
										
										
											2019-06-11 22:38:15 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     returned_item = table.get_item(username="steve") | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     dict(returned_item).should.equal({"username": "steve", "Meta": {}}) | 
					
						
							| 
									
										
										
										
											2019-06-11 22:38:15 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-12 08:06:37 -07:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2019-06-12 08:12:15 -07:00
										 |  |  | def test_update_item_double_nested_remove(): | 
					
						
							| 
									
										
										
										
											2019-06-12 08:06:37 -07:00
										 |  |  |     conn = boto.dynamodb2.connect_to_region("us-east-1") | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table = Table.create("messages", schema=[HashKey("username")]) | 
					
						
							| 
									
										
										
										
											2019-06-12 08:06:37 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     data = {"username": "steve", "Meta": {"Name": {"First": "Steve", "Last": "Urkel"}}} | 
					
						
							| 
									
										
										
										
											2019-06-12 08:06:37 -07:00
										 |  |  |     table.put_item(data=data) | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     key_map = {"username": {"S": "steve"}} | 
					
						
							| 
									
										
										
										
											2019-06-12 08:06:37 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Then remove the Meta.FullName field | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     conn.update_item("messages", key_map, update_expression="REMOVE Meta.Name.First") | 
					
						
							| 
									
										
										
										
											2019-06-12 08:06:37 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     returned_item = table.get_item(username="steve") | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     dict(returned_item).should.equal( | 
					
						
							|  |  |  |         {"username": "steve", "Meta": {"Name": {"Last": "Urkel"}}} | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-12 08:06:37 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2014-11-29 22:03:20 -05:00
										 |  |  | def test_update_item_set(): | 
					
						
							| 
									
										
										
										
											2017-10-29 16:25:17 +00:00
										 |  |  |     conn = boto.dynamodb2.connect_to_region("us-east-1") | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table = Table.create("messages", schema=[HashKey("username")]) | 
					
						
							| 
									
										
										
										
											2014-11-29 22:03:20 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     data = {"username": "steve", "SentBy": "User A"} | 
					
						
							| 
									
										
										
										
											2014-11-29 22:03:20 -05:00
										 |  |  |     table.put_item(data=data) | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     key_map = {"username": {"S": "steve"}} | 
					
						
							| 
									
										
										
										
											2014-11-29 22:03:20 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     conn.update_item( | 
					
						
							|  |  |  |         "messages", key_map, update_expression="SET foo=bar, blah=baz REMOVE SentBy" | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2014-11-29 22:03:20 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     returned_item = table.get_item(username="steve") | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     dict(returned_item).should.equal({"username": "steve", "foo": "bar", "blah": "baz"}) | 
					
						
							| 
									
										
										
										
											2015-07-08 11:55:12 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2015-07-08 11:55:12 -04:00
										 |  |  | def test_failed_overwrite(): | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table = Table.create( | 
					
						
							|  |  |  |         "messages", schema=[HashKey("id")], throughput={"read": 7, "write": 3} | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     data1 = {"id": "123", "data": "678"} | 
					
						
							| 
									
										
										
										
											2015-07-08 11:55:12 -04:00
										 |  |  |     table.put_item(data=data1) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     data2 = {"id": "123", "data": "345"} | 
					
						
							| 
									
										
										
										
											2015-08-01 19:32:33 -04:00
										 |  |  |     table.put_item(data=data2, overwrite=True) | 
					
						
							| 
									
										
										
										
											2015-07-08 11:55:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     data3 = {"id": "123", "data": "812"} | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     table.put_item.when.called_with(data=data3).should.throw( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         ConditionalCheckFailedException | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2015-07-08 11:55:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     returned_item = table.lookup("123") | 
					
						
							| 
									
										
										
										
											2015-07-08 11:55:12 -04:00
										 |  |  |     dict(returned_item).should.equal(data2) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     data4 = {"id": "124", "data": 812} | 
					
						
							| 
									
										
										
										
											2015-07-08 11:55:12 -04:00
										 |  |  |     table.put_item(data=data4) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     returned_item = table.lookup("124") | 
					
						
							| 
									
										
										
										
											2015-07-08 11:55:12 -04:00
										 |  |  |     dict(returned_item).should.equal(data4) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_dynamodb2_deprecated | 
					
						
							| 
									
										
										
										
											2015-07-08 11:55:12 -04:00
										 |  |  | def test_conflicting_writes(): | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table = Table.create("messages", schema=[HashKey("id")]) | 
					
						
							| 
									
										
										
										
											2015-07-08 11:55:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     item_data = {"id": "123", "data": "678"} | 
					
						
							| 
									
										
										
										
											2015-07-08 11:55:12 -04:00
										 |  |  |     item1 = Item(table, item_data) | 
					
						
							|  |  |  |     item2 = Item(table, item_data) | 
					
						
							|  |  |  |     item1.save() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     item1["data"] = "579" | 
					
						
							|  |  |  |     item2["data"] = "912" | 
					
						
							| 
									
										
										
										
											2015-07-08 11:55:12 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     item1.save() | 
					
						
							| 
									
										
										
										
											2015-08-01 19:32:33 -04:00
										 |  |  |     item2.save.when.called_with().should.throw(ConditionalCheckFailedException) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | boto3 | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-05 22:14:23 -04:00
										 |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_boto3_create_table(): | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     dynamodb = boto3.resource("dynamodb", region_name="us-east-1") | 
					
						
							| 
									
										
										
										
											2016-05-05 22:14:23 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     table = dynamodb.create_table( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         TableName="users", | 
					
						
							|  |  |  |         KeySchema=[{"AttributeName": "username", "KeyType": "HASH"}], | 
					
						
							|  |  |  |         AttributeDefinitions=[{"AttributeName": "username", "AttributeType": "S"}], | 
					
						
							|  |  |  |         ProvisionedThroughput={"ReadCapacityUnits": 5, "WriteCapacityUnits": 5}, | 
					
						
							| 
									
										
										
										
											2016-05-05 22:14:23 -04:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.name.should.equal("users") | 
					
						
							| 
									
										
										
										
											2016-05-05 22:14:23 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-01 19:32:33 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-01 11:30:35 -08:00
										 |  |  | def _create_user_table(): | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     dynamodb = boto3.resource("dynamodb", region_name="us-east-1") | 
					
						
							| 
									
										
										
										
											2015-08-01 19:32:33 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     table = dynamodb.create_table( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         TableName="users", | 
					
						
							|  |  |  |         KeySchema=[{"AttributeName": "username", "KeyType": "HASH"}], | 
					
						
							|  |  |  |         AttributeDefinitions=[{"AttributeName": "username", "AttributeType": "S"}], | 
					
						
							|  |  |  |         ProvisionedThroughput={"ReadCapacityUnits": 5, "WriteCapacityUnits": 5}, | 
					
						
							| 
									
										
										
										
											2015-08-01 19:32:33 -04:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     return dynamodb.Table("users") | 
					
						
							| 
									
										
										
										
											2016-03-01 11:30:35 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_boto3_conditions(): | 
					
						
							|  |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2015-08-01 19:32:33 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe"}) | 
					
						
							|  |  |  |     table.put_item(Item={"username": "janedoe"}) | 
					
						
							| 
									
										
										
										
											2015-08-01 19:32:33 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     response = table.query(KeyConditionExpression=Key("username").eq("johndoe")) | 
					
						
							|  |  |  |     response["Count"].should.equal(1) | 
					
						
							|  |  |  |     response["Items"].should.have.length_of(1) | 
					
						
							|  |  |  |     response["Items"][0].should.equal({"username": "johndoe"}) | 
					
						
							| 
									
										
										
										
											2016-03-01 11:30:35 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 16:14:17 +01:00
										 |  |  | @mock_dynamodb2 | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  | def test_boto3_put_item_conditions_pass(): | 
					
						
							|  |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe", "foo": "bar"}) | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  |     table.put_item( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Item={"username": "johndoe", "foo": "baz"}, | 
					
						
							|  |  |  |         Expected={"foo": {"ComparisonOperator": "EQ", "AttributeValueList": ["bar"]}}, | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     final_item = table.get_item(Key={"username": "johndoe"}) | 
					
						
							|  |  |  |     assert dict(final_item)["Item"]["foo"].should.equal("baz") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_boto3_put_item_conditions_pass_because_expect_not_exists_by_compare_to_null(): | 
					
						
							|  |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe", "foo": "bar"}) | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  |     table.put_item( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Item={"username": "johndoe", "foo": "baz"}, | 
					
						
							|  |  |  |         Expected={"whatever": {"ComparisonOperator": "NULL"}}, | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     final_item = table.get_item(Key={"username": "johndoe"}) | 
					
						
							|  |  |  |     assert dict(final_item)["Item"]["foo"].should.equal("baz") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_boto3_put_item_conditions_pass_because_expect_exists_by_compare_to_not_null(): | 
					
						
							|  |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe", "foo": "bar"}) | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  |     table.put_item( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Item={"username": "johndoe", "foo": "baz"}, | 
					
						
							|  |  |  |         Expected={"foo": {"ComparisonOperator": "NOT_NULL"}}, | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     final_item = table.get_item(Key={"username": "johndoe"}) | 
					
						
							|  |  |  |     assert dict(final_item)["Item"]["foo"].should.equal("baz") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_boto3_put_item_conditions_fail(): | 
					
						
							| 
									
										
										
										
											2016-09-23 16:14:17 +01:00
										 |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe", "foo": "bar"}) | 
					
						
							| 
									
										
										
										
											2016-09-23 16:14:17 +01:00
										 |  |  |     table.put_item.when.called_with( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Item={"username": "johndoe", "foo": "baz"}, | 
					
						
							|  |  |  |         Expected={"foo": {"ComparisonOperator": "NE", "AttributeValueList": ["bar"]}}, | 
					
						
							|  |  |  |     ).should.throw(botocore.client.ClientError) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 16:14:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-09 17:32:19 -07:00
										 |  |  | @mock_dynamodb2 | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  | def test_boto3_update_item_conditions_fail(): | 
					
						
							| 
									
										
										
										
											2017-06-09 17:32:19 -07:00
										 |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe", "foo": "baz"}) | 
					
						
							| 
									
										
										
										
											2017-06-09 17:32:19 -07:00
										 |  |  |     table.update_item.when.called_with( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Key={"username": "johndoe"}, | 
					
						
							|  |  |  |         UpdateExpression="SET foo=bar", | 
					
						
							|  |  |  |         Expected={"foo": {"Value": "bar"}}, | 
					
						
							|  |  |  |     ).should.throw(botocore.client.ClientError) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-09 17:32:19 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | @mock_dynamodb2 | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  | def test_boto3_update_item_conditions_fail_because_expect_not_exists(): | 
					
						
							| 
									
										
										
										
											2017-06-09 17:32:19 -07:00
										 |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe", "foo": "baz"}) | 
					
						
							| 
									
										
										
										
											2017-06-09 17:32:19 -07:00
										 |  |  |     table.update_item.when.called_with( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Key={"username": "johndoe"}, | 
					
						
							|  |  |  |         UpdateExpression="SET foo=bar", | 
					
						
							|  |  |  |         Expected={"foo": {"Exists": False}}, | 
					
						
							|  |  |  |     ).should.throw(botocore.client.ClientError) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-09 17:32:19 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_boto3_update_item_conditions_fail_because_expect_not_exists_by_compare_to_null(): | 
					
						
							|  |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe", "foo": "baz"}) | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  |     table.update_item.when.called_with( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Key={"username": "johndoe"}, | 
					
						
							|  |  |  |         UpdateExpression="SET foo=bar", | 
					
						
							|  |  |  |         Expected={"foo": {"ComparisonOperator": "NULL"}}, | 
					
						
							|  |  |  |     ).should.throw(botocore.client.ClientError) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-09 17:32:19 -07:00
										 |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_boto3_update_item_conditions_pass(): | 
					
						
							|  |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe", "foo": "bar"}) | 
					
						
							| 
									
										
										
										
											2017-06-09 17:32:19 -07:00
										 |  |  |     table.update_item( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Key={"username": "johndoe"}, | 
					
						
							|  |  |  |         UpdateExpression="SET foo=baz", | 
					
						
							|  |  |  |         Expected={"foo": {"Value": "bar"}}, | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     returned_item = table.get_item(Key={"username": "johndoe"}) | 
					
						
							|  |  |  |     assert dict(returned_item)["Item"]["foo"].should.equal("baz") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-09 17:32:19 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | @mock_dynamodb2 | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  | def test_boto3_update_item_conditions_pass_because_expect_not_exists(): | 
					
						
							| 
									
										
										
										
											2017-06-09 17:32:19 -07:00
										 |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe", "foo": "bar"}) | 
					
						
							| 
									
										
										
										
											2017-06-09 17:32:19 -07:00
										 |  |  |     table.update_item( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Key={"username": "johndoe"}, | 
					
						
							|  |  |  |         UpdateExpression="SET foo=baz", | 
					
						
							|  |  |  |         Expected={"whatever": {"Exists": False}}, | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     returned_item = table.get_item(Key={"username": "johndoe"}) | 
					
						
							|  |  |  |     assert dict(returned_item)["Item"]["foo"].should.equal("baz") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 16:14:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_boto3_update_item_conditions_pass_because_expect_not_exists_by_compare_to_null(): | 
					
						
							|  |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe", "foo": "bar"}) | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  |     table.update_item( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Key={"username": "johndoe"}, | 
					
						
							|  |  |  |         UpdateExpression="SET foo=baz", | 
					
						
							|  |  |  |         Expected={"whatever": {"ComparisonOperator": "NULL"}}, | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     returned_item = table.get_item(Key={"username": "johndoe"}) | 
					
						
							|  |  |  |     assert dict(returned_item)["Item"]["foo"].should.equal("baz") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_boto3_update_item_conditions_pass_because_expect_exists_by_compare_to_not_null(): | 
					
						
							|  |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe", "foo": "bar"}) | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  |     table.update_item( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Key={"username": "johndoe"}, | 
					
						
							|  |  |  |         UpdateExpression="SET foo=baz", | 
					
						
							|  |  |  |         Expected={"foo": {"ComparisonOperator": "NOT_NULL"}}, | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     returned_item = table.get_item(Key={"username": "johndoe"}) | 
					
						
							|  |  |  |     assert dict(returned_item)["Item"]["foo"].should.equal("baz") | 
					
						
							| 
									
										
										
										
											2018-07-13 19:11:10 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-10 21:39:12 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_boto3_update_settype_item_with_conditions(): | 
					
						
							|  |  |  |     class OrderedSet(set): | 
					
						
							|  |  |  |         """A set with predictable iteration order""" | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-10 21:39:12 +11:00
										 |  |  |         def __init__(self, values): | 
					
						
							|  |  |  |             super(OrderedSet, self).__init__(values) | 
					
						
							|  |  |  |             self.__ordered_values = values | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def __iter__(self): | 
					
						
							|  |  |  |             return iter(self.__ordered_values) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe"}) | 
					
						
							| 
									
										
										
										
											2019-01-10 21:39:12 +11:00
										 |  |  |     table.update_item( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Key={"username": "johndoe"}, | 
					
						
							|  |  |  |         UpdateExpression="SET foo=:new_value", | 
					
						
							|  |  |  |         ExpressionAttributeValues={":new_value": OrderedSet(["hello", "world"])}, | 
					
						
							| 
									
										
										
										
											2019-01-10 21:39:12 +11:00
										 |  |  |     ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     table.update_item( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Key={"username": "johndoe"}, | 
					
						
							|  |  |  |         UpdateExpression="SET foo=:new_value", | 
					
						
							|  |  |  |         ExpressionAttributeValues={":new_value": set(["baz"])}, | 
					
						
							| 
									
										
										
										
											2019-01-10 21:39:12 +11:00
										 |  |  |         Expected={ | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |             "foo": { | 
					
						
							|  |  |  |                 "ComparisonOperator": "EQ", | 
					
						
							|  |  |  |                 "AttributeValueList": [ | 
					
						
							|  |  |  |                     OrderedSet(["world", "hello"])  # Opposite order to original | 
					
						
							| 
									
										
										
										
											2019-01-10 21:39:12 +11:00
										 |  |  |                 ], | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     returned_item = table.get_item(Key={"username": "johndoe"}) | 
					
						
							|  |  |  |     assert dict(returned_item)["Item"]["foo"].should.equal(set(["baz"])) | 
					
						
							| 
									
										
										
										
											2019-01-10 21:39:12 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 16:14:17 +01:00
										 |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_boto3_put_item_conditions_pass(): | 
					
						
							|  |  |  |     table = _create_user_table() | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     table.put_item(Item={"username": "johndoe", "foo": "bar"}) | 
					
						
							| 
									
										
										
										
											2016-09-23 16:14:17 +01:00
										 |  |  |     table.put_item( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         Item={"username": "johndoe", "foo": "baz"}, | 
					
						
							|  |  |  |         Expected={"foo": {"ComparisonOperator": "EQ", "AttributeValueList": ["bar"]}}, | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     returned_item = table.get_item(Key={"username": "johndoe"}) | 
					
						
							|  |  |  |     assert dict(returned_item)["Item"]["foo"].should.equal("baz") | 
					
						
							| 
									
										
										
										
											2016-09-23 16:14:17 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-01 11:30:35 -08:00
										 |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_scan_pagination(): | 
					
						
							|  |  |  |     table = _create_user_table() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     expected_usernames = ["user{0}".format(i) for i in range(10)] | 
					
						
							| 
									
										
										
										
											2016-03-01 11:30:35 -08:00
										 |  |  |     for u in expected_usernames: | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         table.put_item(Item={"username": u}) | 
					
						
							| 
									
										
										
										
											2016-03-01 11:30:35 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     page1 = table.scan(Limit=6) | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     page1["Count"].should.equal(6) | 
					
						
							|  |  |  |     page1["Items"].should.have.length_of(6) | 
					
						
							|  |  |  |     page1.should.have.key("LastEvaluatedKey") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     page2 = table.scan(Limit=6, ExclusiveStartKey=page1["LastEvaluatedKey"]) | 
					
						
							|  |  |  |     page2["Count"].should.equal(4) | 
					
						
							|  |  |  |     page2["Items"].should.have.length_of(4) | 
					
						
							|  |  |  |     page2.should_not.have.key("LastEvaluatedKey") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     results = page1["Items"] + page2["Items"] | 
					
						
							|  |  |  |     usernames = set([r["username"] for r in results]) | 
					
						
							| 
									
										
										
										
											2016-03-01 11:30:35 -08:00
										 |  |  |     usernames.should.equal(set(expected_usernames)) | 
					
						
							| 
									
										
										
										
											2019-05-22 01:45:30 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @mock_dynamodb2 | 
					
						
							|  |  |  | def test_scan_by_index(): | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     dynamodb = boto3.client("dynamodb", region_name="us-east-1") | 
					
						
							| 
									
										
										
										
											2019-05-22 01:45:30 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  |     dynamodb.create_table( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         TableName="test", | 
					
						
							|  |  |  |         KeySchema=[{"AttributeName": "id", "KeyType": "HASH"}], | 
					
						
							| 
									
										
										
										
											2019-05-22 01:45:30 +09:00
										 |  |  |         AttributeDefinitions=[ | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |             {"AttributeName": "id", "AttributeType": "S"}, | 
					
						
							|  |  |  |             {"AttributeName": "gsi_col", "AttributeType": "S"}, | 
					
						
							| 
									
										
										
										
											2019-05-22 01:45:30 +09:00
										 |  |  |         ], | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         ProvisionedThroughput={"ReadCapacityUnits": 1, "WriteCapacityUnits": 1}, | 
					
						
							| 
									
										
										
										
											2019-05-22 01:45:30 +09:00
										 |  |  |         GlobalSecondaryIndexes=[ | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |                 "IndexName": "test_gsi", | 
					
						
							|  |  |  |                 "KeySchema": [{"AttributeName": "gsi_col", "KeyType": "HASH"}], | 
					
						
							|  |  |  |                 "Projection": {"ProjectionType": "ALL"}, | 
					
						
							|  |  |  |                 "ProvisionedThroughput": { | 
					
						
							|  |  |  |                     "ReadCapacityUnits": 1, | 
					
						
							|  |  |  |                     "WriteCapacityUnits": 1, | 
					
						
							| 
									
										
										
										
											2019-05-22 01:45:30 +09:00
										 |  |  |                 }, | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |             } | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2019-05-22 01:45:30 +09:00
										 |  |  |     ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dynamodb.put_item( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         TableName="test", | 
					
						
							|  |  |  |         Item={"id": {"S": "1"}, "col1": {"S": "val1"}, "gsi_col": {"S": "gsi_val1"}}, | 
					
						
							| 
									
										
										
										
											2019-05-22 01:45:30 +09:00
										 |  |  |     ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dynamodb.put_item( | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |         TableName="test", | 
					
						
							|  |  |  |         Item={"id": {"S": "2"}, "col1": {"S": "val2"}, "gsi_col": {"S": "gsi_val2"}}, | 
					
						
							| 
									
										
										
										
											2019-05-22 01:45:30 +09:00
										 |  |  |     ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     dynamodb.put_item(TableName="test", Item={"id": {"S": "3"}, "col1": {"S": "val3"}}) | 
					
						
							| 
									
										
										
										
											2019-05-22 01:45:30 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     res = dynamodb.scan(TableName="test") | 
					
						
							|  |  |  |     assert res["Count"] == 3 | 
					
						
							|  |  |  |     assert len(res["Items"]) == 3 | 
					
						
							| 
									
										
										
										
											2019-05-22 01:45:30 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     res = dynamodb.scan(TableName="test", IndexName="test_gsi") | 
					
						
							|  |  |  |     assert res["Count"] == 2 | 
					
						
							|  |  |  |     assert len(res["Items"]) == 2 | 
					
						
							| 
									
										
										
										
											2019-05-22 01:45:30 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     res = dynamodb.scan(TableName="test", IndexName="test_gsi", Limit=1) | 
					
						
							|  |  |  |     assert res["Count"] == 1 | 
					
						
							|  |  |  |     assert len(res["Items"]) == 1 | 
					
						
							|  |  |  |     last_eval_key = res["LastEvaluatedKey"] | 
					
						
							|  |  |  |     assert last_eval_key["id"]["S"] == "1" | 
					
						
							|  |  |  |     assert last_eval_key["gsi_col"]["S"] == "gsi_val1" |