Sha256: acb1bca51122335b807e2970eb4609a87748d890402f1f92a9910394add481fe

Contents?: true

Size: 1.27 KB

Versions: 10

Compression:

Stored size: 1.27 KB

Contents

require 'spec_helper'

describe "ey recipes download" do
  given "integration"
  use_git_repo('default')

  before(:each) do
    FileUtils.rm_rf('cookbooks')
  end

  after(:each) do
    # This test creates + destroys the cookbooks/ directory, thus
    # rendering the git repo unsuitable for reuse.
    EY.refresh_git_repo('default')
  end

  def command_to_run(opts)
    cmd = %w[recipes download]
    cmd << "--environment" << opts[:environment] if opts[:environment]
    cmd << "--account"     << opts[:account]     if opts[:account]
    cmd
  end

  def verify_ran(scenario)
    expect(@out).to match(/Recipes downloaded successfully for #{scenario[:environment]}/)
    expect(File.read('cookbooks/README')).to eq("Remove this file to clone an upstream git repository of cookbooks\n")
  end

  include_examples "it takes an environment name and an account name"

  it "fails when cookbooks/ already exists" do
    login_scenario "one app, one environment"
    Dir.mkdir("cookbooks")
    ey %w[recipes download], :expect_failure => true
    expect(@err).to match(/cookbooks.*already exists/i)
  end
end

describe "ey recipes download with an ambiguous git repo" do
  given "integration"
  def command_to_run(_) %w[recipes download] end
  include_examples "it requires an unambiguous git repo"
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
crazy-yard-3.2.2 spec/ey/recipes/download_spec.rb
engineyard-3.2.5 spec/ey/recipes/download_spec.rb
engineyard-3.2.4 spec/ey/recipes/download_spec.rb
engineyard-3.2.3 spec/ey/recipes/download_spec.rb
engineyard-4.0.0.pre3 spec/ey/recipes/download_spec.rb
engineyard-4.0.0.pre2 spec/ey/recipes/download_spec.rb
engineyard-4.0.0.pre1 spec/ey/recipes/download_spec.rb
engineyard-3.2.1 spec/ey/recipes/download_spec.rb
engineyard-3.2.0 spec/ey/recipes/download_spec.rb
engineyard-3.1.3 spec/ey/recipes/download_spec.rb