mirror of
https://github.com/inspec/inspec
synced 2024-11-27 23:20:33 +00:00
60 lines
1.9 KiB
Ruby
60 lines
1.9 KiB
Ruby
|
# author: Simon Varlow
|
||
|
require 'aws-sdk'
|
||
|
require 'helper'
|
||
|
|
||
|
require 'aws_iam_user'
|
||
|
|
||
|
class AwsIamUserTest < Minitest::Test
|
||
|
Username = "test"
|
||
|
|
||
|
def setup
|
||
|
@mockConn = Minitest::Mock.new
|
||
|
@mockUser = Minitest::Mock.new
|
||
|
@mockResource = Minitest::Mock.new
|
||
|
@mockProfile = Minitest::Mock.new
|
||
|
|
||
|
@mockConn.expect :iam_resource, @mockResource
|
||
|
@mockResource.expect :user, @mockUser, [String]
|
||
|
end
|
||
|
|
||
|
def test_that_MFA_enable_returns_true_if_MFA_Enabled
|
||
|
@mockUser.expect :mfa_devices, ["test"]
|
||
|
assert AwsIamUser.new(Username, @mockConn).has_mfa_enabled?
|
||
|
end
|
||
|
|
||
|
def test_that_MFA_enable_returns_false_if_MFA_is_not_Enabled
|
||
|
@mockUser.expect :mfa_devices, []
|
||
|
assert !AwsIamUser.new(Username, @mockConn).has_mfa_enabled?
|
||
|
end
|
||
|
|
||
|
def test_that_console_Password_returns_true_if_console_Password_has_been_set
|
||
|
@mockUser.expect :login_profile, @mockProfile
|
||
|
@mockProfile.expect :create_date, "test"
|
||
|
assert AwsIamUser.new(Username, @mockConn).has_console_password?
|
||
|
end
|
||
|
|
||
|
def test_that_console_Password_returns_false_if_console_Password_has_not_been_set
|
||
|
@mockUser.expect :login_profile, @mockProfile
|
||
|
@mockProfile.expect :create_date, nil
|
||
|
assert !AwsIamUser.new(Username, @mockConn).has_console_password?
|
||
|
end
|
||
|
|
||
|
def test_that_console_Password_returns_false_if_console_Password_throws_no_such_entity
|
||
|
@mockUser.expect :login_profile, @mockProfile
|
||
|
@mockProfile.expect :create_date, nil do |args|
|
||
|
raise Aws::IAM::Errors::NoSuchEntity.new nil, nil
|
||
|
end
|
||
|
assert !AwsIamUser.new(Username, @mockConn).has_console_password?
|
||
|
end
|
||
|
|
||
|
def test_that_console_Password_throws_if_console_Password_throws_not_no_such_entity
|
||
|
@mockUser.expect :login_profile, @mockProfile
|
||
|
@mockProfile.expect :create_date, nil do |args|
|
||
|
raise ArgumentError
|
||
|
end
|
||
|
|
||
|
assert_raises ArgumentError do
|
||
|
AwsIamUser.new(Username, @mockConn).has_console_password?
|
||
|
end
|
||
|
end
|
||
|
end
|