# frozen_string_literal: true require 'spec_helper' RSpec.describe WikiPageVersionHelper do let_it_be(:project) { create(:project, :public, :repository) } let_it_be(:user) { create(:user, username: 'foo') } let(:commit_with_user) { create(:commit, project: project, author: user)} let(:commit_without_user) { create(:commit, project: project, author_name: 'Foo', author_email: 'foo@example.com')} let(:wiki_page_version) { Gitlab::Git::WikiPageVersion.new(commit, nil) } describe '#wiki_page_version_author_url' do subject { helper.wiki_page_version_author_url(wiki_page_version) } context 'when user exists' do let(:commit) { commit_with_user } it 'returns the link to the user profile' do expect(subject).to eq('http://localhost/foo') end end context 'when user does not exist' do let(:commit) { commit_without_user } it 'returns the mailto link' do expect(subject).to eq "mailto:#{commit_without_user.author_email}" end end end describe '#wiki_page_version_author_avatar' do let(:commit) { commit_with_user } subject { helper.wiki_page_version_author_avatar(wiki_page_version) } it 'returns the user avatar', :aggregate_failures do avatar = Nokogiri::HTML.parse(subject) expect(avatar.css('img')[0].attr('class')).to eq('avatar s24 float-none gl-mr-0! lazy') expect(avatar.css('img')[0].attr('data-src')).not_to be_empty expect(avatar.css('img')[0].attr('src')).not_to be_empty end end describe '#wiki_page_version_author_header', :aggregate_failures do let(:commit_with_xss) { create(:commit, project: project, author_email: "#' style=animation-name:blinking-dot onanimationstart=alert(document.domain) other", author_name: "foo") } let(:header) { Nokogiri::HTML.parse(subject) } subject { helper.wiki_page_version_author_header(wiki_page_version) } context 'when user exists' do let(:commit) { commit_with_user } it 'renders commit header with user info' do expect(header.css('a')[0].attr('href')).to eq("http://localhost/foo") expect(header.css('a')[0].children[2].to_s).to eq("#{user.name}") end end context 'when user does not exist' do let(:commit) { commit_without_user } it 'renders commit header with info from commit' do expect(header.css('a')[0].attr('href')).to eq("mailto:#{commit.author_email}") expect(header.css('a')[0].children[2].to_s).to eq("#{wiki_page_version.author_name}") end end context 'when user info has XSS' do let(:commit) { commit_with_xss } it 'sets the right href and escapes HTML chars' do expect(header.css('a')[0].attr('href')).to eq("mailto:#{commit.author_email}") expect(header.css('a')[0].children[2].to_s).to eq("<i>foo</i>") end end end end