#-- encoding: UTF-8 #-- copyright # OpenProject is a project management system. # Copyright (C) 2012-2015 the OpenProject Foundation (OPF) # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. # # OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: # Copyright (C) 2006-2013 Jean-Philippe Lang # Copyright (C) 2010-2013 the ChiliProject Team # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # See doc/COPYRIGHT.rdoc for more details. #++ require 'spec_helper' describe AvatarHelper, type: :helper do let(:user) { FactoryGirl.build_stubbed(:user) } def expected_image_tag(digest, options = {}) tag_options = options.reverse_merge(title: user.name, alt: 'Gravatar', class: 'avatar').delete_if { |key, value| value.nil? || key == :ssl } image_tag expected_url(digest, options), tag_options end def expected_url(digest, options = {}) ssl = !!options[:ssl] host = ssl ? 'https://secure.gravatar.com' : 'http://gravatar.com' "#{host}/avatar/#{digest}?secure=#{ssl}" end describe 'ssl dependent on protocol settings' do it "should be set to secure if protocol is 'https'" do with_settings protocol: 'https' do expect(described_class.secure?).to be true end end it "should be set to unsecure if protocol is 'http'" do with_settings protocol: 'http' do expect(described_class.secure?).to be false end end end describe 'default avatar dependent on settings' do it 'should be set to value of setting' do with_settings gravatar_default: 'Wavatars' do expect(described_class.default).to eq 'Wavatars' end end it "should be set to unsecure if protocol is 'http'" do with_settings gravatar_default: '' do expect(described_class.default).to be_nil end end end describe '#avatar' do it 'should return a gravatar image tag if a user is provided' do digest = Digest::MD5.hexdigest(user.mail) with_settings gravatar_enabled: '1', protocol: 'http' do expect(helper.avatar(user)).to be_html_eql(expected_image_tag(digest)) end end it 'should return a gravatar image tag with ssl if the request was ssl required' do digest = Digest::MD5.hexdigest(user.mail) with_settings gravatar_enabled: '1', protocol: 'https' do expect(helper.avatar(user)).to be_html_eql(expected_image_tag(digest, ssl: true)) end end it 'should return an empty string if a non parsable (e-mail) string is provided' do with_settings gravatar_enabled: '1' do expect(helper.avatar('just the name')).to eq('') end end it 'should return an empty string if nil is provided' do with_settings gravatar_enabled: '1' do expect(helper.avatar(nil)).to eq('') end end it 'should return an empty string if gravatar is disabled' do with_settings gravatar_enabled: '0' do expect(helper.avatar(user)).to eq('') end end it 'should return a gravatar image tag if a parsable e-mail string is provided' do with_settings gravatar_enabled: '1' do mail = '' digest = Digest::MD5.hexdigest('e-mail@mail.de') expect(helper.avatar(mail)).to be_html_eql(expected_image_tag(digest, title: nil)) end end end describe '#avatar_url' do it 'should return a gravatar url if a user is provided' do digest = Digest::MD5.hexdigest(user.mail) with_settings gravatar_enabled: '1', protocol: 'http' do expect(helper.avatar_url(user)).to eq(expected_url(digest)) end end it 'should return a gravatar image tag with ssl if the request was ssl required' do digest = Digest::MD5.hexdigest(user.mail) with_settings gravatar_enabled: '1', protocol: 'https' do expect(helper.avatar_url(user)).to eq(expected_url(digest, ssl: true)) end end it 'should return an empty string if a non parsable (e-mail) string is provided' do with_settings gravatar_enabled: '1' do expect(helper.avatar_url('just the name')).to eq('') end end it 'should return an empty string if nil is provided' do with_settings gravatar_enabled: '1' do expect(helper.avatar_url(nil)).to eq('') end end it 'should return an empty string if gravatar is disabled' do with_settings gravatar_enabled: '0' do expect(helper.avatar_url(user)).to eq('') end end it 'should return a gravatar image tag if a parsable e-mail string is provided' do with_settings gravatar_enabled: '1' do mail = '' digest = Digest::MD5.hexdigest('e-mail@mail.de') expect(helper.avatar_url(mail)).to eq(expected_url(digest)) end end end end