]> git.openstreetmap.org Git - rails.git/blob - test/helpers/user_blocks_helper_test.rb
Remove "expired unread" short block status
[rails.git] / test / helpers / user_blocks_helper_test.rb
1 require "test_helper"
2
3 class UserBlocksHelperTest < ActionView::TestCase
4   include ApplicationHelper
5
6   def test_block_status
7     block = create(:user_block, :needs_view, :ends_at => Time.now.utc)
8     assert_equal "Active until the user logs in.", block_status(block)
9
10     block = create(:user_block, :needs_view, :ends_at => Time.now.utc + 1.hour)
11     assert_match %r{^Ends in <time title=".*" datetime=".*">about 1 hour</time> and after the user has logged in\.$}, block_status(block)
12
13     block = create(:user_block, :ends_at => Time.now.utc + 1.hour)
14     assert_match %r{^Ends in <time title=".* datetime=".*">about 1 hour</time>\.$}, block_status(block)
15   end
16
17   def test_block_short_status
18     freeze_time do
19       future_end_block = create(:user_block, :ends_at => Time.now.utc + 48.hours)
20       unread_future_end_block = create(:user_block, :needs_view, :ends_at => Time.now.utc + 48.hours)
21       past_end_block = create(:user_block, :ends_at => Time.now.utc + 1.hour)
22       unread_past_end_block = create(:user_block, :needs_view, :ends_at => Time.now.utc + 1.hour)
23
24       travel 24.hours
25
26       assert_equal "active", block_short_status(future_end_block)
27       assert_equal "active", block_short_status(unread_future_end_block)
28       assert_equal "ended", block_short_status(past_end_block)
29       assert_equal "active until read", block_short_status(unread_past_end_block)
30     end
31   end
32
33   def test_block_duration_in_words
34     words = block_duration_in_words(364.days)
35     assert_equal "11 months", words
36
37     words = block_duration_in_words(24.hours)
38     assert_equal "1 day", words
39
40     # Ensure that nil hours is not passed to i18n.t
41     words = block_duration_in_words(10.minutes)
42     assert_equal "0 hours", words
43
44     words = block_duration_in_words(0)
45     assert_equal "0 hours", words
46
47     # Ensure that (slightly) negative durations don't mess everything up
48     # This can happen on zero hour blocks when ends_at is a millisecond before created_at
49     words = block_duration_in_words(-0.001)
50     assert_equal "0 hours", words
51   end
52 end