Sha256: b0fb19a280be1947dc0541043a23e0c8c81a69618add5d0aa78d2aaa9e6f050a

Contents?: true

Size: 1.25 KB

Versions: 3

Compression:

Stored size: 1.25 KB

Contents

require 'spec_helper'
require_relative 'fixtures'

RSpec.describe Rack::Reducer::Middleware do
  using SpecRefinements
  module AppFactory
    def self.create(key: nil)
      Rack::Builder.new do
        use(
          Rack::Reducer::Middleware,
          dataset: Fixtures::DB[:artists],
          filters: Fixtures::FILTERS,
          key: key
        )
        run ->(env) {  [200, {}, [env.to_json]] }
      end
    end
  end

  describe 'without a key set' do
    let(:app) { AppFactory.create }
    it 'responds with unfiltered data when filter params are empty' do
      get('/') do |res|
        reduction = res.json['rack.reduction']
        expect(reduction.count).to eq(Fixtures::DB[:artists].count)
      end
    end

    it 'filters by a single param, e.g. name' do
      get('/artists?name=Blake') do |res|
        reduction = res.body
        expect(reduction).to include('Blake Mills')
        expect(reduction).to include('James Blake')
        expect(reduction).not_to include('SZA')
      end
    end
  end

  describe 'with a custom key' do
    let(:app) { AppFactory.create(key: 'custom_key') }
    it 'stores reducer data at env[custom_key]' do
      get('/') do |res|
        expect(res.json['custom_key'].class).to eq(Array)
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rack-reducer-2.0.3 spec/middleware_spec.rb
rack-reducer-2.0.2 spec/middleware_spec.rb
rack-reducer-2.0.0 spec/middleware_spec.rb