2012-10-02 11:17:12 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
2012-11-24 15:16:51 -05:00
|
|
|
# Table name: namespaces
|
2012-10-02 11:17:12 -04:00
|
|
|
#
|
2013-03-15 09:16:02 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# name :string(255) not null
|
|
|
|
# path :string(255) not null
|
2013-10-01 08:15:28 -04:00
|
|
|
# owner_id :integer
|
2014-04-09 08:05:03 -04:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2013-03-15 09:16:02 -04:00
|
|
|
# type :string(255)
|
|
|
|
# description :string(255) default(""), not null
|
2014-04-09 08:05:03 -04:00
|
|
|
# avatar :string(255)
|
2012-10-02 11:17:12 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-12-09 04:50:51 -05:00
|
|
|
describe Group, models: true do
|
2012-10-02 11:20:46 -04:00
|
|
|
let!(:group) { create(:group) }
|
|
|
|
|
2015-05-02 23:11:21 -04:00
|
|
|
describe 'associations' do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to have_many :projects }
|
|
|
|
it { is_expected.to have_many :group_members }
|
2013-06-26 08:32:09 -04:00
|
|
|
end
|
|
|
|
|
2015-05-02 23:11:21 -04:00
|
|
|
describe 'modules' do
|
|
|
|
subject { described_class }
|
|
|
|
|
|
|
|
it { is_expected.to include_module(Referable) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'validations' do
|
|
|
|
it { is_expected.to validate_presence_of :name }
|
|
|
|
it { is_expected.to validate_uniqueness_of(:name) }
|
|
|
|
it { is_expected.to validate_presence_of :path }
|
|
|
|
it { is_expected.to validate_uniqueness_of(:path) }
|
|
|
|
it { is_expected.not_to validate_presence_of :owner }
|
|
|
|
end
|
|
|
|
|
2015-11-18 06:27:21 -05:00
|
|
|
describe '.visible_to_user' do
|
|
|
|
let!(:group) { create(:group) }
|
|
|
|
let!(:user) { create(:user) }
|
|
|
|
|
|
|
|
subject { described_class.visible_to_user(user) }
|
|
|
|
|
|
|
|
describe 'when the user has access to a group' do
|
|
|
|
before do
|
|
|
|
group.add_user(user, Gitlab::Access::MASTER)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq([group]) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when the user does not have access to any groups' do
|
|
|
|
it { is_expected.to eq([]) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-05-02 23:11:21 -04:00
|
|
|
describe '#to_reference' do
|
|
|
|
it 'returns a String reference to the object' do
|
|
|
|
expect(group.to_reference).to eq "@#{group.name}"
|
|
|
|
end
|
|
|
|
end
|
2012-11-20 23:14:05 -05:00
|
|
|
|
|
|
|
describe :users do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(group.users).to eq(group.owners) }
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe :human_name do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(group.human_name).to eq(group.name) }
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
2013-06-26 08:32:09 -04:00
|
|
|
|
|
|
|
describe :add_users do
|
|
|
|
let(:user) { create(:user) }
|
2014-09-14 12:32:51 -04:00
|
|
|
before { group.add_user(user, GroupMember::MASTER) }
|
2013-06-26 08:32:09 -04:00
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(group.group_members.masters.map(&:user)).to include(user) }
|
2013-06-26 08:32:09 -04:00
|
|
|
end
|
2013-10-14 08:27:27 -04:00
|
|
|
|
|
|
|
describe :add_users do
|
|
|
|
let(:user) { create(:user) }
|
2014-09-14 12:32:51 -04:00
|
|
|
before { group.add_users([user.id], GroupMember::GUEST) }
|
2013-10-14 08:27:27 -04:00
|
|
|
|
|
|
|
it "should update the group permission" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(group.group_members.guests.map(&:user)).to include(user)
|
2014-09-14 12:32:51 -04:00
|
|
|
group.add_users([user.id], GroupMember::DEVELOPER)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(group.group_members.developers.map(&:user)).to include(user)
|
|
|
|
expect(group.group_members.guests.map(&:user)).not_to include(user)
|
2013-10-14 08:27:27 -04:00
|
|
|
end
|
|
|
|
end
|
2014-01-27 16:34:05 -05:00
|
|
|
|
|
|
|
describe :avatar_type do
|
|
|
|
let(:user) { create(:user) }
|
2014-09-14 12:32:51 -04:00
|
|
|
before { group.add_user(user, GroupMember::MASTER) }
|
2014-01-27 16:34:05 -05:00
|
|
|
|
|
|
|
it "should be true if avatar is image" do
|
|
|
|
group.update_attribute(:avatar, 'uploads/avatar.png')
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(group.avatar_type).to be_truthy
|
2014-01-27 16:34:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should be false if avatar is html page" do
|
|
|
|
group.update_attribute(:avatar, 'uploads/avatar.html')
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(group.avatar_type).to eq(["only images allowed"])
|
2014-01-27 16:34:05 -05:00
|
|
|
end
|
|
|
|
end
|
2012-10-02 11:17:12 -04:00
|
|
|
end
|