2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2013-07-23 17:58:26 -04:00
|
|
|
|
2013-09-10 21:21:16 -04:00
|
|
|
describe UserHistory do
|
2014-02-28 16:30:45 -05:00
|
|
|
|
2016-01-08 05:53:52 -05:00
|
|
|
describe '#actions' do
|
|
|
|
context "verify enum sequence" do
|
|
|
|
before do
|
|
|
|
@actions = UserHistory.actions
|
|
|
|
end
|
|
|
|
|
|
|
|
it "'delete_user' should be at 1st position" do
|
|
|
|
expect(@actions[:delete_user]).to eq(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "'change_site_text' should be at 29th position" do
|
|
|
|
expect(@actions[:change_site_text]).to eq(29)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-28 16:30:45 -05:00
|
|
|
describe '#staff_action_records' do
|
|
|
|
context "with some records" do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:admin) { Fabricate(:admin) }
|
2019-04-10 08:53:17 -04:00
|
|
|
let(:custom_type) { 'confirmed_ham' }
|
|
|
|
|
2014-02-28 16:30:45 -05:00
|
|
|
before do
|
2017-07-27 21:20:09 -04:00
|
|
|
@change_site_setting = UserHistory.create!(action: UserHistory.actions[:change_site_setting], subject: "title", previous_value: "Old", new_value: "New")
|
|
|
|
@change_trust_level = UserHistory.create!(action: UserHistory.actions[:change_trust_level], target_user_id: Fabricate(:user).id, details: "stuff happened")
|
2019-04-10 08:53:17 -04:00
|
|
|
@custom_history = StaffActionLogger.new(admin).log_custom('confirmed_ham', admin_only: true)
|
2014-02-28 16:30:45 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns all records for admins" do
|
2019-04-10 08:53:17 -04:00
|
|
|
records = described_class.staff_action_records(admin).to_a
|
|
|
|
expect(records.size).to eq(3)
|
2014-02-28 16:30:45 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't return records to moderators that only admins should see" do
|
|
|
|
records = described_class.staff_action_records(Fabricate(:moderator)).to_a
|
2019-04-10 08:53:17 -04:00
|
|
|
expect(records).not_to include([@change_site_setting])
|
2014-02-28 16:30:45 -05:00
|
|
|
end
|
2019-03-27 16:29:15 -04:00
|
|
|
|
|
|
|
it 'filters by action' do
|
2019-04-10 08:53:17 -04:00
|
|
|
records = described_class.staff_action_records(admin, action_id: @change_site_setting.action_before_type_cast).to_a
|
2019-03-27 16:29:15 -04:00
|
|
|
expect(records.size).to eq(1)
|
|
|
|
expect(records.first).to eq(@change_site_setting)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'filters by action_name' do
|
2019-04-10 08:53:17 -04:00
|
|
|
records = described_class.staff_action_records(admin, action_name: "change_site_setting").to_a
|
2019-03-27 16:29:15 -04:00
|
|
|
expect(records.size).to eq(1)
|
|
|
|
expect(records.first).to eq(@change_site_setting)
|
|
|
|
end
|
2019-04-10 08:53:17 -04:00
|
|
|
|
|
|
|
it 'Uses action_name as custom_type when searching for custom_staff logs' do
|
|
|
|
records = described_class.staff_action_records(
|
|
|
|
admin, action_name: custom_type, action_id: described_class.actions[:custom_staff]
|
|
|
|
).to_a
|
|
|
|
|
|
|
|
expect(records.size).to eq(1)
|
|
|
|
expect(records.first).to eq(@custom_history)
|
|
|
|
end
|
2014-02-28 16:30:45 -05:00
|
|
|
end
|
|
|
|
end
|
2013-07-23 17:58:26 -04:00
|
|
|
end
|