-require 'test_helper'
+require "test_helper"
class ApplicationHelperTest < ActionView::TestCase
- fixtures :users, :user_roles
-
def setup
I18n.locale = "en"
end
+ def teardown
+ I18n.locale = "en"
+ end
+
def test_linkify
%w(http://example.com/test ftp://example.com/test https://example.com/test).each do |link|
text = "Test #{link} is made into a link"
assert_match /\.hide_unless_administrator /, css
assert_match /\.hide_unless_moderator /, css
- @user = users(:normal_user)
+ @user = create(:user)
css = style_rules
assert_match /\.hidden /, css
assert_no_match /\.hide_unless_logged_in /, css
assert_match /\.hide_if_logged_in /, css
- assert_match /\.hide_if_user_1 /, css
- assert_match /\.show_if_user_1 /, css
+ assert_match /\.hide_if_user_#{@user.id} /, css
+ assert_match /\.show_if_user_#{@user.id} /, css
assert_match /\.hide_unless_administrator /, css
assert_match /\.hide_unless_moderator /, css
- @user = users(:moderator_user)
+ @user = create(:moderator_user)
css = style_rules
assert_match /\.hidden /, css
assert_no_match /\.hide_unless_logged_in /, css
assert_match /\.hide_if_logged_in /, css
- assert_match /\.hide_if_user_5 /, css
- assert_match /\.show_if_user_5 /, css
+ assert_match /\.hide_if_user_#{@user.id} /, css
+ assert_match /\.show_if_user_#{@user.id} /, css
assert_match /\.hide_unless_administrator /, css
assert_no_match /\.hide_unless_moderator /, css
- @user = users(:administrator_user)
+ @user = create(:administrator_user)
css = style_rules
assert_match /\.hidden /, css
assert_no_match /\.hide_unless_logged_in /, css
assert_match /\.hide_if_logged_in /, css
- assert_match /\.hide_if_user_6 /, css
- assert_match /\.show_if_user_6 /, css
+ assert_match /\.hide_if_user_#{@user.id} /, css
+ assert_match /\.show_if_user_#{@user.id} /, css
assert_no_match /\.hide_unless_administrator /, css
assert_match /\.hide_unless_moderator /, css
end
end
def test_if_user
- html = if_user(users(:normal_user)) { "Test 1" }
- assert_dom_equal "<div class=\"hidden show_if_user_1\">Test 1</div>", html
+ user = create(:user)
- html = if_user(users(:normal_user), :span) { "Test 2" }
- assert_dom_equal "<span class=\"hidden show_if_user_1\">Test 2</span>", html
+ html = if_user(user) { "Test 1" }
+ assert_dom_equal "<div class=\"hidden show_if_user_#{user.id}\">Test 1</div>", html
+
+ html = if_user(user, :span) { "Test 2" }
+ assert_dom_equal "<span class=\"hidden show_if_user_#{user.id}\">Test 2</span>", html
html = if_user(nil) { "Test 3" }
assert_nil html
end
def test_unless_user
- html = unless_user(users(:normal_user)) { "Test 1" }
- assert_dom_equal "<div class=\"hide_if_user_1\">Test 1</div>", html
+ user = create(:user)
+
+ html = unless_user(user) { "Test 1" }
+ assert_dom_equal "<div class=\"hide_if_user_#{user.id}\">Test 1</div>", html
- html = unless_user(users(:normal_user), :span) { "Test 2" }
- assert_dom_equal "<span class=\"hide_if_user_1\">Test 2</span>", html
+ html = unless_user(user, :span) { "Test 2" }
+ assert_dom_equal "<span class=\"hide_if_user_#{user.id}\">Test 2</span>", html
html = unless_user(nil) { "Test 3" }
assert_dom_equal "<div>Test 3</div>", html
def test_friendly_date
date = friendly_date(Time.new(2014, 3, 5, 18, 58, 23))
- assert_match /^<span title=" *5 March 2014 at 18:58">.*<\/span>$/, date
+ assert_match %r{^<span title=" *5 March 2014 at 18:58">.*</span>$}, date
date = friendly_date(Time.now - 1.hour)
- assert_match /^<span title=".*">about 1 hour<\/span>$/, date
+ assert_match %r{^<span title=".*">about 1 hour</span>$}, date
date = friendly_date(Time.now - 2.days)
- assert_match /^<span title=".*">2 days<\/span>$/, date
+ assert_match %r{^<span title=".*">2 days</span>$}, date
date = friendly_date(Time.now - 3.weeks)
- assert_match /^<span title=".*">21 days<\/span>$/, date
+ assert_match %r{^<span title=".*">21 days</span>$}, date
date = friendly_date(Time.now - 4.months)
- assert_match /^<span title=".*">4 months<\/span>$/, date
+ assert_match %r{^<span title=".*">4 months</span>$}, date
end
- def test_body_class
- end
+ def test_body_class; end
- def test_current_page_class
- end
+ def test_current_page_class; end
end