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
|
|
|
|
before do
|
2015-02-12 13:17:35 -05:00
|
|
|
allow(controller).to receive(:controller_name).and_return('foo')
|
2012-09-25 19:22:44 -04:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'returns true when controller matches argument' do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(current_controller?(:foo)).to be_truthy
|
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-02-12 13:17:35 -05:00
|
|
|
expect(current_controller?(:bar)).not_to be_truthy
|
2012-09-25 19:22:44 -04:00
|
|
|
end
|
2012-09-25 21:18:00 -04:00
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should take any number of arguments' do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(current_controller?(:baz, :bar)).not_to be_truthy
|
|
|
|
expect(current_controller?(:baz, :bar, :foo)).to be_truthy
|
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
|
|
|
|
before do
|
2013-12-14 08:43:48 -05:00
|
|
|
allow(self).to receive(:action_name).and_return('foo')
|
2012-09-26 15:06:07 -04:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'returns true when action matches argument' do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(current_action?(:foo)).to be_truthy
|
2012-09-26 15:06:07 -04:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'returns false when action does not match argument' do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(current_action?(:bar)).not_to be_truthy
|
2012-09-26 15:06:07 -04:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should take any number of arguments' do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(current_action?(:baz, :bar)).not_to be_truthy
|
|
|
|
expect(current_action?(:baz, :bar, :foo)).to be_truthy
|
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
|
|
|
|
avatar_file_path = File.join(Rails.root, 'public', 'gitlab_logo.png')
|
|
|
|
|
|
|
|
it 'should return an url for the avatar' do
|
|
|
|
project = create(:project)
|
|
|
|
project.avatar = File.open(avatar_file_path)
|
|
|
|
project.save!
|
2015-02-28 12:07:53 -05:00
|
|
|
avatar_url = "http://localhost/uploads/project/avatar/#{ project.id }/gitlab_logo.png"
|
2015-01-24 13:02:58 -05:00
|
|
|
expect(project_icon("#{project.namespace.to_param}/#{project.to_param}").to_s).to eq(
|
2015-02-28 12:07:53 -05:00
|
|
|
"<img alt=\"Gitlab logo\" src=\"#{avatar_url}\" />"
|
2015-02-12 13:17:35 -05:00
|
|
|
)
|
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)
|
|
|
|
project.save!
|
|
|
|
|
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-01-24 13:02:58 -05:00
|
|
|
expect(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
|
2013-10-06 14:13:56 -04:00
|
|
|
avatar_file_path = File.join(Rails.root, 'public', 'gitlab_logo.png')
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should return an url for the avatar' do
|
2013-10-06 14:13:56 -04:00
|
|
|
user = create(:user)
|
|
|
|
user.avatar = File.open(avatar_file_path)
|
|
|
|
user.save!
|
2015-02-12 13:53:23 -05:00
|
|
|
expect(avatar_icon(user.email).to_s).
|
|
|
|
to match("/uploads/user/avatar/#{ user.id }/gitlab_logo.png")
|
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
|
|
|
|
Gitlab.config.gitlab.stub(relative_url_root: '/gitlab')
|
2014-12-05 09:59:55 -05:00
|
|
|
Gitlab.config.gitlab.stub(url: Settings.send(:build_gitlab_url))
|
|
|
|
|
|
|
|
user = create(:user)
|
|
|
|
user.avatar = File.open(avatar_file_path)
|
|
|
|
user.save!
|
2015-02-12 13:53:23 -05:00
|
|
|
expect(avatar_icon(user.email).to_s).
|
|
|
|
to match("/gitlab/uploads/user/avatar/#{ user.id }/gitlab_logo.png")
|
2014-12-05 09:59:55 -05:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should call gravatar_icon when no avatar is present' do
|
2014-06-13 12:35:21 -04:00
|
|
|
user = create(:user, email: 'test@example.com')
|
2013-10-06 14:13:56 -04:00
|
|
|
user.save!
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(avatar_icon(user.email).to_s).to eq('http://www.gravatar.com/avatar/55502f40dc8b7c769880b10874abc9d0?s=40&d=identicon')
|
2013-10-06 14:13:56 -04:00
|
|
|
end
|
|
|
|
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-01-19 15:37:20 -05:00
|
|
|
it 'should return a generic avatar path when Gravatar is disabled' do
|
2015-01-08 16:21:00 -05:00
|
|
|
ApplicationSetting.any_instance.stub(gravatar_enabled?: false)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(gravatar_icon(user_email)).to match('no_avatar.png')
|
2012-08-15 21:06:08 -04:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should return a generic avatar path when email is blank' do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(gravatar_icon('')).to match('no_avatar.png')
|
2012-08-15 21:06:08 -04:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should return default gravatar url' do
|
2014-06-13 12:35:21 -04:00
|
|
|
Gitlab.config.gitlab.stub(https: false)
|
2015-02-12 13:53:23 -05:00
|
|
|
url = 'http://www.gravatar.com/avatar/b58c6f14d292556214bd64909bcdb118'
|
|
|
|
expect(gravatar_icon(user_email)).to match(url)
|
2012-12-06 15:44:22 -05:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should use SSL when appropriate' do
|
2014-06-13 12:35:21 -04:00
|
|
|
Gitlab.config.gitlab.stub(https: true)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(gravatar_icon(user_email)).to match('https://secure.gravatar.com')
|
2012-08-15 21:06:08 -04:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should return custom gravatar path when gravatar_url is set' do
|
2013-12-14 08:43:48 -05:00
|
|
|
allow(self).to receive(:request).and_return(double(:ssl? => false))
|
2015-02-12 13:53:23 -05:00
|
|
|
allow(Gitlab.config.gravatar).
|
|
|
|
to receive(:plain_url).
|
|
|
|
and_return('http://example.local/?s=%{size}&hash=%{hash}')
|
|
|
|
url = 'http://example.local/?s=20&hash=b58c6f14d292556214bd64909bcdb118'
|
|
|
|
expect(gravatar_icon(user_email, 20)).to eq(url)
|
2012-12-06 15:44:22 -05:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should accept a custom size' do
|
2013-12-14 08:43:48 -05:00
|
|
|
allow(self).to receive(:request).and_return(double(:ssl? => false))
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(gravatar_icon(user_email, 64)).to match(/\?s=64/)
|
2012-08-15 21:06:08 -04:00
|
|
|
end
|
2012-12-06 15:44:22 -05:00
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should use default size when size is wrong' do
|
2013-12-14 08:43:48 -05:00
|
|
|
allow(self).to receive(:request).and_return(double(:ssl? => false))
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(gravatar_icon(user_email, nil)).to match(/\?s=40/)
|
2012-12-06 15:44:22 -05:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'should be case insensitive' do
|
2013-12-14 08:43:48 -05:00
|
|
|
allow(self).to receive(:request).and_return(double(:ssl? => false))
|
2015-02-12 13:53:23 -05:00
|
|
|
expect(gravatar_icon(user_email)).
|
|
|
|
to eq(gravatar_icon(user_email.upcase + ' '))
|
2012-12-06 15:44:22 -05:00
|
|
|
end
|
2014-03-09 00:00:43 -05:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
describe 'grouped_options_refs' do
|
2014-03-09 00:00:43 -05:00
|
|
|
# Override Rails' grouped_options_for_select helper since HTML is harder to work with
|
|
|
|
def grouped_options_for_select(options, *args)
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:options) { grouped_options_refs }
|
|
|
|
|
|
|
|
before do
|
|
|
|
# Must be an instance variable
|
|
|
|
@project = create(:project)
|
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'includes a list of branch names' do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(options[0][0]).to eq('Branches')
|
|
|
|
expect(options[0][1]).to include('master', 'feature')
|
2014-03-09 00:00:43 -05:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'includes a list of tag names' do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(options[1][0]).to eq('Tags')
|
2015-02-12 13:53:23 -05:00
|
|
|
expect(options[1][1]).to include('v1.0.0', 'v1.1.0')
|
2014-03-09 00:00:43 -05:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'includes a specific commit ref if defined' do
|
2014-03-09 00:00:43 -05:00
|
|
|
# Must be an instance variable
|
|
|
|
@ref = '2ed06dc41dbb5936af845b87d79e05bbf24c73b8'
|
2012-12-06 15:44:22 -05:00
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(options[2][0]).to eq('Commit')
|
|
|
|
expect(options[2][1]).to eq([@ref])
|
2014-03-09 00:00:43 -05:00
|
|
|
end
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
it 'sorts tags in a natural order' do
|
2014-03-09 00:00:43 -05:00
|
|
|
# Stub repository.tag_names to make sure we get some valid testing data
|
2015-02-12 13:53:23 -05:00
|
|
|
expect(@project.repository).to receive(:tag_names).
|
2015-02-25 15:40:27 -05:00
|
|
|
and_return(['v1.0.9', 'v1.0.10', 'v2.0', 'v3.1.4.2', 'v2.0rc1¿',
|
|
|
|
'v1.0.9a', 'v2.0-rc1', 'v2.0rc2'])
|
2014-03-09 00:00:43 -05:00
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
expect(options[1][1]).
|
2015-02-25 15:40:27 -05:00
|
|
|
to eq(['v3.1.4.2', 'v2.0', 'v2.0rc2', 'v2.0rc1¿', 'v2.0-rc1', 'v1.0.10',
|
|
|
|
'v1.0.9', 'v1.0.9a'])
|
2014-03-09 00:00:43 -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-02-12 13:17:35 -05:00
|
|
|
expect(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-02-12 13:17:35 -05:00
|
|
|
expect(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-02-12 13:17:35 -05:00
|
|
|
expect(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'
|
|
|
|
time = Time.zone.parse('2015-07-02 08:00')
|
2015-06-17 14:04:14 -04:00
|
|
|
element = time_ago_with_tooltip(time, *arguments)
|
|
|
|
|
|
|
|
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
|
2015-06-19 16:49:52 -04:00
|
|
|
expect(element.text).to eq '2015-07-02 08:00:00 UTC'
|
2015-06-17 14:04:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a datetime attribute' do
|
2015-06-19 16:49:52 -04:00
|
|
|
expect(element.attr('datetime')).to eq '2015-07-02T08:00:00Z'
|
2015-06-17 14:04:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a formatted title attribute' do
|
2015-06-19 16:49:52 -04:00
|
|
|
expect(element.attr('title')).to eq 'Jul 02, 2015 8:00am'
|
2015-06-17 14:04:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes a default js-timeago class' do
|
|
|
|
expect(element.attr('class')).to eq 'time_ago js-timeago'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts a custom html_class' do
|
|
|
|
expect(element(html_class: 'custom_class').attr('class')).to eq 'custom_class js-timeago'
|
|
|
|
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'
|
|
|
|
expect(el.text).to include "$('.js-timeago').timeago()"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows the script tag to be excluded' do
|
|
|
|
expect(element(skip_js: true)).not_to include 'script'
|
|
|
|
end
|
|
|
|
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' }
|
|
|
|
|
|
|
|
it 'should preserve encoding' do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(content.encoding.name).to eq('UTF-8')
|
2014-07-31 05:22:46 -04:00
|
|
|
expect(render_markup('foo.rst', content).encoding.name).to eq('UTF-8')
|
|
|
|
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
|
|
|
|
expect(self).to receive(:gitlab_markdown?).with('foo.md').and_return(true)
|
|
|
|
expect(self).to receive(:markdown).and_return('NOEL')
|
|
|
|
|
|
|
|
expect(render_markup('foo.md', content)).to eq('NOEL')
|
|
|
|
end
|
|
|
|
|
2015-05-12 19:07:48 -04:00
|
|
|
it "should delegate to #asciidoc when file name corresponds to AsciiDoc" do
|
|
|
|
expect(self).to receive(:asciidoc?).with('foo.adoc').and_return(true)
|
|
|
|
expect(self).to receive(:asciidoc).and_return('NOEL')
|
|
|
|
|
|
|
|
expect(render_markup('foo.adoc', content)).to eq('NOEL')
|
|
|
|
end
|
2014-07-31 05:22:46 -04:00
|
|
|
end
|
2012-08-15 21:06:08 -04:00
|
|
|
end
|