2020-12-18 10:03:51 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 22:27:38 -04:00
|
|
|
RSpec.describe DoNotDisturbController do
|
2020-12-18 10:03:51 -05:00
|
|
|
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 { sign_in(user) }
|
|
|
|
|
|
|
|
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
|
2021-01-07 11:49:49 -05:00
|
|
|
|
|
|
|
describe "#destroy" do
|
2021-01-27 11:29:24 -05:00
|
|
|
it "process shelved notifications that came in during DND" do
|
2021-01-07 11:49:49 -05:00
|
|
|
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,
|
|
|
|
)
|
|
|
|
|
2021-01-27 11:29:24 -05:00
|
|
|
expect(notification.shelved_notification).to be_present
|
2021-01-07 11:49:49 -05:00
|
|
|
delete "/do-not-disturb.json"
|
2021-01-27 11:29:24 -05:00
|
|
|
expect { notification.shelved_notification.reload }.to raise_error(
|
|
|
|
ActiveRecord::RecordNotFound,
|
|
|
|
)
|
|
|
|
expect(user.do_not_disturb?).to eq(false)
|
2021-01-07 11:49:49 -05:00
|
|
|
end
|
|
|
|
end
|
2020-12-18 10:03:51 -05:00
|
|
|
end
|
|
|
|
end
|