Sha256: 7e09bf085ef4d039610f9cdccb7c5c07e75133b7b351ce9fce6dcb06c4d0bc68
Contents?: true
Size: 1.89 KB
Versions: 2
Compression:
Stored size: 1.89 KB
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2017 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. require 'gooddata/bricks/brick' require 'gooddata/bricks/bricks' require 'gooddata/bricks/middleware/aws_middleware' describe GoodData::Bricks::AWSMiddleware do it 'should do nothing if the key "aws_client" is not there at all' do middleware = GoodData::Bricks::AWSMiddleware.new(app: ->(_params) { 'Doing nothing' }) middleware.call({}) end it 'should fail gracefully if value aws_client param not present even though the key is' do middleware = GoodData::Bricks::AWSMiddleware.new(app: -> { 'Doing nothing' }) expect do middleware.call('aws_client' => nil) end.to raise_exception 'Unable to connect to AWS. Parameter "aws_client" seems to be empty' end it 'should fail gracefully if value secret_access_key is missing' do middleware = GoodData::Bricks::AWSMiddleware.new(app: -> { 'Doing nothing' }) expect do middleware.call('aws_client' => { 'access_key_id' => 'something' }) end.to raise_exception 'Unable to connect to AWS. Parameter "secret_access_key" is missing' end it 'should fail gracefully if value access_key_id is missing' do middleware = GoodData::Bricks::AWSMiddleware.new(app: -> { 'Doing nothing' }) expect do middleware.call('aws_client' => { 'secret_access_key' => 'something' }) end.to raise_exception 'Unable to connect to AWS. Parameter "access_key_id" is missing' end it "should preapre aws middleware for aws_client param" do middleware = GoodData::Bricks::AWSMiddleware.new(app: lambda do |params| expect(params['aws_client']['s3_client']).to be_kind_of(AWS::S3) end) middleware.call('aws_client' => { 'secret_access_key' => 'something', 'access_key_id' => 'something' }) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gooddata-0.6.51 | spec/unit/bricks/middleware/aws_middelware_spec.rb |
gooddata-0.6.50 | spec/unit/bricks/middleware/aws_middelware_spec.rb |