Sha256: d2297c87eadfeb76449dafbf629f9c46c5ab04dca35384426800a613b9c43bfd

Contents?: true

Size: 1.79 KB

Versions: 61

Compression:

Stored size: 1.79 KB

Contents

Shindo.tests('Fog::Compute[:aws] | internet_gateway requests', ['aws']) do

  @internet_gateways_format = {
    'internetGatewaySet' => [{
      'internetGatewayId'        => String,
      'attachmentSet'            => Hash,
      'tagSet'                   => Fog::Nullable::Hash,
    }],
    'requestId' => String
  }

  tests('success') do
    Fog::Compute::AWS::Mock.reset if Fog.mocking?
    @vpc=Fog::Compute[:aws].vpcs.create('cidr_block' => '10.0.10.0/24')
    @vpc_id = @vpc.id
    @subnet=Fog::Compute[:aws].subnets.create('vpc_id' => @vpc_id, 'cidr_block' => '10.0.10.0/24')
    @subnet_id = @subnet.subnet_id
    @igw_id = nil

    tests('#create_internet_gateway').formats(@internet_gateways_format) do
      data = Fog::Compute[:aws].create_internet_gateway().body
      @igw_id = data['internetGatewaySet'].first['internetGatewayId']
      data
    end

    tests('#describe_internet_gateways').formats(@internet_gateways_format) do
      Fog::Compute[:aws].describe_internet_gateways.body
    end

    tests('#describe_internet_gateways with tags').formats(@internet_gateways_format) do
      Fog::Compute[:aws].create_tags @igw_id, {"environment" => "production"}
      Fog::Compute[:aws].describe_internet_gateways.body
    end

    tests("#attach_internet_gateway('#{@igw_id}, #{@vpc_id}')").formats(AWS::Compute::Formats::BASIC) do
      Fog::Compute[:aws].attach_internet_gateway(@igw_id, @vpc_id).body
    end

    tests("#detach_internet_gateway('#{@igw_id}, #{@vpc_id}')").formats(AWS::Compute::Formats::BASIC) do
      Fog::Compute[:aws].detach_internet_gateway(@igw_id, @vpc_id).body
    end

    tests("#delete_internet_gateway('#{@igw_id}')").formats(AWS::Compute::Formats::BASIC) do
      Fog::Compute[:aws].delete_internet_gateway(@igw_id).body
    end
    @subnet.destroy
    @vpc.destroy
  end
end

Version data entries

61 entries across 59 versions & 6 rubygems

Version Path
fog-aws-3.1.0 tests/requests/compute/internet_gateway_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-aws-2.0.1/tests/requests/compute/internet_gateway_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-aws-2.0.1/tests/requests/compute/internet_gateway_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-aws-2.0.1/tests/requests/compute/internet_gateway_tests.rb
fog-aws-3.0.0 tests/requests/compute/internet_gateway_tests.rb
fog-aws-2.0.1 tests/requests/compute/internet_gateway_tests.rb
fog-aws-2.0.0 tests/requests/compute/internet_gateway_tests.rb
fog-aws-1.4.1 tests/requests/compute/internet_gateway_tests.rb
fog-aws-1.4.0 tests/requests/compute/internet_gateway_tests.rb
fog-aws-1.3.0 tests/requests/compute/internet_gateway_tests.rb
fog-aws-1.2.1 tests/requests/compute/internet_gateway_tests.rb
fog-aws-1.2.0 tests/requests/compute/internet_gateway_tests.rb
fog-aws-1.1.0 tests/requests/compute/internet_gateway_tests.rb
fog-aws-1.0.0 tests/requests/compute/internet_gateway_tests.rb
fog-aws-0.13.0 tests/requests/compute/internet_gateway_tests.rb
fog-aws-0.12.0 tests/requests/compute/internet_gateway_tests.rb
fog-aws-0.11.0 tests/requests/compute/internet_gateway_tests.rb
fog-aws-0.10.0 tests/requests/compute/internet_gateway_tests.rb
fog-aws-0.9.4 tests/requests/compute/internet_gateway_tests.rb
fog-aws-0.9.3 tests/requests/compute/internet_gateway_tests.rb