126 lines
3.9 KiB
Ruby
126 lines
3.9 KiB
Ruby
# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
require 'spec_helper'
|
|
|
|
describe PeopleHelper, :type => :helper do
|
|
before do
|
|
@user = alice
|
|
@person = FactoryGirl.create(:person)
|
|
end
|
|
|
|
describe "#person_image_link" do
|
|
it "returns an empty string if person is nil" do
|
|
expect(person_image_link(nil)).to eq("")
|
|
end
|
|
it "returns a link containing the person's photo" do
|
|
expect(person_image_link(@person)).to include(@person.profile.image_url)
|
|
end
|
|
it "returns a link to the person's profile" do
|
|
expect(person_image_link(@person)).to include(person_path(@person))
|
|
end
|
|
end
|
|
|
|
describe "#person_image_tag" do
|
|
it "should not allow basic XSS/HTML" do
|
|
@person.profile.first_name = "I'm <h1>Evil"
|
|
@person.profile.last_name = "I'm <h1>Evil"
|
|
expect(person_image_tag(@person)).not_to include("<h1>")
|
|
end
|
|
end
|
|
|
|
describe '#person_link' do
|
|
before do
|
|
@person = FactoryGirl.create(:person)
|
|
end
|
|
|
|
it 'includes the name of the person if they have a first name' do
|
|
expect(person_link(@person)).to include @person.profile.first_name
|
|
end
|
|
|
|
it 'uses diaspora handle if the person has no first or last name' do
|
|
@person.profile.first_name = nil
|
|
@person.profile.last_name = nil
|
|
|
|
expect(person_link(@person)).to include @person.diaspora_handle
|
|
end
|
|
|
|
it 'uses diaspora handle if first name and first name are rails#blank?' do
|
|
@person.profile.first_name = " "
|
|
@person.profile.last_name = " "
|
|
|
|
expect(person_link(@person)).to include @person.diaspora_handle
|
|
end
|
|
|
|
it "should not allow basic XSS/HTML" do
|
|
@person.profile.first_name = "I'm <h1>Evil"
|
|
@person.profile.last_name = "I'm <h1>Evil"
|
|
expect(person_link(@person)).not_to include("<h1>")
|
|
end
|
|
|
|
it 'links by id for a local user' do
|
|
expect(person_link(@user.person)).to include "href='#{person_path(@user.person)}'"
|
|
end
|
|
end
|
|
|
|
describe "#person_href" do
|
|
it "calls local_or_remote_person_path and passes through the options" do
|
|
opts = {:absolute => true}
|
|
|
|
expect(self).to receive(:local_or_remote_person_path).with(@person, opts).exactly(1).times
|
|
|
|
person_href(@person, opts)
|
|
end
|
|
|
|
it "returns a href attribute" do
|
|
expect(person_href(@person)).to include "href="
|
|
end
|
|
end
|
|
|
|
describe '#local_or_remote_person_path' do
|
|
before do
|
|
@user = FactoryGirl.create(:user)
|
|
end
|
|
|
|
it "links by id if there is a period in the user's username" do
|
|
@user.username = "invalid.username"
|
|
expect(@user.save(:validate => false)).to eq(true)
|
|
person = @user.person
|
|
person.diaspora_handle = "#{@user.username}@#{AppConfig.pod_uri.authority}"
|
|
person.save!
|
|
|
|
expect(local_or_remote_person_path(@user.person)).to eq(person_path(@user.person))
|
|
end
|
|
|
|
it 'links by username for a local user' do
|
|
expect(local_or_remote_person_path(@user.person)).to eq(user_profile_path(:username => @user.username))
|
|
end
|
|
|
|
it 'links by id for a remote person' do
|
|
expect(local_or_remote_person_path(@person)).to eq(person_path(@person))
|
|
end
|
|
end
|
|
|
|
describe '#sharing_message' do
|
|
before do
|
|
@contact = FactoryGirl.create(:contact, :person => @person)
|
|
end
|
|
|
|
context 'when the contact is sharing' do
|
|
it 'shows the sharing message' do
|
|
message = I18n.t('people.helper.is_sharing', :name => @person.name)
|
|
allow(@contact).to receive(:sharing?).and_return(true)
|
|
expect(sharing_message(@person, @contact)).to include(message)
|
|
end
|
|
end
|
|
|
|
context 'when the contact is not sharing' do
|
|
it 'does show the not sharing message' do
|
|
message = I18n.t('people.helper.is_not_sharing', :name => @person.name)
|
|
allow(@contact).to receive(:sharing?).and_return(false)
|
|
expect(sharing_message(@person, @contact)).to include(message)
|
|
end
|
|
end
|
|
end
|
|
end
|