Sha256: cb419dd0c3ad9dc71ee56148dfc90defc1d2fd9ba1f306792d39da6a6170ae93

Contents?: true

Size: 1.41 KB

Versions: 83

Compression:

Stored size: 1.41 KB

Contents

Shindo.tests("Fog::AWS[:beanstalk] | templates", ['aws', 'beanstalk']) do

  pending if Fog.mocking?

  @beanstalk = Fog::AWS[:beanstalk]

  @application_name = uniq_id('fog-test-app')
  @template_name = uniq_id('fog-test-template')

  @template_description = 'A nice description'

  @application = @beanstalk.applications.create({:name => @application_name})

  params = {
      :application_name => @application_name,
      :name => @template_name,
      :description => @template_description,
      :solution_stack_name => '32bit Amazon Linux running Tomcat 7'
  }

  collection = @beanstalk.templates

  tests('success') do

    tests("#new(#{params.inspect})").succeeds do
      pending if Fog.mocking?
      collection.new(params)
    end

    tests("#create(#{params.inspect})").succeeds do
      pending if Fog.mocking?
      @instance = collection.create(params)
    end

    tests("#all").succeeds do
      pending if Fog.mocking?
      collection.all
    end

    tests("#get(#{@application_name}, #{@template_name})").succeeds do
      pending if Fog.mocking?
      collection.get(@application_name, @template_name)
    end

    if !Fog.mocking?
      @instance.destroy
    end
  end

  tests('failure') do

    tests("#get(#{@application_name}, #{@template_name})").returns(nil) do
      pending if Fog.mocking?
      collection.get(@application_name, @template_name)
    end

  end

  # delete application
  @application.destroy

end

Version data entries

83 entries across 83 versions & 13 rubygems

Version Path
fog-1.22.0 tests/aws/models/beanstalk/templates_tests.rb
fog-1.21.0 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.20.0.20140305101839 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.20.0.20140305101305 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.19.0.20140212012611 tests/aws/models/beanstalk/templates_tests.rb
fog-1.20.0 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.19.0.20140110004459 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.19.0.20140110003812 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.19.0.20140109202555 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.19.0.20140107192102 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.19.0.20140107142106 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.19.0.20131219203941 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.18.0.20131219193542 tests/aws/models/beanstalk/templates_tests.rb
fog-1.19.0 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.18.0.20131219033443 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.18.0.20131219032002 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.18.0.20131219030716 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.18.0.20131219022322 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.18.0.20131218202447 tests/aws/models/beanstalk/templates_tests.rb
fog-maestrodev-1.18.0.20131209091424 tests/aws/models/beanstalk/templates_tests.rb