about summary refs log tree commit diff
path: root/spec/workers
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-05-10 09:45:43 -0400
committerEugen Rochko <eugen@zeonfederated.com>2017-05-10 15:45:43 +0200
commitd142544159dee7a93e31c886737e12c5bca8844a (patch)
tree6de1b55769c8def200d34b2a10de54966ea89619 /spec/workers
parent7ac092513c3c298ad80cb80f7bee76ca8ed56235 (diff)
Spec coverage and refactor of digest mailer worker (#2961)
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/digest_mailer_worker_spec.rb36
1 files changed, 36 insertions, 0 deletions
diff --git a/spec/workers/digest_mailer_worker_spec.rb b/spec/workers/digest_mailer_worker_spec.rb
new file mode 100644
index 000000000..db3b1390d
--- /dev/null
+++ b/spec/workers/digest_mailer_worker_spec.rb
@@ -0,0 +1,36 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe DigestMailerWorker do
+  describe 'perform' do
+    let(:user) { Fabricate(:user, last_emailed_at: 3.days.ago) }
+
+    context 'for a user who receives digests' do
+      it 'sends the email' do
+        service = double(deliver_now!: nil)
+        allow(NotificationMailer).to receive(:digest).and_return(service)
+        update_user_digest_setting(true)
+        described_class.perform_async(user.id)
+
+        expect(NotificationMailer).to have_received(:digest)
+        expect(user.reload.last_emailed_at).to be_within(1).of(Time.now.utc)
+      end
+    end
+
+    context 'for a user who does not receive digests' do
+      it 'does not send the email' do
+        allow(NotificationMailer).to receive(:digest)
+        update_user_digest_setting(false)
+        described_class.perform_async(user.id)
+
+        expect(NotificationMailer).not_to have_received(:digest)
+        expect(user.last_emailed_at).to be_within(1).of(3.days.ago)
+      end
+    end
+
+    def update_user_digest_setting(value)
+      user.settings['notification_emails'] = user.settings['notification_emails'].merge('digest' => value)
+    end
+  end
+end