Sha256: 53bd7f83d6435db560604509d7363a8703fc2fc5b6c57ae43b76b36102102d1e
Contents?: true
Size: 1.26 KB
Versions: 1
Compression:
Stored size: 1.26 KB
Contents
require "thor" require 'praegustator' module Praegustator class CLI < Thor def self.exit_on_failure? true end desc "taste", "test an check against a chef query" long_desc <<-LONGDESC `praeg taste query check` will execute check against node returned by query > $ praeg taste role:web nginx LONGDESC def taste(query,check) config_file_path = Dir.pwd+"/.praegustator.yml" Praegustator.configure_with config_file_path Praegustator::Executor.new.execute_check(query,check) exit 1 if Praegustator.reporter.status == 'failed' end desc "validate", "validate infrastructure by executing checks defined in recipe files" def validate(*recipes) config_file_path = Dir.pwd+"/.praegustator.yml" Praegustator.configure_with config_file_path recipes_dir = Praegustator.config['spec']['recipes_dir'] recipes = Dir[Dir.pwd+"/#{recipes_dir}/**/*_recipe.rb"] if recipes.empty? Praegustator::Executor.new.execute(recipes) Praegustator.reporter.status exit 1 if Praegustator.reporter.status == 'failed' end desc "init" , "setup praegustator" long_desc " > $ praeg setup spec_dir" def init(spec_dir ='spec') Praegustator::Setup.new.init(spec_dir) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
praegustator-0.3.0 | lib/praegustator/cli.rb |