I am looking to make a combination JMeter extensions that satisfy a few criteria:
Open files at the beginning of the test plan/thread group. One of the files in an excel file used for input. I have the code to read it using apache poi via including the apache tika jar in the jmeter
lib
folder. The input should then be used in the threads as variables just like it's done with theCSV Data Set Config
test element.Aggregate all results at the end of the test plan/thread group to do calculations on the set of all results.
For #1, Maybe it is possible to do this by extending a config element but I haven't seen how to do this yet. I am also unsure of how to mimic the behaviour of CSV Data Set Config
.
For #2 the purpose is to send the final information extracted from the results to a server so saving results to a file is not optimal. The View Results Tree
or the View Results in Table
elements both create a report of all results so it seems it should be possible to do this.
Edit: How to achieve the above?