mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 16:41:18 +08:00
e219588142
* Introduced fab!, a helper that creates database state for a group It's almost identical to let_it_be, except: 1. It creates a new object for each test by default, 2. You can disable it using PREFABRICATION=0
76 lines
1.7 KiB
Ruby
76 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Admin::SearchLogsController do
|
|
fab!(:admin) { Fabricate(:admin) }
|
|
fab!(: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
|