mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -06:00
144 lines
3.9 KiB
Ruby
144 lines
3.9 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe SearchLog, type: :model do
|
|
|
|
describe ".log" do
|
|
|
|
context "when anonymous" do
|
|
it "logs and updates the search" do
|
|
Timecop.freeze do
|
|
action, log_id = SearchLog.log(
|
|
term: 'jabba',
|
|
search_type: :header,
|
|
ip_address: '192.168.0.33'
|
|
)
|
|
expect(action).to eq(:created)
|
|
log = SearchLog.find(log_id)
|
|
expect(log.term).to eq('jabba')
|
|
expect(log.search_type).to eq(SearchLog.search_types[:header])
|
|
expect(log.ip_address).to eq('192.168.0.33')
|
|
|
|
action, updated_log_id = SearchLog.log(
|
|
term: 'jabba the hut',
|
|
search_type: :header,
|
|
ip_address: '192.168.0.33'
|
|
)
|
|
expect(action).to eq(:updated)
|
|
expect(updated_log_id).to eq(log_id)
|
|
end
|
|
end
|
|
|
|
it "creates a new search with a different prefix" do
|
|
Timecop.freeze do
|
|
action, _ = SearchLog.log(
|
|
term: 'darth',
|
|
search_type: :header,
|
|
ip_address: '127.0.0.1'
|
|
)
|
|
expect(action).to eq(:created)
|
|
|
|
action, _ = SearchLog.log(
|
|
term: 'anakin',
|
|
search_type: :header,
|
|
ip_address: '127.0.0.1'
|
|
)
|
|
expect(action).to eq(:created)
|
|
end
|
|
end
|
|
|
|
it "creates a new search with a different ip" do
|
|
Timecop.freeze do
|
|
action, _ = SearchLog.log(
|
|
term: 'darth',
|
|
search_type: :header,
|
|
ip_address: '127.0.0.1'
|
|
)
|
|
expect(action).to eq(:created)
|
|
|
|
action, _ = SearchLog.log(
|
|
term: 'darth',
|
|
search_type: :header,
|
|
ip_address: '127.0.0.2'
|
|
)
|
|
expect(action).to eq(:created)
|
|
end
|
|
end
|
|
end
|
|
|
|
context "when logged in" do
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
it "logs and updates the search" do
|
|
Timecop.freeze do
|
|
action, log_id = SearchLog.log(
|
|
term: 'hello',
|
|
search_type: :full_page,
|
|
ip_address: '192.168.0.1',
|
|
user_id: user.id
|
|
)
|
|
expect(action).to eq(:created)
|
|
log = SearchLog.find(log_id)
|
|
expect(log.term).to eq('hello')
|
|
expect(log.search_type).to eq(SearchLog.search_types[:full_page])
|
|
expect(log.ip_address).to eq('192.168.0.1')
|
|
expect(log.user_id).to eq(user.id)
|
|
|
|
action, updated_log_id = SearchLog.log(
|
|
term: 'hello dolly',
|
|
search_type: :header,
|
|
ip_address: '192.168.0.33',
|
|
user_id: user.id
|
|
)
|
|
expect(action).to eq(:updated)
|
|
expect(updated_log_id).to eq(log_id)
|
|
end
|
|
end
|
|
|
|
it "logs again if time has passed" do
|
|
Timecop.freeze(10.minutes.ago) do
|
|
action, _ = SearchLog.log(
|
|
term: 'hello',
|
|
search_type: :full_page,
|
|
ip_address: '192.168.0.1',
|
|
user_id: user.id
|
|
)
|
|
expect(action).to eq(:created)
|
|
end
|
|
|
|
Timecop.freeze do
|
|
action, _ = SearchLog.log(
|
|
term: 'hello',
|
|
search_type: :full_page,
|
|
ip_address: '192.168.0.1',
|
|
user_id: user.id
|
|
)
|
|
expect(action).to eq(:created)
|
|
end
|
|
end
|
|
|
|
it "logs again with a different user" do
|
|
Timecop.freeze do
|
|
action, _ = SearchLog.log(
|
|
term: 'hello',
|
|
search_type: :full_page,
|
|
ip_address: '192.168.0.1',
|
|
user_id: user.id
|
|
)
|
|
expect(action).to eq(:created)
|
|
|
|
action, _ = SearchLog.log(
|
|
term: 'hello dolly',
|
|
search_type: :full_page,
|
|
ip_address: '192.168.0.1',
|
|
user_id: Fabricate(:user).id
|
|
)
|
|
expect(action).to eq(:created)
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|