2012-08-15 21:06:08 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe ApplicationHelper do
|
2012-09-25 19:22:44 -04:00
|
|
|
describe 'current_controller?' do
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'returns true when controller matches argument' do
|
2015-06-29 15:04:57 -04:00
|
|
|
stub_controller_name('foo')
|
|
|
|
|
|
|
|
expect(helper.current_controller?(:foo)).to eq true
|
2012-09-25 19:22:44 -04:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'returns false when controller does not match argument' do
|
2015-06-29 15:04:57 -04:00
|
|
|
stub_controller_name('foo')
|
|
|
|
|
|
|
|
expect(helper.current_controller?(:bar)).to eq false
|
2012-09-25 19:22:44 -04:00
|
|
|
end
|
2012-09-25 21:18:00 -04:00
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
it 'takes any number of arguments' do
|
|
|
|
stub_controller_name('foo')
|
|
|
|
|
|
|
|
expect(helper.current_controller?(:baz, :bar)).to eq false
|
|
|
|
expect(helper.current_controller?(:baz, :bar, :foo)).to eq true
|
|
|
|
end
|
|
|
|
|
|
|
|
def stub_controller_name(value)
|
|
|
|
allow(helper.controller).to receive(:controller_name).and_return(value)
|
2012-09-25 21:18:00 -04:00
|
|
|
end
|
2012-09-25 19:22:44 -04:00
|
|
|
end
|
|
|
|
|
2012-09-26 15:06:07 -04:00
|
|
|
describe 'current_action?' do
|
2015-06-29 15:04:57 -04:00
|
|
|
it 'returns true when action matches' do
|
|
|
|
stub_action_name('foo')
|
|
|
|
|
|
|
|
expect(helper.current_action?(:foo)).to eq true
|
2012-09-26 15:06:07 -04:00
|
|
|
end
|
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
it 'returns false when action does not match' do
|
|
|
|
stub_action_name('foo')
|
|
|
|
|
|
|
|
expect(helper.current_action?(:bar)).to eq false
|
2012-09-26 15:06:07 -04:00
|
|
|
end
|
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
it 'takes any number of arguments' do
|
|
|
|
stub_action_name('foo')
|
|
|
|
|
|
|
|
expect(helper.current_action?(:baz, :bar)).to eq false
|
|
|
|
expect(helper.current_action?(:baz, :bar, :foo)).to eq true
|
2012-09-26 15:06:07 -04:00
|
|
|
end
|
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
def stub_action_name(value)
|
|
|
|
allow(helper).to receive(:action_name).and_return(value)
|
2012-09-26 15:06:07 -04:00
|
|
|
end
|
|
|
|
end
|
2013-12-17 04:38:30 -05:00
|
|
|
|
2014-01-25 12:15:44 -05:00
|
|
|
describe 'project_icon' do
|
2015-06-29 15:04:57 -04:00
|
|
|
let(:avatar_file_path) { File.join(Rails.root, 'spec', 'fixtures', 'banana_sample.gif') }
|
2014-01-25 12:15:44 -05:00
|
|
|
|
|
|
|
it 'should return an url for the avatar' do
|
2015-06-29 15:04:57 -04:00
|
|
|
project = create(:project, avatar: File.open(avatar_file_path))
|
|
|
|
|
|
|
|
avatar_url = "http://localhost/uploads/project/avatar/#{project.id}/banana_sample.gif"
|
|
|
|
expect(helper.project_icon("#{project.namespace.to_param}/#{project.to_param}").to_s).
|
2015-11-30 09:12:31 -05:00
|
|
|
to eq "<img src=\"#{avatar_url}\" alt=\"Banana sample\" />"
|
2014-01-25 12:15:44 -05:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should give uploaded icon when present' do
|
2014-01-25 12:15:44 -05:00
|
|
|
project = create(:project)
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
allow_any_instance_of(Project).to receive(:avatar_in_git).and_return(true)
|
2014-01-25 12:15:44 -05:00
|
|
|
|
2015-02-28 12:07:53 -05:00
|
|
|
avatar_url = 'http://localhost' + namespace_project_avatar_path(project.namespace, project)
|
2015-06-29 15:04:57 -04:00
|
|
|
expect(helper.project_icon("#{project.namespace.to_param}/#{project.to_param}").to_s).to match(
|
2015-02-28 12:07:53 -05:00
|
|
|
image_tag(avatar_url))
|
2014-01-25 12:15:44 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
describe 'avatar_icon' do
|
2015-06-29 15:04:57 -04:00
|
|
|
let(:avatar_file_path) { File.join(Rails.root, 'spec', 'fixtures', 'banana_sample.gif') }
|
2013-10-06 14:13:56 -04:00
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should return an url for the avatar' do
|
2016-03-15 08:20:54 -04:00
|
|
|
user = create(:user, avatar: File.open(avatar_file_path))
|
2015-06-29 15:04:57 -04:00
|
|
|
|
|
|
|
expect(helper.avatar_icon(user.email).to_s).
|
|
|
|
to match("/uploads/user/avatar/#{user.id}/banana_sample.gif")
|
2013-10-06 14:13:56 -04:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should return an url for the avatar with relative url' do
|
2015-06-29 15:04:57 -04:00
|
|
|
stub_config_setting(relative_url_root: '/gitlab')
|
|
|
|
# Must be stubbed after the stub above, and separately
|
|
|
|
stub_config_setting(url: Settings.send(:build_gitlab_url))
|
2014-12-05 09:59:55 -05:00
|
|
|
|
2016-03-15 08:20:54 -04:00
|
|
|
user = create(:user, avatar: File.open(avatar_file_path))
|
2015-06-29 15:04:57 -04:00
|
|
|
|
|
|
|
expect(helper.avatar_icon(user.email).to_s).
|
|
|
|
to match("/gitlab/uploads/user/avatar/#{user.id}/banana_sample.gif")
|
2014-12-05 09:59:55 -05:00
|
|
|
end
|
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
it 'should call gravatar_icon when no User exists with the given email' do
|
2015-10-18 19:22:20 -04:00
|
|
|
expect(helper).to receive(:gravatar_icon).with('foo@example.com', 20, 2)
|
2015-06-29 15:04:57 -04:00
|
|
|
|
2015-10-18 19:21:21 -04:00
|
|
|
helper.avatar_icon('foo@example.com', 20, 2)
|
2013-10-06 14:13:56 -04:00
|
|
|
end
|
2015-10-12 10:58:09 -04:00
|
|
|
|
|
|
|
describe 'using a User' do
|
|
|
|
it 'should return an URL for the avatar' do
|
2016-03-15 08:20:54 -04:00
|
|
|
user = create(:user, avatar: File.open(avatar_file_path))
|
2015-10-12 10:58:09 -04:00
|
|
|
|
|
|
|
expect(helper.avatar_icon(user).to_s).
|
|
|
|
to match("/uploads/user/avatar/#{user.id}/banana_sample.gif")
|
|
|
|
end
|
|
|
|
end
|
2013-10-06 14:13:56 -04:00
|
|
|
end
|
2012-09-26 15:06:07 -04:00
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
describe 'gravatar_icon' do
|
2012-08-15 21:06:08 -04:00
|
|
|
let(:user_email) { 'user@email.com' }
|
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
context 'with Gravatar disabled' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(gravatar_enabled?: false)
|
|
|
|
end
|
2012-08-15 21:06:08 -04:00
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
it 'returns a generic avatar' do
|
|
|
|
expect(helper.gravatar_icon(user_email)).to match('no_avatar.png')
|
|
|
|
end
|
2012-08-15 21:06:08 -04:00
|
|
|
end
|
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
context 'with Gravatar enabled' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(gravatar_enabled?: true)
|
|
|
|
end
|
2012-12-06 15:44:22 -05:00
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
it 'returns a generic avatar when email is blank' do
|
|
|
|
expect(helper.gravatar_icon('')).to match('no_avatar.png')
|
|
|
|
end
|
2012-08-15 21:06:08 -04:00
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
it 'returns a valid Gravatar URL' do
|
|
|
|
stub_config_setting(https: false)
|
2012-12-06 15:44:22 -05:00
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
expect(helper.gravatar_icon(user_email)).
|
|
|
|
to match('http://www.gravatar.com/avatar/b58c6f14d292556214bd64909bcdb118')
|
|
|
|
end
|
2012-12-06 15:44:22 -05:00
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
it 'uses HTTPs when configured' do
|
|
|
|
stub_config_setting(https: true)
|
|
|
|
|
|
|
|
expect(helper.gravatar_icon(user_email)).
|
|
|
|
to match('https://secure.gravatar.com')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return custom gravatar path when gravatar_url is set' do
|
|
|
|
stub_gravatar_setting(plain_url: 'http://example.local/?s=%{size}&hash=%{hash}')
|
2012-12-06 15:44:22 -05:00
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
expect(gravatar_icon(user_email, 20)).
|
2015-09-26 14:53:16 -04:00
|
|
|
to eq('http://example.local/?s=40&hash=b58c6f14d292556214bd64909bcdb118')
|
2015-06-29 15:04:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts a custom size argument' do
|
2015-09-26 14:53:16 -04:00
|
|
|
expect(helper.gravatar_icon(user_email, 64)).to include '?s=128'
|
2015-06-29 15:04:57 -04:00
|
|
|
end
|
|
|
|
|
2015-09-26 14:53:16 -04:00
|
|
|
it 'defaults size to 40@2x when given an invalid size' do
|
|
|
|
expect(helper.gravatar_icon(user_email, nil)).to include '?s=80'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts a scaling factor' do
|
|
|
|
expect(helper.gravatar_icon(user_email, 40, 3)).to include '?s=120'
|
2015-06-29 15:04:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'ignores case and surrounding whitespace' do
|
|
|
|
normal = helper.gravatar_icon('foo@example.com')
|
|
|
|
upcase = helper.gravatar_icon(' FOO@EXAMPLE.COM ')
|
|
|
|
|
|
|
|
expect(normal).to eq upcase
|
|
|
|
end
|
2012-12-06 15:44:22 -05:00
|
|
|
end
|
2012-08-15 21:06:08 -04:00
|
|
|
end
|
2013-06-03 11:31:35 -04:00
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
describe 'simple_sanitize' do
|
2013-10-19 23:57:34 -04:00
|
|
|
let(:a_tag) { '<a href="#">Foo</a>' }
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'allows the a tag' do
|
2015-06-29 15:04:57 -04:00
|
|
|
expect(helper.simple_sanitize(a_tag)).to eq(a_tag)
|
2013-10-19 23:57:34 -04:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'allows the span tag' do
|
2013-10-19 23:57:34 -04:00
|
|
|
input = '<span class="foo">Bar</span>'
|
2015-06-29 15:04:57 -04:00
|
|
|
expect(helper.simple_sanitize(input)).to eq(input)
|
2013-10-19 23:57:34 -04:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'disallows other tags' do
|
2013-10-19 23:57:34 -04:00
|
|
|
input = "<strike><b>#{a_tag}</b></strike>"
|
2015-06-29 15:04:57 -04:00
|
|
|
expect(helper.simple_sanitize(input)).to eq(a_tag)
|
2013-10-19 23:57:34 -04:00
|
|
|
end
|
|
|
|
end
|
2014-05-30 11:09:31 -04:00
|
|
|
|
2015-06-17 14:04:14 -04:00
|
|
|
describe 'time_ago_with_tooltip' do
|
|
|
|
def element(*arguments)
|
2015-06-19 16:49:52 -04:00
|
|
|
Time.zone = 'UTC'
|
2016-01-06 17:27:56 -05:00
|
|
|
time = Time.zone.parse('2015-07-02 08:23')
|
2015-06-29 15:04:57 -04:00
|
|
|
element = helper.time_ago_with_tooltip(time, *arguments)
|
2015-06-17 14:04:14 -04:00
|
|
|
|
|
|
|
Nokogiri::HTML::DocumentFragment.parse(element).first_element_child
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a time element' do
|
|
|
|
expect(element.name).to eq 'time'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes the date string' do
|
2016-01-06 17:27:56 -05:00
|
|
|
expect(element.text).to eq '2015-07-02 08:23:00 UTC'
|
2015-06-17 14:04:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a datetime attribute' do
|
2016-01-06 17:27:56 -05:00
|
|
|
expect(element.attr('datetime')).to eq '2015-07-02T08:23:00Z'
|
2015-06-17 14:04:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a formatted title attribute' do
|
2016-01-06 17:27:56 -05:00
|
|
|
expect(element.attr('title')).to eq 'Jul 2, 2015 8:23am'
|
2015-06-17 14:04:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes a default js-timeago class' do
|
2015-12-11 13:57:49 -05:00
|
|
|
expect(element.attr('class')).to eq 'time_ago js-timeago js-timeago-pending'
|
2015-06-17 14:04:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts a custom html_class' do
|
2015-12-11 13:57:49 -05:00
|
|
|
expect(element(html_class: 'custom_class').attr('class')).
|
|
|
|
to eq 'custom_class js-timeago js-timeago-pending'
|
2015-06-17 14:04:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts a custom tooltip placement' do
|
|
|
|
expect(element(placement: 'bottom').attr('data-placement')).to eq 'bottom'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 're-initializes timeago Javascript' do
|
|
|
|
el = element.next_element
|
|
|
|
|
|
|
|
expect(el.name).to eq 'script'
|
2015-12-11 13:57:49 -05:00
|
|
|
expect(el.text).to include "$('.js-timeago-pending').removeClass('js-timeago-pending').timeago()"
|
2015-06-17 14:04:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows the script tag to be excluded' do
|
|
|
|
expect(element(skip_js: true)).not_to include 'script'
|
|
|
|
end
|
2016-01-12 13:13:16 -05:00
|
|
|
|
|
|
|
it 'converts to Time' do
|
|
|
|
expect { helper.time_ago_with_tooltip(Date.today) }.not_to raise_error
|
|
|
|
end
|
2015-06-17 14:04:14 -04:00
|
|
|
end
|
|
|
|
|
2015-05-12 19:07:48 -04:00
|
|
|
describe 'render_markup' do
|
2014-07-31 05:22:46 -04:00
|
|
|
let(:content) { 'Noël' }
|
2016-02-01 11:07:59 -05:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:current_user).and_return(user)
|
|
|
|
end
|
2014-07-31 05:22:46 -04:00
|
|
|
|
|
|
|
it 'should preserve encoding' do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(content.encoding.name).to eq('UTF-8')
|
2015-06-29 15:04:57 -04:00
|
|
|
expect(helper.render_markup('foo.rst', content).encoding.name).to eq('UTF-8')
|
2014-07-31 05:22:46 -04:00
|
|
|
end
|
2015-05-12 19:07:48 -04:00
|
|
|
|
2015-05-12 19:54:13 -04:00
|
|
|
it "should delegate to #markdown when file name corresponds to Markdown" do
|
2015-06-29 15:04:57 -04:00
|
|
|
expect(helper).to receive(:gitlab_markdown?).with('foo.md').and_return(true)
|
|
|
|
expect(helper).to receive(:markdown).and_return('NOEL')
|
2015-05-12 19:54:13 -04:00
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
expect(helper.render_markup('foo.md', content)).to eq('NOEL')
|
2015-05-12 19:54:13 -04:00
|
|
|
end
|
|
|
|
|
2015-05-12 19:07:48 -04:00
|
|
|
it "should delegate to #asciidoc when file name corresponds to AsciiDoc" do
|
2015-06-29 15:04:57 -04:00
|
|
|
expect(helper).to receive(:asciidoc?).with('foo.adoc').and_return(true)
|
|
|
|
expect(helper).to receive(:asciidoc).and_return('NOEL')
|
2015-05-12 19:07:48 -04:00
|
|
|
|
2015-06-29 15:04:57 -04:00
|
|
|
expect(helper.render_markup('foo.adoc', content)).to eq('NOEL')
|
2015-05-12 19:07:48 -04:00
|
|
|
end
|
2014-07-31 05:22:46 -04:00
|
|
|
end
|
2012-08-15 21:06:08 -04:00
|
|
|
end
|