Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 686e43d8d1037a34392f881c17bad3698d41a8c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# == Schema Information
#
# Table name: namespaces
#
#  id          :integer          not null, primary key
#  name        :string(255)      not null
#  path        :string(255)      not null
#  owner_id    :integer
#  created_at  :datetime         not null
#  updated_at  :datetime         not null
#  type        :string(255)
#  description :string(255)      default(""), not null
#

require 'spec_helper'

describe Group do
  let!(:group) { create(:group) }

  describe "Associations" do
    it { should have_many :projects }
    it { should have_many :users_groups }
  end

  it { should validate_presence_of :name }
  it { should validate_uniqueness_of(:name) }
  it { should validate_presence_of :path }
  it { should validate_uniqueness_of(:path) }
  it { should_not validate_presence_of :owner }

  describe :users do
    it { group.users.should == group.owners }
  end

  describe :human_name do
    it { group.human_name.should == group.name }
  end

  describe :add_users do
    let(:user) { create(:user) }
    before { group.add_user(user, UsersGroup::MASTER) }

    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

  describe :avatar_type do
    let(:user) { create(:user) }
    before { group.add_user(user, UsersGroup::MASTER) }

    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
end