2012-11-24 15:16:51 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: namespaces
|
|
|
|
#
|
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)
|
2015-11-13 13:22:46 -05:00
|
|
|
# public :boolean default(FALSE)
|
2012-11-24 15:16:51 -05:00
|
|
|
#
|
|
|
|
|
2012-11-22 14:41:16 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Namespace do
|
|
|
|
let!(:namespace) { create(:namespace) }
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to have_many :projects }
|
|
|
|
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.to validate_presence_of :owner }
|
2012-11-25 04:57:01 -05:00
|
|
|
|
|
|
|
describe "Mass assignment" do
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Respond to" do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to respond_to(:human_name) }
|
|
|
|
it { is_expected.to respond_to(:to_param) }
|
2012-11-25 04:57:01 -05:00
|
|
|
end
|
2012-11-20 23:14:05 -05:00
|
|
|
|
|
|
|
describe :to_param do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(namespace.to_param).to eq(namespace.path) }
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe :human_name do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(namespace.human_name).to eq(namespace.owner_name) }
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe :search do
|
|
|
|
before do
|
|
|
|
@namespace = create :namespace
|
|
|
|
end
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(Namespace.search(@namespace.path)).to eq([@namespace]) }
|
|
|
|
it { expect(Namespace.search('unknown')).to eq([]) }
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe :move_dir do
|
|
|
|
before do
|
|
|
|
@namespace = create :namespace
|
2015-05-21 17:49:06 -04:00
|
|
|
allow(@namespace).to receive(:path_changed?).and_return(true)
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
|
2013-07-29 06:46:00 -04:00
|
|
|
it "should raise error when directory exists" do
|
2013-03-21 16:11:08 -04:00
|
|
|
expect { @namespace.move_dir }.to raise_error("namespace directory cannot be moved")
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should move dir if path changed" do
|
|
|
|
new_path = @namespace.path + "_new"
|
2015-05-21 17:49:06 -04:00
|
|
|
allow(@namespace).to receive(:path_was).and_return(@namespace.path)
|
|
|
|
allow(@namespace).to receive(:path).and_return(new_path)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(@namespace.move_dir).to be_truthy
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe :rm_dir do
|
|
|
|
it "should remove dir" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(namespace.rm_dir).to be_truthy
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
end
|
2015-03-03 02:06:59 -05:00
|
|
|
|
|
|
|
describe :find_by_path_or_name do
|
|
|
|
before do
|
|
|
|
@namespace = create(:namespace, name: 'WoW', path: 'woW')
|
|
|
|
end
|
|
|
|
|
|
|
|
it { expect(Namespace.find_by_path_or_name('wow')).to eq(@namespace) }
|
|
|
|
it { expect(Namespace.find_by_path_or_name('WOW')).to eq(@namespace) }
|
|
|
|
it { expect(Namespace.find_by_path_or_name('unknown')).to eq(nil) }
|
|
|
|
end
|
2015-03-24 09:53:30 -04:00
|
|
|
|
|
|
|
describe ".clean_path" do
|
|
|
|
|
|
|
|
let!(:user) { create(:user, username: "johngitlab-etc") }
|
|
|
|
let!(:namespace) { create(:namespace, path: "JohnGitLab-etc1") }
|
|
|
|
|
|
|
|
it "cleans the path and makes sure it's available" do
|
|
|
|
expect(Namespace.clean_path("-john+gitlab-ETC%.git@gmail.com")).to eq("johngitlab-ETC2")
|
|
|
|
end
|
|
|
|
end
|
2012-11-22 14:41:16 -05:00
|
|
|
end
|