mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
4ea21fa2d0
This change both speeds up specs (less strings to allocate) and helps catch cases where methods in Discourse are mutating inputs. Overall we will be migrating everything to use #frozen_string_literal: true it will take a while, but this is the first and safest move in this direction
76 lines
1.7 KiB
Ruby
76 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
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
|