debian-mirror-gitlab/spec/helpers/avatars_helper_spec.rb

161 lines
4.5 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
require 'rails_helper'
describe AvatarsHelper do
2017-09-10 17:25:29 +05:30
include ApplicationHelper
2017-08-17 22:00:37 +05:30
let(:user) { create(:user) }
describe '#user_avatar' do
subject { helper.user_avatar(user: user) }
it "links to the user's profile" do
is_expected.to include("href=\"#{user_path(user)}\"")
end
it "has the user's name as title" do
is_expected.to include("title=\"#{user.name}\"")
end
it "contains the user's avatar image" do
2017-09-10 17:25:29 +05:30
is_expected.to include(CGI.escapeHTML(user.avatar_url(size: 16)))
end
end
describe '#user_avatar_without_link' do
let(:options) { { user: user } }
subject { helper.user_avatar_without_link(options) }
it 'displays user avatar' do
2018-03-17 18:26:18 +05:30
is_expected.to eq tag(
:img,
2017-09-10 17:25:29 +05:30
alt: "#{user.name}'s avatar",
2018-03-27 19:54:05 +05:30
src: avatar_icon_for_user(user, 16),
2018-03-17 18:26:18 +05:30
data: { container: 'body' },
class: 'avatar s16 has-tooltip',
title: user.name
2017-09-10 17:25:29 +05:30
)
end
context 'with css_class parameter' do
let(:options) { { user: user, css_class: '.cat-pics' } }
it 'uses provided css_class' do
2018-03-17 18:26:18 +05:30
is_expected.to eq tag(
:img,
2017-09-10 17:25:29 +05:30
alt: "#{user.name}'s avatar",
2018-03-27 19:54:05 +05:30
src: avatar_icon_for_user(user, 16),
2018-03-17 18:26:18 +05:30
data: { container: 'body' },
class: "avatar s16 #{options[:css_class]} has-tooltip",
title: user.name
2017-09-10 17:25:29 +05:30
)
end
end
context 'with size parameter' do
let(:options) { { user: user, size: 99 } }
it 'uses provided size' do
2018-03-17 18:26:18 +05:30
is_expected.to eq tag(
:img,
2017-09-10 17:25:29 +05:30
alt: "#{user.name}'s avatar",
2018-03-27 19:54:05 +05:30
src: avatar_icon_for_user(user, options[:size]),
2018-03-17 18:26:18 +05:30
data: { container: 'body' },
class: "avatar s#{options[:size]} has-tooltip",
title: user.name
2017-09-10 17:25:29 +05:30
)
end
end
context 'with url parameter' do
let(:options) { { user: user, url: '/over/the/rainbow.png' } }
it 'uses provided url' do
2018-03-17 18:26:18 +05:30
is_expected.to eq tag(
:img,
2017-09-10 17:25:29 +05:30
alt: "#{user.name}'s avatar",
2018-03-17 18:26:18 +05:30
src: options[:url],
data: { container: 'body' },
class: "avatar s16 has-tooltip",
title: user.name
)
end
end
context 'with lazy parameter' do
let(:options) { { user: user, lazy: true } }
it 'adds `lazy` class to class list, sets `data-src` with avatar URL and `src` with placeholder image' do
is_expected.to eq tag(
:img,
alt: "#{user.name}'s avatar",
src: LazyImageTagHelper.placeholder_image,
2018-03-27 19:54:05 +05:30
data: { container: 'body', src: avatar_icon_for_user(user, 16) },
2018-03-17 18:26:18 +05:30
class: "avatar s16 has-tooltip lazy",
title: user.name
2017-09-10 17:25:29 +05:30
)
end
end
context 'with has_tooltip parameter' do
context 'with has_tooltip set to true' do
let(:options) { { user: user, has_tooltip: true } }
it 'adds has-tooltip' do
2018-03-17 18:26:18 +05:30
is_expected.to eq tag(
:img,
2017-09-10 17:25:29 +05:30
alt: "#{user.name}'s avatar",
2018-03-27 19:54:05 +05:30
src: avatar_icon_for_user(user, 16),
2018-03-17 18:26:18 +05:30
data: { container: 'body' },
class: "avatar s16 has-tooltip",
title: user.name
2017-09-10 17:25:29 +05:30
)
end
end
context 'with has_tooltip set to false' do
let(:options) { { user: user, has_tooltip: false } }
it 'does not add has-tooltip or data container' do
2018-03-17 18:26:18 +05:30
is_expected.to eq tag(
:img,
2017-09-10 17:25:29 +05:30
alt: "#{user.name}'s avatar",
2018-03-27 19:54:05 +05:30
src: avatar_icon_for_user(user, 16),
2018-03-17 18:26:18 +05:30
class: "avatar s16",
title: user.name
2017-09-10 17:25:29 +05:30
)
end
end
end
context 'with user_name parameter' do
let(:options) { { user_name: 'Tinky Winky', user_email: 'no@f.un' } }
context 'with user parameter' do
let(:options) { { user: user, user_name: 'Tinky Winky' } }
it 'prefers user parameter' do
2018-03-17 18:26:18 +05:30
is_expected.to eq tag(
:img,
2017-09-10 17:25:29 +05:30
alt: "#{user.name}'s avatar",
2018-03-27 19:54:05 +05:30
src: avatar_icon_for_user(user, 16),
2018-03-17 18:26:18 +05:30
data: { container: 'body' },
class: "avatar s16 has-tooltip",
title: user.name
2017-09-10 17:25:29 +05:30
)
end
end
it 'uses user_name and user_email parameter if user is not present' do
2018-03-17 18:26:18 +05:30
is_expected.to eq tag(
:img,
2017-09-10 17:25:29 +05:30
alt: "#{options[:user_name]}'s avatar",
2018-03-27 19:54:05 +05:30
src: avatar_icon_for_email(options[:user_email], 16),
2018-03-17 18:26:18 +05:30
data: { container: 'body' },
class: "avatar s16 has-tooltip",
title: options[:user_name]
2017-09-10 17:25:29 +05:30
)
end
2017-08-17 22:00:37 +05:30
end
end
end