Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FullTextSearch::IssueQueryAnySearchable module for multi-field AND searches #164

Merged
merged 12 commits into from
Feb 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions init.rb
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ class << Setting
FullTextSearch::TagType
FullTextSearch::Type

if IssueQuery.method_defined?(:sql_for_any_searchable_field)
IssueQuery.prepend(FullTextSearch::Hooks::IssueQueryAnySearchable)
end

# Support plugins
if defined?(WikiExtensionsTagRelation)
# Wiki Extensions tags
Expand Down
10 changes: 10 additions & 0 deletions lib/full_text_search/hooks/issue_query_any_searchable.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module FullTextSearch
module Hooks
module IssueQueryAnySearchable
def sql_for_any_searchable_field(field, operator, value)
# TODO: Implement AND searches across multiple fields.
super(field, operator, value)
end
end
end
end
36 changes: 36 additions & 0 deletions test/unit/full_text_search/issue_query_any_searchable_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
require File.expand_path("../../../test_helper", __FILE__)

module FullTextSearch
class IssueQueryAnySearchableTest < ActiveSupport::TestCase
setup do
unless IssueQuery.method_defined?(:sql_for_any_searchable_field)
skip("Required feature 'sql_for_any_searchable_field' does not exist.")
end
end

def test_or_one_word
Issue.destroy_all
subject_groonga = Issue.generate!(subject: "Groonga")
description_groonga = Issue.generate!(description: "Groonga")
without_groonga = Issue.generate!(subject: "no-keyword",
description: "no-keyword")
journal_groonga = Issue.generate!.journals.create!(notes: "Groonga")
query = IssueQuery.new(
:name => "_",
:filters => {
"any_searchable" => {
:operator => "~",
:values => ["Groonga"]
}
},
:sort_criteria => [["id", "asc"]]
)
expected_issues = [
subject_groonga,
description_groonga,
journal_groonga.issue
]
assert_equal(expected_issues, query.issues)
end
end
end