/* Examplar - An automation and testing framework. © SURRO INDUSTRIES and Chris Punches, 2017. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ #include #include "src/json/json.h" #include "src/loaders/loaders.h" /* * TODO Logging -- Pump to syslog with clone to STDOUT * TODO Unit Files Directory instead of a single Unit File (optional to user) * TODO Commandline switches */ int main( ) { bool verbose = true; // A Plan is made up of Tasks, and a Suite is made up of Units. // A Plan declares what units are executed and a Suite declares the definitions of those units. Conf configuration = Conf("/home/phanes/development/internal/Examplar/conf/config.json", verbose ); // load the configuration file which contains filepaths to definitions of a plan and definitions of units. std::string definitions_file = configuration.get_units_path(); std::string plan_file = configuration.get_plan_path(); Suite available_definitions; available_definitions.load_units_file( definitions_file, verbose ); Plan plan; plan.load_plan_file( plan_file, verbose ); plan.load_definitions( available_definitions, verbose ); std::cout << "Ready to execute all tasks in Plan." << std::endl; try { plan.execute( verbose ); } catch ( std::exception& e) { std::cerr << e.what() << std::endl; return 1; } return 0; }