57 lines
2.0 KiB
Ruby
57 lines
2.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe DoNotDisturbController do
|
|
it 'requires you to be logged in' do
|
|
post "/do-not-disturb.json", params: { duration: 30 }
|
|
expect(response.status).to eq(403)
|
|
end
|
|
|
|
describe 'logged in' do
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
before do
|
|
sign_in(user)
|
|
end
|
|
|
|
it 'returns a 400 when a duration is not passed in' do
|
|
post "/do-not-disturb.json"
|
|
expect(response.status).to eq(400)
|
|
end
|
|
|
|
it 'works properly with integer minute durations' do
|
|
freeze_time
|
|
post "/do-not-disturb.json", params: { duration: 30 }
|
|
|
|
expect(response.status).to eq(200)
|
|
expect(user.do_not_disturb_timings.last.ends_at).to eq_time(30.minutes.from_now)
|
|
end
|
|
|
|
it 'works properly with integer minute durations' do
|
|
post "/do-not-disturb.json", params: { duration: -30 }
|
|
expect(response.status).to eq(422)
|
|
expect(response.parsed_body).to eq({ "errors" => ["Ends at is invalid"] })
|
|
end
|
|
|
|
include ActiveSupport::Testing::TimeHelpers
|
|
it "works properly with duration of 'tomorrow'" do
|
|
travel_to Time.new(2020, 11, 24, 01, 04, 44) do
|
|
post "/do-not-disturb.json", params: { duration: 'tomorrow' }
|
|
expect(response.status).to eq(200)
|
|
expect(user.do_not_disturb_timings.last.ends_at.to_i).to eq(Time.new(2020, 11, 24, 23, 59, 59).utc.to_i)
|
|
end
|
|
end
|
|
|
|
describe "#destroy" do
|
|
it "process shelved notifications that came in during DND" do
|
|
user.do_not_disturb_timings.create(starts_at: 2.days.ago, ends_at: 2.days.from_now)
|
|
notification = Notification.create(read: false, user_id: user.id, topic_id: 2, post_number: 1, data: '{}', notification_type: 1)
|
|
|
|
expect(notification.shelved_notification).to be_present
|
|
delete "/do-not-disturb.json"
|
|
expect { notification.shelved_notification.reload }.to raise_error(ActiveRecord::RecordNotFound)
|
|
expect(user.do_not_disturb?).to eq(false)
|
|
end
|
|
end
|
|
end
|
|
end
|