3 class ApplicationHelperTest < ActionView::TestCase
4 attr_accessor :current_user
7 %w[http://example.com/test ftp://example.com/test https://example.com/test].each do |link|
8 text = "Test #{link} is <b>made</b> into a link"
11 assert_predicate html, :html_safe?
12 assert_dom_equal "Test <a href=\"#{link}\" rel=\"nofollow\">#{link}</a> is <b>made</b> into a link", html
14 html = linkify(text.html_safe)
15 assert_predicate html, :html_safe?
16 assert_dom_equal "Test <a href=\"#{link}\" rel=\"nofollow\">#{link}</a> is <b>made</b> into a link", html
19 %w[test@example.com mailto:test@example.com].each do |link|
20 text = "Test #{link} is not <b>made</b> into a link"
23 assert_predicate html, :html_safe?
24 assert_dom_equal "Test #{link} is not <b>made</b> into a link", html
26 html = linkify(text.html_safe)
27 assert_predicate html, :html_safe?
28 assert_dom_equal "Test #{link} is not <b>made</b> into a link", html
33 link = rss_link_to(:controller => :diary_entries, :action => :rss)
34 assert_dom_equal "<a href=\"/diary/rss\"><img height=\"16\" src=\"/images/RSS.png\" width=\"16\" class=\"align-text-bottom\" /></a>", link
38 link = atom_link_to(:controller => :changesets, :action => :feed)
39 assert_dom_equal "<a href=\"/history/feed\"><img height=\"16\" src=\"/images/RSS.png\" width=\"16\" class=\"align-text-bottom\" /></a>", link
43 assert_equal "ltr", dir
46 assert_equal "rtl", dir
49 I18n.with_locale "he" do
50 assert_equal "rtl", dir
53 assert_equal "ltr", dir
58 def test_friendly_date
59 date = friendly_date(Time.utc(2014, 3, 5, 18, 58, 23))
60 assert_match %r{^<time title=" *5 March 2014 at 18:58" datetime="2014-03-05T18:58:23Z">.*</time>$}, date
62 date = friendly_date(Time.now.utc - 1.hour)
63 assert_match %r{^<time title=".*">about 1 hour</time>$}, date
65 date = friendly_date(Time.now.utc - 2.days)
66 assert_match %r{^<time title=".*">2 days</time>$}, date
68 date = friendly_date(Time.now.utc - 3.weeks)
69 assert_match %r{^<time title=".*">21 days</time>$}, date
71 date = friendly_date(Time.now.utc - 4.months)
72 assert_match %r{^<time title=".*">4 months</time>$}, date
75 def test_friendly_date_ago
76 date = friendly_date_ago(Time.utc(2014, 3, 5, 18, 58, 23))
77 assert_match %r{^<time title=" *5 March 2014 at 18:58" datetime="2014-03-05T18:58:23Z">.*</time>$}, date
79 date = friendly_date_ago(Time.now.utc - 1.hour)
80 assert_match %r{^<time title=".*">about 1 hour ago</time>$}, date
82 date = friendly_date_ago(Time.now.utc - 2.days)
83 assert_match %r{^<time title=".*">2 days ago</time>$}, date
85 date = friendly_date_ago(Time.now.utc - 3.weeks)
86 assert_match %r{^<time title=".*">21 days ago</time>$}, date
88 date = friendly_date_ago(Time.now.utc - 4.months)
89 assert_match %r{^<time title=".*">4 months ago</time>$}, date