Sha256: aadc4a930d06b3760ba899d7b9cdc030c08c9f042b1c561adeb6b00d4ed14c85
Contents?: true
Size: 1.5 KB
Versions: 4
Compression:
Stored size: 1.5 KB
Contents
describe Forger::CLI do before(:all) do @args = "--noop" end describe "forger" do it "create" do out = execute("exe/forger create server #{@args}") expect(out).to include("Creating EC2 instance") end it "ERB evaluates dotenv files" do out = execute("exe/forger create server #{@args}") project_name = ENV['CIRCLECI'] ? 'repo' : 'forger' user_data = IO.readlines("/tmp/forger/#{project_name}/user-data.txt") found = !user_data.select { |l| l =~ /test_key: test-key-value/ }.empty? expect(found).to be true end it "ami" do out = execute("exe/forger ami myimage #{@args}") expect(out).to include("Creating EC2 instance") end it "wait ami" do out = execute("exe/forger wait ami myimage") expect(out).to include("Waiting for") end it "clean ami" do out = execute("exe/forger clean ami imagebasename") expect(out).to include("Cleaning out old AMIs") end it "destroy" do out = execute("exe/forger destroy i-123") expect(out).to include("Destroying i-123") end commands = { "am" => "ami", "compile" => "--profile", "create -" => "--profile", "create" => "name", "create name --" => "--profile", } commands.each do |command, expected_word| it "completion #{command}" do out = execute("exe/forger completion #{command}") expect(out).to include(expected_word) # only checking for one word for simplicity end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
forger-3.0.2 | spec/lib/cli_spec.rb |
forger-3.0.1 | spec/lib/cli_spec.rb |
forger-3.0.0 | spec/lib/cli_spec.rb |
forger-2.0.5 | spec/lib/cli_spec.rb |