2014-04-01 23:07:21 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2014-10-12 10:46:58 +00:00
|
|
|
feature 'Google Calendar widget', js: :true do
|
2014-04-01 23:07:21 +00:00
|
|
|
before do
|
|
|
|
visit root_path
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario 'the most recent upcoming event should appear correctly' do
|
2014-04-04 22:56:22 +00:00
|
|
|
time = Time.zone.local(2014, 4, 1, 12, 0, 0)
|
|
|
|
|
|
|
|
Timecop.travel(time) do
|
|
|
|
visit root_path
|
|
|
|
|
|
|
|
expect(first_event).to have_content("Div 2B: el'pheer vs. RadicaL")
|
|
|
|
end
|
2014-04-01 23:07:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
feature 'Timezones offsets' do
|
|
|
|
scenario 'when a user is logged out, CEST is default' do
|
2014-04-04 22:56:22 +00:00
|
|
|
time = Time.zone.local(2014, 4, 1, 12, 0, 0)
|
|
|
|
|
|
|
|
Timecop.travel(time) do
|
|
|
|
visit root_path
|
|
|
|
|
|
|
|
expect(first_event).to have_content("20:30 CEST")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario 'when time has passed under 2 hours after the start date' do
|
|
|
|
time = Time.zone.local(2014, 4, 4, 23, 59, 0)
|
|
|
|
|
|
|
|
Timecop.travel(time) do
|
|
|
|
visit root_path
|
|
|
|
|
|
|
|
expect(first_event).to have_content("Div 3B: Mister vs. HBZ")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario 'when time has passed over 2 hours after the start date' do
|
|
|
|
time = Time.zone.local(2014, 4, 5, 0, 1, 0)
|
|
|
|
|
|
|
|
Timecop.travel(time) do
|
|
|
|
visit root_path
|
|
|
|
|
|
|
|
expect(first_event).not_to have_content("Div 3B: Mister vs. HBZ")
|
|
|
|
expect(first_event).to have_content("Div 3B: OMNOM vs. Mister")
|
|
|
|
end
|
2014-04-01 23:07:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scenario 'when a user is logged in, their local timezone is used' do
|
2014-04-04 22:56:22 +00:00
|
|
|
time = Time.zone.local(2014, 4, 1, 12, 0, 0)
|
2014-10-12 09:58:52 +00:00
|
|
|
user = create(:user)
|
|
|
|
|
|
|
|
sign_in_as(user)
|
|
|
|
change_timezone_for(user, timezone_us_east)
|
2014-04-04 22:56:22 +00:00
|
|
|
|
|
|
|
Timecop.travel(time) do
|
|
|
|
visit root_path
|
2014-04-01 23:07:21 +00:00
|
|
|
|
2014-04-04 22:56:22 +00:00
|
|
|
expect(first_event).to have_content(timezone_adjusted)
|
|
|
|
end
|
2014-04-01 23:07:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def first_event
|
2014-04-17 07:55:19 +00:00
|
|
|
first ".widget.calendar .entry"
|
2014-04-01 23:07:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def timezone_adjusted
|
2015-04-25 21:35:01 +00:00
|
|
|
if Time.zone.now.dst?
|
2014-04-01 23:07:21 +00:00
|
|
|
"14:30 EDT"
|
|
|
|
else
|
|
|
|
"15:30 EST"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def timezone_us_east
|
|
|
|
"Eastern Time (US & Canada)"
|
|
|
|
end
|
|
|
|
end
|