You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
4.2 KiB
134 lines
4.2 KiB
require 'rails_helper'
|
|
|
|
RSpec.describe RecipientSchedule, type: :model do
|
|
|
|
let!(:school) { School.create!(name: 'School') }
|
|
|
|
let!(:recipient) { create_recipients(school, 1).first }
|
|
let!(:recipient_list) do
|
|
school.recipient_lists.create!(name: 'Parents', recipient_ids: "#{recipient.id}")
|
|
end
|
|
|
|
let(:category) { Category.create(name: 'Category') }
|
|
let!(:questions) { create_questions(3, category) }
|
|
let!(:question_list) do
|
|
QuestionList.create!(name: 'Parent Questions', question_ids: questions.map(&:id).join(','))
|
|
end
|
|
|
|
let!(:schedule) do
|
|
Schedule.create!(
|
|
name: 'Parent Schedule',
|
|
recipient_list_id: recipient_list.id,
|
|
question_list: question_list,
|
|
random: false,
|
|
frequency_hours: 24
|
|
)
|
|
end
|
|
let!(:recipient_schedule) { schedule.recipient_schedules.for_recipient(recipient).first }
|
|
|
|
let!(:not_ready_recipient_schedule) do
|
|
RecipientSchedule.create!(
|
|
recipient: recipient,
|
|
schedule: schedule,
|
|
upcoming_question_ids: '1,3',
|
|
attempted_question_ids: '2',
|
|
last_attempt_at: Date.today + (60 * 60 * schedule.frequency_hours),
|
|
next_attempt_at: 1.day.from_now + (60 * 60 * schedule.frequency_hours)
|
|
)
|
|
end
|
|
|
|
describe 'ready' do
|
|
before :each do
|
|
now = DateTime.now
|
|
date = ActiveSupport::TimeZone["UTC"].parse(now.strftime("%Y-%m-%dT16:00:00%z"))
|
|
Timecop.freeze(date)
|
|
end
|
|
|
|
subject { schedule.recipient_schedules.ready }
|
|
|
|
it ('should only provide recipient_schedules who are ready to send a message') do
|
|
expect(subject.length).to eq(1)
|
|
expect(subject.first).to eq(recipient_schedule)
|
|
end
|
|
end
|
|
|
|
describe 'next_question' do
|
|
it 'should provide the next question from the upcoming_question_ids list' do
|
|
expect(recipient_schedule.next_question).to eq(questions.first)
|
|
end
|
|
end
|
|
|
|
describe 'attempt_question' do
|
|
before :each do
|
|
Timecop.freeze
|
|
end
|
|
|
|
describe 'with an opted out recipient' do
|
|
before :each do
|
|
recipient_schedule.recipient.update(opted_out: true)
|
|
end
|
|
|
|
let!(:attempt) { recipient_schedule.attempt_question }
|
|
|
|
it 'should not do anything' do
|
|
expect(attempt).to be_nil
|
|
end
|
|
end
|
|
|
|
describe 'right before a weekend' do
|
|
before :each do
|
|
friday_time = ActiveSupport::TimeZone["UTC"].parse('2017-04-21T20:00:00')
|
|
Timecop.freeze()
|
|
recipient_schedule.update(next_attempt_at: friday_time)
|
|
end
|
|
|
|
let!(:attempt) { recipient_schedule.attempt_question }
|
|
|
|
it 'should schedule the next attempt for after the weekend' do
|
|
next_weekday_time = ActiveSupport::TimeZone["UTC"].parse('2017-04-24T20:00:00')
|
|
expect(recipient_schedule.reload.next_attempt_at).to eq(next_weekday_time)
|
|
end
|
|
end
|
|
|
|
describe 'with an opted in recipient' do
|
|
before :each do
|
|
date = ActiveSupport::TimeZone["UTC"].parse('2017-04-20T20:00:00')
|
|
Timecop.freeze(date)
|
|
end
|
|
|
|
let!(:attempt) { recipient_schedule.attempt_question }
|
|
|
|
it 'should make an attempt to ask the next question' do
|
|
expect(attempt).to be_persisted
|
|
expect(attempt.recipient).to eq(recipient)
|
|
expect(attempt.schedule).to eq(schedule)
|
|
expect(attempt.recipient_schedule).to eq(recipient_schedule)
|
|
expect(attempt.question).to eq(questions.first)
|
|
expect(attempt.sent_at.to_i).to eq(Time.new.to_i)
|
|
expect(attempt.answer_index).to be_nil
|
|
end
|
|
|
|
it 'should update the upcoming_questions_ids' do
|
|
expect(recipient_schedule.upcoming_question_ids).to eq(questions[1..2].map(&:id).join(','))
|
|
end
|
|
|
|
it 'should update the attempted_question_ids' do
|
|
expect(recipient_schedule.attempted_question_ids).to eq(questions.first.id.to_s)
|
|
end
|
|
|
|
it 'should update last_attempt_at' do
|
|
expect(recipient_schedule.last_attempt_at.to_i).to eq(Time.new.to_i)
|
|
end
|
|
|
|
it 'should update next_attempt_at' do
|
|
now = DateTime.now
|
|
date = ActiveSupport::TimeZone["Eastern Time (US & Canada)"].parse(now.strftime("%Y-%m-%dT16:00:00%z"))
|
|
date += 1.day
|
|
date += 1.day if date.on_weekend?
|
|
|
|
expect(recipient_schedule.reload.next_attempt_at).to eq(date.to_time)
|
|
end
|
|
end
|
|
end
|
|
end
|