discourse/spec/requests/admin/search_logs_spec.rb
Daniel Waterworth 6e161d3e75
DEV: Allow fab! without block (#24314)
The most common thing that we do with fab! is:

    fab!(:thing) { Fabricate(:thing) }

This commit adds a shorthand for this which is just simply:

    fab!(:thing)

i.e. If you omit the block, then, by default, you'll get a `Fabricate`d object using the fabricator of the same name.
2023-11-09 16:47:59 -06:00

87 lines
2.2 KiB
Ruby

# frozen_string_literal: true
RSpec.describe Admin::SearchLogsController do
fab!(:admin)
fab!(:moderator)
fab!(:user)
before { SearchLog.log(term: "ruby", search_type: :header, ip_address: "127.0.0.1") }
after { SearchLog.clear_debounce_cache! }
describe "#index" do
shared_examples "search logs accessible" do
it "returns search logs" do
get "/admin/logs/search_logs.json"
expect(response.status).to eq(200)
json = response.parsed_body
expect(json[0]["term"]).to eq("ruby")
expect(json[0]["searches"]).to eq(1)
expect(json[0]["ctr"]).to eq(0)
end
end
context "when logged in as an admin" do
before { sign_in(admin) }
include_examples "search logs accessible"
end
context "when logged in as a moderator" do
before { sign_in(moderator) }
include_examples "search logs accessible"
end
context "when logged in as a non-staff user" do
before { sign_in(user) }
it "denies access with a 404 response" do
get "/admin/logs/search_logs.json"
expect(response.status).to eq(404)
expect(response.parsed_body["errors"]).to include(I18n.t("not_found"))
end
end
end
describe "#term" do
shared_examples "search log term accessible" do
it "returns search log term" do
get "/admin/logs/search_logs/term.json", params: { term: "ruby" }
expect(response.status).to eq(200)
json = response.parsed_body
expect(json["term"]["type"]).to eq("search_log_term")
expect(json["term"]["search_result"]).to be_present
end
end
context "when logged in as an admin" do
before { sign_in(admin) }
include_examples "search log term accessible"
end
context "when logged in as a moderator" do
before { sign_in(moderator) }
include_examples "search log term accessible"
end
context "when logged in as a non-staff user" do
before { sign_in(user) }
it "denies access with a 404 response" do
get "/admin/logs/search_logs/term.json", params: { term: "ruby" }
expect(response.status).to eq(404)
expect(response.parsed_body["errors"]).to include(I18n.t("not_found"))
end
end
end
end