Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Data Integrity Testing in Software Testing

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Every software development process follows Software Development Life Cycle (SDLC) for the development and delivering a good quality software product. In the testing phase of software development, different types of software testing are performed to check different check parameters or test cases. Where in each software data is an important part as with the help of data a software application performs its operations. Testing allows us to make data actionable. It is a great way of improvement without getting caught up in different reports and issues for doing the previous jobs. So, to check the data integrity of the software application data integrity testing is performed. In this article, we will explore data integrity testing.

So before exploring the concept of data integrity testing, let’s first know what is this data integrity. Actually, this data Integrity refers to the reliability and trustworthiness of data through its life cycle that is stored in the Database. Now let’s know about data integrity testing.

Data Integrity Testing :

  • It is a process in which data is verified in the database whether it is accurate and functions as per requirements. Also used to validate whether data is not modified, or corrupted unexpectedly while accessing the Database.
  • Tests are done regularly to ensure stored data is unchanged and to search for new bugs which may alter the files present in the Database.

Characteristics of Data Integrating Testing :

  1. Data compatibility with the older versions of OS is ensured.
  2. It checks while verifying data in data tables, is altered or not.
  3. It examines all data whether it is successfully saved to the Database or not.
  4. It also includes running test of all data files which includes clip art, templates, etc.
  5. Also helps in analyzing blank values or default values whether they can be retrieved from the Database or not.

Why Database & Database Testing is required?

  • To check whether the map is connected between the front end and back end i.e. Database such that all functionality is done in the front end is reflected in the back end and vice versa.
  • To verify the ACID (Accuracy, Consistency, Integrity, Durability) property of the Database.
  • As in constant increase in the size of data, the complexity of Database increases which evokes relational constraints. So it is recommended to ensure flawless Database Operation.
  • We can ensure data integrity such that changes occurred afar CRUD operation should be reflected correctly whenever data is stored in any form.

How to test Data Integrity :

Data integrity can be examined using the following tests  

  1. Check whether you can add, delete, or modify any data in tables.
  2. Check whether a blank or default value can be retrieved from Database.
  3. Verify that radio buttons show the right set of values.
  4. Check when a set of data is saved successfully in the Database, the truncation must not occur.
  5. Check the compatibility of different versions of OS, old hardware, and interfaces with other software.
  6. Check whether the default value is assigned when user input is not given.

Types of Data Integrity Test :

There are mainly three types of data integrity test

  1. Entity Integrity –
    It examines that each row of a table consists of a non-null primary key where each should be specific. The test may be attained by defining duplicate or null values in test data.
  2. Domain Integrity –
    It checks each set of data values. Column falls with a specific permissible range. Testing may be achieved using null, default, and invalid values.
  3. Referential Integrity –
    It checks the relationship between a foreign key and the primary key of multiple tables. This test is achieved by eliminating parent or child rows in a table.

Verification of Data Integrity in ETC Process, Schemas & BI Report :

1. Verification of source & target data Requirements and Schema execution –
The requirement & Schema level test validate what range of the data components matches with business requirements. This process has the ability to verify-

  1. Data models for the implemented data schema.
  2. Technical requirement for each and every source’s data and its mapping.

Schemas of all data storage utilized in the Database contain data sourcing. Staging, data marts which is essential to examine schema quality, i.e. the ability of a schema to efficiently project information.

2. ETC Source and Data Integrating Test –
This test is used to examine most of the tests and evaluate most Data Integrity. It focuses on-

  1. Check foreign & primary key integrity.
  2. Checks test correctness of data transformation.
  3. Also used to verify all valid & invalid conditions then subsequently we proceed for source and targeted data.

A properly designed ETC system extract data from sources, examine, confirms data, and finally delivers data in a format that enables the developer to build the application.

3. BI Reporting Verification –
They provide an interface that enables interaction with users and the backend. Insights like what context uses which information map, and where interaction exists them is required to create a full suite of test cases. If any measures are defined in a report, then they should be verified as accurate.

My Personal Notes arrow_drop_up
Last Updated : 06 Jul, 2022
Like Article
Save Article
Similar Reads