Sha256: e8500623ca481cde4e3b5bab7f708fc81a7b05891c44890d6d7b5ba456ec51d7

Contents?: true

Size: 1.45 KB

Versions: 5

Compression:

Stored size: 1.45 KB

Contents

require File.expand_path("../base", __FILE__)
require "support/matchers/have_color"

describe "vagrant and color output" do
  include_context "acceptance"

  # This is a check to see if the `expect` program is installed on this
  # computer. Some tests require this and if this doesn't exist then the
  # test itself will be skipped.
  def self.has_expect?
    `which expect`
    $?.success?
  end

  it "outputs color if there is a TTY", :if => has_expect? do
    environment.workdir.join("color.exp").open("w+") do |f|
      f.puts(<<-SCRIPT)
spawn #{environment.replace_command("vagrant")} status
expect default {}
SCRIPT
    end

    result = execute("expect", "color.exp")
    result.stdout.should have_color
  end

  it "doesn't output color if there is a TTY but --no-color is present", :if => has_expect? do
    environment.workdir.join("color.exp").open("w+") do |f|
      f.puts(<<-SCRIPT)
spawn #{environment.replace_command("vagrant")} status --no-color
expect default {}
SCRIPT
    end

    result = execute("expect", "color.exp")
    result.stdout.should_not have_color
  end

  it "doesn't output color in the absense of a TTY" do
    # This should always output an error, which on a TTY would
    # output color. We check that this doesn't output color.
    # If `vagrant status` itself is broken, another acceptance test
    # should catch that. We just assume it works here.
    result = execute("vagrant", "status")
    result.stdout.should_not have_color
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
vagrantup-0.8.9 test/acceptance/vagrant_test.rb
vagrantup-0.8.8 test/acceptance/vagrant_test.rb
vagrantup-0.8.10 test/acceptance/vagrant_test.rb
vagrant-0.8.10 test/acceptance/vagrant_test.rb
vagrant-0.8.8 test/acceptance/vagrant_test.rb