mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 17:53:44 +08:00
c9dab6fd08
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors. By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
39 lines
1.3 KiB
Ruby
39 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe Jobs::ActivationReminderEmails do
|
|
before { Jobs.run_immediately! }
|
|
|
|
# should be between 2 and 3 days
|
|
let(:created_at) { 50.hours.ago }
|
|
|
|
it 'should email inactive users' do
|
|
user = Fabricate(:user, active: false, created_at: created_at)
|
|
|
|
expect { described_class.new.execute({}) }
|
|
.to change { ActionMailer::Base.deliveries.size }.by(1)
|
|
.and change { user.email_tokens.count }.by(1)
|
|
|
|
expect(user.custom_fields['activation_reminder']).to eq("t")
|
|
expect { described_class.new.execute({}) }.to change { ActionMailer::Base.deliveries.size }.by(0)
|
|
|
|
user.activate
|
|
expect(user.reload.custom_fields['activation_reminder']).to eq(nil)
|
|
end
|
|
|
|
it 'should not email active users' do
|
|
user = Fabricate(:user, active: true, created_at: created_at)
|
|
|
|
expect { described_class.new.execute({}) }
|
|
.to change { ActionMailer::Base.deliveries.size }.by(0)
|
|
.and change { user.email_tokens.count }.by(0)
|
|
end
|
|
|
|
it 'should not email staged users' do
|
|
user = Fabricate(:user, active: false, staged: true, created_at: created_at)
|
|
|
|
expect { described_class.new.execute({}) }
|
|
.to change { ActionMailer::Base.deliveries.size }.by(0)
|
|
.and change { user.email_tokens.count }.by(0)
|
|
end
|
|
end
|