mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 14:19:49 +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
52 lines
1.3 KiB
Ruby
52 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
require_dependency 'post_locker'
|
|
|
|
describe PostLocker do
|
|
let(:moderator) { Fabricate(:moderator) }
|
|
let(:post) { Fabricate(:post) }
|
|
|
|
it "doesn't allow regular users to lock posts" do
|
|
expect {
|
|
PostLocker.new(post, post.user).lock
|
|
}.to raise_error(Discourse::InvalidAccess)
|
|
|
|
expect(post).not_to be_locked
|
|
expect(post.locked_by_id).to be_blank
|
|
end
|
|
|
|
it "doesn't allow regular users to unlock posts" do
|
|
PostLocker.new(post, moderator).lock
|
|
|
|
expect {
|
|
PostLocker.new(post, post.user).lock
|
|
}.to raise_error(Discourse::InvalidAccess)
|
|
|
|
expect(post).to be_locked
|
|
expect(post.locked_by_id).to eq(moderator.id)
|
|
end
|
|
|
|
it "allows staff to lock and unlock posts" do
|
|
expect(post).not_to be_locked
|
|
expect(post.locked_by_id).to be_blank
|
|
|
|
PostLocker.new(post, moderator).lock
|
|
expect(post).to be_locked
|
|
expect(post.locked_by_id).to eq(moderator.id)
|
|
expect(UserHistory.where(
|
|
acting_user_id: moderator.id,
|
|
action: UserHistory.actions[:post_locked]
|
|
).exists?).to eq(true)
|
|
|
|
PostLocker.new(post, moderator).unlock
|
|
expect(post).not_to be_locked
|
|
expect(post.locked_by_id).to be_blank
|
|
expect(UserHistory.where(
|
|
acting_user_id: moderator.id,
|
|
action: UserHistory.actions[:post_unlocked]
|
|
).exists?).to eq(true)
|
|
end
|
|
|
|
end
|