Class: Beaker::CLI
- Inherits:
-
Object
- Object
- Beaker::CLI
- Defined in:
- lib/beaker/cli.rb
Constant Summary collapse
- VERSION_STRING =
" wWWWw |o o| | O | %s! |(\")| / \\X/ \\ | V | | | | "
Instance Method Summary collapse
-
#execute! ⇒ Object
Run Beaker tests.
-
#initialize ⇒ CLI
constructor
A new instance of CLI.
-
#provision ⇒ Object
Provision, validate and configure all hosts as defined in the hosts file.
-
#run_suite(suite_name, failure_strategy = :slow) ⇒ Object
Run the provided test suite.
Constructor Details
#initialize ⇒ CLI
Returns a new instance of CLI.
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/beaker/cli.rb', line 12 def initialize = Beaker::Options::Parser.new = .parse_args @logger = Beaker::Logger.new() [:logger] = @logger @execute = true if [:help] @logger.notify(.usage) @execute = false return end if [:version] @logger.notify(VERSION_STRING % Beaker::Version::STRING) @execute = false return end @logger.info(.dump) if [:parse_only] @execute = false return end #add additional paths to the LOAD_PATH if not [:load_path].empty? [:load_path].each do |path| $LOAD_PATH << File.(path) end end [:helper].each do |helper| require File.(helper) end end |
Instance Method Details
#execute! ⇒ Object
Run Beaker tests.
-
provision hosts (includes validation and configuration)
-
run pre-suite
-
run tests
-
run post-suite
-
cleanup hosts
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/beaker/cli.rb', line 66 def execute! if !@execute return end begin trap(:INT) do @logger.warn "Interrupt received; exiting..." exit(1) end provision errored = false #pre acceptance phase run_suite(:pre_suite, :fast) #testing phase begin run_suite(:tests) #post acceptance phase rescue => e #post acceptance on failure #run post-suite if we are in fail-slow mode if [:fail_mode] =~ /slow/ run_suite(:post_suite) end raise e else #post acceptance on success run_suite(:post_suite) end #cleanup phase rescue => e #cleanup on error if [:preserve_hosts] =~ /(never)/ @logger.notify "Cleanup: cleaning up after failed run" if @network_manager @network_manager.cleanup end end raise "Failed to execute tests!" else #cleanup on success if [:preserve_hosts] =~ /(never)|(onfail)/ @logger.notify "Cleanup: cleaning up after successful run" if @network_manager @network_manager.cleanup end end end end |
#provision ⇒ Object
Provision, validate and configure all hosts as defined in the hosts file
47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/beaker/cli.rb', line 47 def provision begin @hosts = [] @network_manager = Beaker::NetworkManager.new(, @logger) @hosts = @network_manager.provision @network_manager.validate @network_manager.configure rescue => e report_and_raise(@logger, e, "CLI.provision") end end |
#run_suite(suite_name, failure_strategy = :slow) ⇒ Object
Run the provided test suite
124 125 126 127 128 129 130 131 132 |
# File 'lib/beaker/cli.rb', line 124 def run_suite(suite_name, failure_strategy = :slow) if ([suite_name].empty?) @logger.notify("No tests to run for suite '#{suite_name.to_s}'") return end Beaker::TestSuite.new( suite_name, @hosts, , failure_strategy ).run_and_raise_on_failure end |