Sha256: 6eecfdb311a072779b28b0533b12801fa4c6d32de92f4ee9ae5a94fb256b6c4a

Contents?: true

Size: 1.95 KB

Versions: 55

Compression:

Stored size: 1.95 KB

Contents

Shindo.tests('AWS::IAM | user requests', ['aws']) do

  Fog::AWS[:iam].create_group('fog_user_tests')

  tests('success') do

    @user_format = {
      'User' => {
        'Arn'        => String,
        'Path'       => String,
        'UserId'     => String,
        'UserName'   => String,
        'CreateDate' => Time
      },
      'RequestId' => String
    }

    tests("#create_user('fog_user')").formats(@user_format) do
      Fog::AWS[:iam].create_user('fog_user').body
    end

    @users_format = {
      'Users' => [{
        'Arn'        => String,
        'Path'       => String,
        'UserId'     => String,
        'UserName'   => String,
        'CreateDate' => Time
      }],
      'IsTruncated' => Fog::Boolean,
      'RequestId'   => String
    }

    tests("#list_users").formats(@users_format) do
      Fog::AWS[:iam].list_users.body
    end

    tests("#get_user").formats(@user_format) do
      Fog::AWS[:iam].get_user('fog_user').body
    end

    tests("#add_user_to_group('fog_user_tests', 'fog_user')").formats(AWS::IAM::Formats::BASIC) do
      Fog::AWS[:iam].add_user_to_group('fog_user_tests', 'fog_user').body
    end

    @groups_format = {
      'GroupsForUser' => [{
        'Arn'       => String,
        'GroupId'   => String,
        'GroupName' => String,
        'Path'      => String
      }],
      'IsTruncated' => Fog::Boolean,
      'RequestId'   => String
    }

    tests("#list_groups_for_user('fog_user')").formats(@groups_format) do
      Fog::AWS[:iam].list_groups_for_user('fog_user').body
    end

    tests("#remove_user_from_group('fog_user_tests', 'fog_user')").formats(AWS::IAM::Formats::BASIC) do
      Fog::AWS[:iam].remove_user_from_group('fog_user_tests', 'fog_user').body
    end

    tests("#delete_user('fog_user')").formats(AWS::IAM::Formats::BASIC) do
      Fog::AWS[:iam].delete_user('fog_user').body
    end


  end

  tests('failure') do
    test('failing conditions')
  end

  Fog::AWS[:iam].delete_group('fog_user_tests')

end

Version data entries

55 entries across 55 versions & 3 rubygems

Version Path
fog-maestrodev-1.18.0.20131209090811 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131206115947 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131205181604 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131127194823 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131126183714 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131126122111 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131125111730 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131125083406 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131123105121 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131122203507 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131121075022 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131118164830 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131115184302 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131114200144 tests/aws/requests/iam/user_tests.rb
gapinc-fog-1.12.1.2.1 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131112185232 tests/aws/requests/iam/user_tests.rb
fog-maestrodev-1.18.0.20131111203459 tests/aws/requests/iam/user_tests.rb
fog-1.18.0 tests/aws/requests/iam/user_tests.rb
fog-1.17.0 tests/aws/requests/iam/user_tests.rb
fog-1.16.0 tests/aws/requests/iam/user_tests.rb