Variables

Static and dynamic variables are two types of variables used in test cases.

Overview

In Vexdata, variables play a crucial role in enhancing the flexibility and reusability of test cases. By introducing variables, test cases can be designed to adapt dynamically to different data sets or conditions without the need for direct modification of the test case itself.

When to use variables :

  1. To filter data: Example: Let's say I receive data daily into a set of five tables. My test case validates these five tables. Instead of validating the entire dataset, I want to validate only a specific batch of data. In this case, I can use variables to define the criteria for filtering the data, such as a specific date range or a batch identifier.

  2. Migrating the same test cases to different environments: When migrating test cases from the development environment to the QA environment, the database schema name may differ between the two environments. To accommodate this difference, variables can be used to store the schema name dynamically. By using variables, the test cases can be easily adapted to work in different environments without the need for manual modification of the schema references in each test case.

  3. To execute test cases on different set of tables in a same environment. Instead of changing the test case, we can set variables for table name.

Static Variable -

Static variables, in the context of DataQ.io, refer to those that retain their value throughout the execution of a test case. These variables are typically declared and initialized at the beginning of the test case or provided at the beginning of a 'test run,' and they maintain their value until the end.

Example

Variable name : id

Initial value : 20 , The initial value will be used by default. When executing test cases as a batch, user can over write the variables and the new overwritten value will be used for that test run.

For eg - ${YYYY-MM-DD hh-mm-ss} will be replaced by actual date at runtime on daily run.

Dynamic Variable -

On the other hand, dynamic variables within the DataQ.io platform are initialized by executing a SQL query. The query is executed as a first step before executing the test case. The SQL query should produce only one value which is initialized to the parameter.

To use a variable in a test case, we have to rap the variable name in ${variable_name}

Example

Variable name : id5

Query : select max(batch_id) from sales_tbl

To use the variable in the test case, use ${id5}

select max(batch_id) from ${id5}

The variable can be used as a table name, inside a sql query, schema name.

The SQL query should output only one value.

The validate button validates the sql query and ensure the sql query is returning only one value. If the sql query is returning multiple records or multiple columns, the error message is displayed and sql query has to be fixed.

How to create and use Static and Dynamic Variable in a test case

Last updated