2015-10-11 17:41:23 +08:00
|
|
|
require 'rails_helper'
|
2013-07-24 05:58:26 +08:00
|
|
|
|
2013-09-11 09:21:16 +08:00
|
|
|
describe UserHistory do
|
2014-03-01 05:30:45 +08:00
|
|
|
|
2016-01-08 18:53:52 +08: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-03-01 05:30:45 +08:00
|
|
|
describe '#staff_action_records' do
|
|
|
|
context "with some records" do
|
|
|
|
before do
|
2017-07-28 09:20:09 +08: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")
|
2014-03-01 05:30:45 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns all records for admins" do
|
|
|
|
records = described_class.staff_action_records(Fabricate(:admin)).to_a
|
2014-12-31 22:55:03 +08:00
|
|
|
expect(records.size).to eq(2)
|
2014-03-01 05:30:45 +08: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
|
2014-12-31 22:55:03 +08:00
|
|
|
expect(records).to eq([@change_trust_level])
|
2014-03-01 05:30:45 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-24 05:58:26 +08:00
|
|
|
end
|