Sha256: 5a089aed2c173c8d09671b540bf551129922bcfae6819bbd51d59b17c2ac5bd0

Contents?: true

Size: 588 Bytes

Versions: 167

Compression:

Stored size: 588 Bytes

Contents

RSpec::Matchers.define :be_allowed_action do |action_name|
  match do |type|
    results = type.select_policy_evaluation_results(type.resource_via_client[:arn],
                                                    action_name,
                                                    @resource_arn,
                                                    @context_entries)
    results.find do |result|
      result.eval_decision == 'allowed'
    end
  end

  chain :resource_arn do |arn|
    @resource_arn = arn
  end

  chain :context_entries do |context|
    @context_entries = context
  end
end

Version data entries

167 entries across 167 versions & 4 rubygems

Version Path
awspec-1.15.1 lib/awspec/matcher/be_allowed_action.rb
awspec-1.15.0 lib/awspec/matcher/be_allowed_action.rb
awspec-1.14.1 lib/awspec/matcher/be_allowed_action.rb
awspec-1.14.0 lib/awspec/matcher/be_allowed_action.rb
awspec-1.13.0 lib/awspec/matcher/be_allowed_action.rb
awspec-1.12.7 lib/awspec/matcher/be_allowed_action.rb
awspec-1.12.6 lib/awspec/matcher/be_allowed_action.rb
awspec-1.12.5 lib/awspec/matcher/be_allowed_action.rb
awspec-1.12.4 lib/awspec/matcher/be_allowed_action.rb
awspec-1.12.3 lib/awspec/matcher/be_allowed_action.rb
awspec-1.12.2 lib/awspec/matcher/be_allowed_action.rb
awspec-1.12.1 lib/awspec/matcher/be_allowed_action.rb
awspec-1.12.0 lib/awspec/matcher/be_allowed_action.rb
awspec-1.11.1 lib/awspec/matcher/be_allowed_action.rb
awspec-1.11.0 lib/awspec/matcher/be_allowed_action.rb
awspec-1.10.0 lib/awspec/matcher/be_allowed_action.rb
awspec-1.9.0 lib/awspec/matcher/be_allowed_action.rb
awspec-1.8.0 lib/awspec/matcher/be_allowed_action.rb
awspec-1.7.0 lib/awspec/matcher/be_allowed_action.rb
awspec-1.6.1 lib/awspec/matcher/be_allowed_action.rb