mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:58:12 +08:00
8c2fa99f78
Search log terms is a string that can contain characters like `/` which messes with the route.
74 lines
1.7 KiB
Ruby
74 lines
1.7 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Admin::SearchLogsController do
|
|
let(:admin) { Fabricate(:admin) }
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
before do
|
|
SearchLog.log(term: 'ruby', search_type: :header, ip_address: '127.0.0.1')
|
|
end
|
|
|
|
after do
|
|
SearchLog.clear_debounce_cache!
|
|
end
|
|
|
|
context "#index" do
|
|
it "raises an error if you aren't logged in" do
|
|
get '/admin/logs/search_logs.json'
|
|
expect(response.status).to eq(404)
|
|
end
|
|
|
|
it "raises an error if you aren't an admin" do
|
|
sign_in(user)
|
|
get '/admin/logs/search_logs.json'
|
|
expect(response.status).to eq(404)
|
|
end
|
|
|
|
it "should work if you are an admin" do
|
|
sign_in(admin)
|
|
get '/admin/logs/search_logs.json'
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
json = ::JSON.parse(response.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 "#term" do
|
|
it "raises an error if you aren't logged in" do
|
|
get '/admin/logs/search_logs/term.json', params: {
|
|
term: "ruby"
|
|
}
|
|
|
|
expect(response.status).to eq(404)
|
|
end
|
|
|
|
it "raises an error if you aren't an admin" do
|
|
sign_in(user)
|
|
|
|
get '/admin/logs/search_logs/term.json', params: {
|
|
term: "ruby"
|
|
}
|
|
|
|
expect(response.status).to eq(404)
|
|
end
|
|
|
|
it "should work if you are an admin" do
|
|
sign_in(admin)
|
|
|
|
get '/admin/logs/search_logs/term.json', params: {
|
|
term: "ruby"
|
|
}
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
json = ::JSON.parse(response.body)
|
|
expect(json['term']['type']).to eq('search_log_term')
|
|
expect(json['term']['search_result']).to be_present
|
|
end
|
|
end
|
|
end
|