Dynamo
Type: NoSQL Database
Description: A managed NoSQL database service provided by AWS. It is designed for low-latency, high-performance, and scalable applications. DynamoDB automatically scales based on demand.
How to send the query
Description
<dynamo>
– command which is responsible for sending the queries to Dynamo DB in testing scenarios
Required parameters:
- comment
- alias - unique name of the DB you configured in your integration.xml file
- file - specifies the expected file name
- query - contains the Dynamo DB query
Optional parameters :
- condition - condition according to which this test step will or won't be executed
- threshold - parameter, where the maximum execution time of the command is defined (milliseconds), if the execution time is exceeded, the step will be defined as failed
<dynamo comment="Get all user's from system" alias="ALIAS" file="expected_1.json">
<query>SELECT * FROM t_user</query>
</dynamo>