gitlab-org--gitlab-foss/spec/models/group_spec.rb

58 lines
1.6 KiB
Ruby
Raw Normal View History

2012-10-02 15:17:12 +00:00
# == Schema Information
#
2012-11-24 20:16:51 +00:00
# Table name: namespaces
2012-10-02 15:17:12 +00:00
#
2013-03-15 13:16:02 +00:00
# id :integer not null, primary key
# name :string(255) not null
# path :string(255) not null
2013-10-01 12:15:28 +00:00
# owner_id :integer
2013-03-15 13:16:02 +00:00
# created_at :datetime not null
# updated_at :datetime not null
# type :string(255)
# description :string(255) default(""), not null
2012-10-02 15:17:12 +00:00
#
require 'spec_helper'
describe Group do
2012-10-02 15:20:46 +00:00
let!(:group) { create(:group) }
2013-06-26 12:32:09 +00:00
describe "Associations" do
it { should have_many :projects }
it { should have_many :users_groups }
end
2012-10-02 15:17:12 +00:00
it { should validate_presence_of :name }
it { should validate_uniqueness_of(:name) }
2012-11-23 18:53:24 +00:00
it { should validate_presence_of :path }
it { should validate_uniqueness_of(:path) }
2013-09-26 11:52:17 +00:00
it { should_not validate_presence_of :owner }
2012-11-21 04:14:05 +00:00
describe :users do
2013-09-26 11:52:17 +00:00
it { group.users.should == group.owners }
2012-11-21 04:14:05 +00:00
end
describe :human_name do
it { group.human_name.should == group.name }
end
2013-06-26 12:32:09 +00:00
describe :add_users do
let(:user) { create(:user) }
2013-09-26 11:52:17 +00:00
before { group.add_user(user, UsersGroup::MASTER) }
2013-06-26 12:32:09 +00:00
it { group.users_groups.masters.map(&:user).should include(user) }
end
describe :add_users do
let(:user) { create(:user) }
before { group.add_users([user.id], UsersGroup::GUEST) }
it "should update the group permission" do
group.users_groups.guests.map(&:user).should include(user)
group.add_users([user.id], UsersGroup::DEVELOPER)
group.users_groups.developers.map(&:user).should include(user)
group.users_groups.guests.map(&:user).should_not include(user)
end
end
2012-10-02 15:17:12 +00:00
end