Sha256: d62ffb1ccbf8a701eea2691541cafa39920ba210875deead25a9ff5e0180e305

Contents?: true

Size: 1.32 KB

Versions: 5

Compression:

Stored size: 1.32 KB

Contents

RSpec.describe FinApps::Middleware::TenantAuthentication do
  let(:valid_tenant_options) { VALID_CREDENTIALS }
  let(:key) { FinApps::Middleware::TenantAuthentication::KEY }

  describe '#call' do
    fake_app = proc {|env| env }

    context 'when company credentials were provided' do
      let(:middleware) { FinApps::Middleware::TenantAuthentication.new fake_app, valid_tenant_options }
      let(:expected_header) { "#{valid_tenant_options[:identifier]}=#{valid_tenant_options[:token]}" }

      context 'when header was not previously set' do
        let(:request_env) { {request_headers: {}} }
        subject(:actual_header) { middleware.call(request_env)[:request_headers][key] }

        it('generates a Tenant Authentication header') { expect(actual_header).to eq(expected_header) }
      end

      context 'when header was previously set' do
        let(:existing_header) { {FinApps::Middleware::TenantAuthentication::KEY => 'foo'} }
        let(:request_env) { {request_headers: existing_header} }
        subject(:actual_header) { middleware.call(request_env)[:request_headers][key] }

        it('does not override existing Tenant Authentication header') { expect(actual_header).to eq('foo') }
        it('does not generate a Tenant Authentication header') { expect(actual_header).to_not eq(expected_header) }
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
finapps-2.0.6 spec/middleware/tenant_authentication_spec.rb
finapps-2.0.5 spec/middleware/tenant_authentication_spec.rb
finapps-2.0.4 spec/middleware/tenant_authentication_spec.rb
finapps-2.0.3 spec/middleware/tenant_authentication_spec.rb
finapps-2.0.2 spec/middleware/tenant_authentication_spec.rb