-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds a new filter class for the actionable by field.
- Loading branch information
1 parent
3b26a1f
commit a6719ff
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# frozen_string_literal: true | ||
|
||
class Filters::ActionableBy < Filters::Base | ||
def apply | ||
return scope if actionable_by.empty? | ||
|
||
scope.where(actionable_by:) | ||
end | ||
|
||
def actionable_by | ||
Array(params[:actionable_by]).compact_blank | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# frozen_string_literal: true | ||
|
||
require "rails_helper" | ||
|
||
RSpec.describe Filters::ActionableBy do | ||
subject(:filtered_scope) { described_class.apply(scope:, params:) } | ||
|
||
context "the params include a actionable_by" do | ||
let(:params) { { actionable_by: "assessor" } } | ||
let(:scope) { ApplicationForm.all } | ||
|
||
let!(:included) { create(:application_form, :actionable_by_assessor) } | ||
let!(:excluded) { create(:application_form, :actionable_by_admin) } | ||
|
||
it { is_expected.to contain_exactly(included) } | ||
end | ||
|
||
context "the params include multiple actionable_by" do | ||
let(:params) { { actionable_by: %w[assessor nobody] } } | ||
let(:scope) { ApplicationForm.all } | ||
|
||
let!(:included) { create(:application_form, :actionable_by_assessor) } | ||
let!(:excluded) { create(:application_form, :actionable_by_admin) } | ||
|
||
it { is_expected.to contain_exactly(included) } | ||
end | ||
|
||
context "the params don't include reference" do | ||
let(:params) { {} } | ||
let(:scope) { double } | ||
|
||
it { is_expected.to eq(scope) } | ||
end | ||
end |