summaryrefslogtreecommitdiff
path: root/spec/models/namespace_spec.rb
blob: 3562ebed1ffe7bbf8f08b1492f0b9582dcbc4590 (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
73
74
75
76
77
78
# == 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
#  updated_at  :datetime
#  type        :string(255)
#  description :string(255)      default(""), not null
#  avatar      :string(255)
#

require 'spec_helper'

describe Namespace do
  let!(:namespace) { create(:namespace) }

  it { should have_many :projects }
  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 validate_presence_of :owner }

  describe "Mass assignment" do
  end

  describe "Respond to" do
    it { should respond_to(:human_name) }
    it { should respond_to(:to_param) }
  end

  it { Namespace.global_id.should == 'GLN' }

  describe :to_param do
    it { namespace.to_param.should == namespace.path }
  end

  describe :human_name do
    it { namespace.human_name.should == namespace.owner_name }
  end

  describe :search do
    before do
      @namespace = create :namespace
    end

    it { Namespace.search(@namespace.path).should == [@namespace] }
    it { Namespace.search('unknown').should == [] }
  end

  describe :move_dir do
    before do
      @namespace = create :namespace
      @namespace.stub(path_changed?: true)
    end

    it "should raise error when directory exists" do
      expect { @namespace.move_dir }.to raise_error("namespace directory cannot be moved")
    end

    it "should move dir if path changed" do
      new_path = @namespace.path + "_new"
      @namespace.stub(path_was: @namespace.path)
      @namespace.stub(path: new_path)
      @namespace.move_dir.should be_true
    end
  end

  describe :rm_dir do
    it "should remove dir" do
      namespace.rm_dir.should be_true
    end
  end
end