mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
6e161d3e75
The most common thing that we do with fab! is: fab!(:thing) { Fabricate(:thing) } This commit adds a shorthand for this which is just simply: fab!(:thing) i.e. If you omit the block, then, by default, you'll get a `Fabricate`d object using the fabricator of the same name.
58 lines
1.6 KiB
Ruby
58 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "admin_confirmation"
|
|
RSpec.describe AdminConfirmation do
|
|
fab!(:admin)
|
|
fab!(:user)
|
|
|
|
describe "create_confirmation" do
|
|
it "raises an error for non-admins" do
|
|
ac = AdminConfirmation.new(user, Fabricate(:moderator))
|
|
expect { ac.create_confirmation }.to raise_error(Discourse::InvalidAccess)
|
|
end
|
|
end
|
|
|
|
describe "email_confirmed!" do
|
|
before do
|
|
ac = AdminConfirmation.new(user, admin)
|
|
ac.create_confirmation
|
|
@token = ac.token
|
|
end
|
|
|
|
it "cannot confirm if the user loses admin access" do
|
|
ac = AdminConfirmation.find_by_code(@token)
|
|
ac.performed_by.update_column(:admin, false)
|
|
expect { ac.email_confirmed! }.to raise_error(Discourse::InvalidAccess)
|
|
end
|
|
|
|
it "can confirm admin accounts" do
|
|
ac = AdminConfirmation.find_by_code(@token)
|
|
expect(ac.performed_by).to eq(admin)
|
|
expect(ac.target_user).to eq(user)
|
|
expect(ac.token).to eq(@token)
|
|
|
|
expect_enqueued_with(
|
|
job: :send_system_message,
|
|
args: {
|
|
user_id: user.id,
|
|
message_type: "welcome_staff",
|
|
message_options: {
|
|
role: :admin,
|
|
},
|
|
},
|
|
) { ac.email_confirmed! }
|
|
|
|
user.reload
|
|
expect(user.admin?).to eq(true)
|
|
|
|
# It creates a staff log
|
|
logs = UserHistory.where(action: UserHistory.actions[:grant_admin], target_user_id: user.id)
|
|
expect(logs).to be_present
|
|
|
|
# It removes the redis keys for another user
|
|
expect(AdminConfirmation.find_by_code(ac.token)).to eq(nil)
|
|
expect(AdminConfirmation.exists_for?(user.id)).to eq(false)
|
|
end
|
|
end
|
|
end
|