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-0.79.1 lib/awspec/matcher/be_allowed_action.rb
awspec-0.79.0 lib/awspec/matcher/be_allowed_action.rb
awspec-0.78.1 lib/awspec/matcher/be_allowed_action.rb
awspec-0.77.1 lib/awspec/matcher/be_allowed_action.rb
awspec-0.77.0 lib/awspec/matcher/be_allowed_action.rb
awspec-0.76.1 lib/awspec/matcher/be_allowed_action.rb
awspec-0.76.0 lib/awspec/matcher/be_allowed_action.rb
awspec-0.75.2 lib/awspec/matcher/be_allowed_action.rb
awspec-0.75.1 lib/awspec/matcher/be_allowed_action.rb
awspec-0.75.0 lib/awspec/matcher/be_allowed_action.rb
awspec-0.74.1 lib/awspec/matcher/be_allowed_action.rb
awspec-0.74.0 lib/awspec/matcher/be_allowed_action.rb
awspec-0.73.2 lib/awspec/matcher/be_allowed_action.rb
awspec-0.73.1 lib/awspec/matcher/be_allowed_action.rb
awspec-0.73.0 lib/awspec/matcher/be_allowed_action.rb
awspec-0.72.0 lib/awspec/matcher/be_allowed_action.rb
awspec-0.71.0 lib/awspec/matcher/be_allowed_action.rb
awspec-0.70.0 lib/awspec/matcher/be_allowed_action.rb
awspec-0.69.1 lib/awspec/matcher/be_allowed_action.rb
awspec-0.69.0 lib/awspec/matcher/be_allowed_action.rb