====== Footprints Load Testing Application ====== Author: Sophie Renshaw The footprints load testing tool was developed as a mean of load testing the Errigal Footprints component. ===== Getting Started ===== The footprints load testing tool is stored in bitbucket: [[https://bitbucket.org/errigal/footprints-load-testing/src/master/]] Clone the repo and open locally using IDEA. All settings for the tool are stored in the TestingConfig.groovy file. Any changes that need to be made can be made in here, i.e database connections, ticket query, email configurations etc: class TestingConfig { //Number of emails to send static int emailCount = 100 static boolean correctEmailFormat = true //Database Connection static String hostIp = "nvqadb2.ckpotpvjjxpn.us-east-1.rds.amazonaws.com" static String databaseName = "ticketer" static String dbUsername = " To run the load testing tool, run the Main.groovy class. The load testing tool logs, footprints logs, ticketer logs, emails and individual tickets should be checked to verify that all functionality is working as intended.