Skip to content

Commit

Permalink
Merge pull request #2131 from tulibraries/handle-empty-parens
Browse files Browse the repository at this point in the history
Parse out empty params from queries
  • Loading branch information
dkinzer authored Sep 16, 2020
2 parents 0ac64b9 + d9092ea commit a8de368
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/search_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def process_is(value, op)
end

def substitute_special_chars(value, _)
value.gsub(/[:?]/, " ") rescue value
value.gsub(/([:?]|\(\))/, " ") rescue value
end

def no_journals(solr_parameters)
Expand Down
8 changes: 8 additions & 0 deletions spec/models/search_builder_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,14 @@
# @see BL-1301 for ref. Basically Solr treats ? as a special character.
expect(subject.substitute_special_chars("foo bar?", nil)).to eq("foo bar ")
end

it "substitutes empty parens '()' " do
expect(subject.substitute_special_chars("foo () bar", nil)).to eq("foo bar")
end

it "does not substitutes parens containing values " do
expect(subject.substitute_special_chars("foo (bar) baz", nil)).to eq("foo (bar) baz")
end
end

describe "#blacklight_params" do
Expand Down

0 comments on commit a8de368

Please sign in to comment.