Files
danbooru/test/functional/autocomplete_controller_test.rb
evazion cf13ab1540 autocomplete: render html server-side.
Render the HTML for autocomplete results server-side instead of in
Javascript. This is cleaner than building HTML in Javascript, but it may
hurt caching because the HTTP responses are larger.

Fixes #4698: user autocomplete contains links to /posts

Also fixes a bug where tag counts in the autocomplete menu were different
from tag counts displayed elsewhere because of differences in rounding.
2022-08-30 01:26:02 -05:00

78 lines
2.5 KiB
Ruby

require "test_helper"
class AutocompleteControllerTest < ActionDispatch::IntegrationTest
def autocomplete(query, type)
get autocomplete_index_path(search: { query: query, type: type })
assert_response :success
response.parsed_body.css("li").map { |html| html["data-autocomplete-value"] }
end
def assert_autocomplete_equals(expected_value, query, type)
assert_equal(expected_value, autocomplete(query, type))
end
context "Autocomplete controller" do
context "index action" do
setup do
create(:tag, name: "azur_lane")
create(:tag, name: "android")
create(:tag, name: "original")
end
should "work for opensearch queries" do
get autocomplete_index_path(search: { query: "azur", type: "opensearch" }), as: :json
assert_response :success
assert_equal(["azur", ["azur_lane"]], response.parsed_body)
end
should "work for tag queries" do
assert_autocomplete_equals(["azur_lane"], "azur", "tag_query")
assert_autocomplete_equals(["azur_lane"], "AZUR", "tag_query")
assert_autocomplete_equals(["rating:sensitive"], "rating:s", "tag_query")
assert_autocomplete_equals(["rating:sensitive"], "-rating:s", "tag_query")
end
should "work for an aliased tag" do
create(:tag_alias, antecedent_name: "oc", consequent_name: "original")
assert_autocomplete_equals(["original"], "oc", "tag_query")
end
should "work for the user: metatag" do
create(:user, name: "foobar")
assert_autocomplete_equals(["user:foobar"], "user:foo", "tag_query")
end
should "work for the pool: metatag" do
as(create(:user)) { create(:pool, name: "foobar") }
assert_autocomplete_equals(["pool:foobar"], "pool:foo", "tag_query")
end
should "work for a missing type" do
get autocomplete_index_path(search: { query: "azur" }), as: :json
assert_response :success
assert_equal([], response.parsed_body)
end
should "work for the AND and OR keywords" do
assert_autocomplete_equals(["android"], "and", "tag_query")
assert_autocomplete_equals(["original"], "or", "tag_query")
end
should "not set session cookies when the response is publicly cached" do
get autocomplete_index_path(search: { query: "azur", type: "tag_query" })
assert_response :success
assert_equal(true, response.cache_control[:public])
assert_equal({}, response.cookies)
end
end
end
end