File: client_tests.rb

package info (click to toggle)
ruby-fog-aws 3.33.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,180 kB
  • sloc: ruby: 75,405; javascript: 14; makefile: 9; sh: 4
file content (25 lines) | stat: -rw-r--r-- 1,076 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Shindo.tests('Fog::Compute[:aws] | account tests', ['aws']) do
  if Fog.mocking?
    tests('check for vpc') do
      tests('supports both vpc and ec2 in compatibility mode').succeeds do
        client = Fog::Compute[:aws]
        client.enable_ec2_classic
        data = Fog::Compute[:aws].describe_account_attributes.body
        data['accountAttributeSet'].any? { |s| [*s["values"]].include?("VPC") && [*s["values"]].include?("EC2") }
      end
      tests('supports VPC in vpc mode').succeeds do
        client = Fog::Compute[:aws]
        client.enable_ec2_classic
        data = Fog::Compute[:aws].describe_account_attributes.body
        data['accountAttributeSet'].any? { |s| [*s["values"]].include?("VPC") }
      end

      tests('does not support VPC and EC2 in vpc mode').succeeds do
        client = Fog::Compute[:aws]
        client.disable_ec2_classic
        data = Fog::Compute[:aws].describe_account_attributes.body
        !data['accountAttributeSet'].any? { |s| [*s["values"]].include?("VPC") && [*s["values"]].include?("EC2") }
      end
    end
  end
end