Test data can be prepared in external sources for data-driven testing. These data sources can be:
- Excel Files
- CSV Files
- ODBC Sources
- SQL / ADO Objects
I will share an example of reading data from excel file for Sample Twitter Project available in SoapUI-Tutorials. Data in the Excel file is formatted as below:
To read data in groovy script, you need to import POI or JXL libraries.Since JXL does not support .xlsx format I am using Apache POI to read data from the excel file. Latest POI JAR files can download from http://poi.apache.org/download.html. Make sure to copy all the JAR files in the lib folder of SmartBear\SoapUI-5.3.0 before moving on!
The groovy script below can be added as first groovy script step in the test case of sample Twitter project. This script
- Reads data from excel file to determine if a test step should be executed or not.
- Determines and copies the test step name to be executed.
- Reads the data for property 'count' from excel file and uses it to set property value at test step level.
- Executes the test step with the modified count property value.
- Reads the test step property to verify that it was modified in step 3.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.File; | |
import java.io.FileInputStream; | |
import org.apache.poi.ss.usermodel.Cell; | |
import org.apache.poi.ss.usermodel.Row; | |
import org.apache.poi.ss.usermodel.Sheet; | |
import org.apache.poi.ss.usermodel.Workbook; | |
import org.apache.poi.xssf.usermodel.XSSFWorkbook; | |
//Create File, workbook and sheet to start reading data | |
File file = new File("C:\\Users\\Documents\\ConditionalExcecution.xlsx") | |
FileInputStream inputStream = new FileInputStream(file) | |
Workbook wb = new XSSFWorkbook(inputStream) | |
Sheet ws = wb.getSheet("sheet1") | |
//get total number of rows excluding the header row | |
int totalNumberOfRows = ws.getLastRowNum()- ws.getFirstRowNum() | |
//loop through all excel rows | |
for (int i=1;i<totalNumberOfRows;i++) | |
{ | |
Row row = ws.getRow(i) | |
// read the status column to execute conditionally | |
Cell column2 = row.getCell(2) | |
String s = column2.getStringCellValue() | |
if (s.equalsIgnoreCase("y")) | |
{ | |
// read the step_name column | |
Cell column1 = row.getCell(1) | |
String stepname = column1.getStringCellValue() | |
// read the property column | |
Cell column3 = row.getCell(3) | |
def propertyValue = column3.getNumericCellValue() | |
//set property of test step | |
testRunner.testCase.testSteps[stepname].setPropertyValue('count',propertyValue.toString()) | |
//Run the test Step | |
testRunner.runTestStepByName(stepname) | |
//get Propety of test step | |
String val = testRunner.testCase.testSteps[stepname].getPropertyValue('count') | |
log.info (stepname +" executed with count = " +val) | |
} | |
} |
The output for above script should like below: