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'
|
|
|
|
|
|
|
|
describe Group do
|
2012-10-02 11:20:46 -04:00
|
|
|
let!(:group) { create(:group) }
|
|
|
|
|
2013-06-26 08:32:09 -04:00
|
|
|
describe "Associations" do
|
|
|
|
it { should have_many :projects }
|
2014-09-14 12:51:54 -04:00
|
|
|
it { should have_many :group_members }
|
2013-06-26 08:32:09 -04:00
|
|
|
end
|
|
|
|
|
2012-10-02 11:17:12 -04:00
|
|
|
it { should validate_presence_of :name }
|
|
|
|
it { should validate_uniqueness_of(:name) }
|
2012-11-23 13:53:24 -05:00
|
|
|
it { should validate_presence_of :path }
|
|
|
|
it { should validate_uniqueness_of(:path) }
|
2013-09-26 07:52:17 -04:00
|
|
|
it { should_not validate_presence_of :owner }
|
2012-11-20 23:14:05 -05:00
|
|
|
|
|
|
|
describe :users do
|
2013-09-26 07:52:17 -04:00
|
|
|
it { group.users.should == group.owners }
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe :human_name do
|
|
|
|
it { group.human_name.should == group.name }
|
|
|
|
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
|
|
|
|
2014-09-14 12:32:51 -04:00
|
|
|
it { group.group_members.masters.map(&:user).should 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
|
2014-09-14 12:32:51 -04:00
|
|
|
group.group_members.guests.map(&:user).should include(user)
|
|
|
|
group.add_users([user.id], GroupMember::DEVELOPER)
|
|
|
|
group.group_members.developers.map(&:user).should include(user)
|
|
|
|
group.group_members.guests.map(&:user).should_not 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')
|
|
|
|
group.avatar_type.should be_true
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should be false if avatar is html page" do
|
|
|
|
group.update_attribute(:avatar, 'uploads/avatar.html')
|
|
|
|
group.avatar_type.should == ["only images allowed"]
|
|
|
|
end
|
|
|
|
end
|
2012-10-02 11:17:12 -04:00
|
|
|
end
|