2012-11-22 14:41:16 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-12-09 04:50:51 -05:00
|
|
|
describe Namespace, models: true do
|
2012-11-22 14:41:16 -05:00
|
|
|
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
|
|
|
|
2016-07-11 18:12:31 -04: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
|
|
|
|
|
2016-07-11 18:12:31 -04:00
|
|
|
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
|
|
|
|
|
2016-03-04 06:15:30 -05:00
|
|
|
describe '.search' do
|
2016-03-04 06:06:25 -05:00
|
|
|
let(:namespace) { create(:namespace) }
|
|
|
|
|
|
|
|
it 'returns namespaces with a matching name' do
|
|
|
|
expect(described_class.search(namespace.name)).to eq([namespace])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns namespaces with a partially matching name' do
|
|
|
|
expect(described_class.search(namespace.name[0..2])).to eq([namespace])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns namespaces with a matching name regardless of the casing' do
|
|
|
|
expect(described_class.search(namespace.name.upcase)).to eq([namespace])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns namespaces with a matching path' do
|
|
|
|
expect(described_class.search(namespace.path)).to eq([namespace])
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
|
2016-03-04 06:06:25 -05:00
|
|
|
it 'returns namespaces with a partially matching path' do
|
|
|
|
expect(described_class.search(namespace.path[0..2])).to eq([namespace])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns namespaces with a matching path regardless of the casing' do
|
|
|
|
expect(described_class.search(namespace.path.upcase)).to eq([namespace])
|
|
|
|
end
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
|
2016-07-11 18:12:31 -04:00
|
|
|
describe '#move_dir' do
|
2012-11-20 23:14:05 -05:00
|
|
|
before do
|
|
|
|
@namespace = create :namespace
|
2016-06-22 17:04:51 -04:00
|
|
|
@project = create :project, namespace: @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
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "raises 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
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "moves dir if path changed" do
|
2012-11-20 23:14:05 -05:00
|
|
|
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
|
2016-05-16 19:03:55 -04:00
|
|
|
|
|
|
|
context "when any project has container tags" do
|
|
|
|
before do
|
|
|
|
stub_container_registry_config(enabled: true)
|
|
|
|
stub_container_registry_tags('tag')
|
|
|
|
|
|
|
|
create(:empty_project, namespace: @namespace)
|
|
|
|
|
|
|
|
allow(@namespace).to receive(:path_was).and_return(@namespace.path)
|
|
|
|
allow(@namespace).to receive(:path).and_return('new_path')
|
|
|
|
end
|
|
|
|
|
|
|
|
it { expect { @namespace.move_dir }.to raise_error('Namespace cannot be moved, because at least one project has tags in container registry') }
|
|
|
|
end
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe :rm_dir do
|
2016-06-22 17:04:51 -04:00
|
|
|
let!(:project) { create(:project, namespace: namespace) }
|
|
|
|
let!(:path) { File.join(Gitlab.config.repositories.storages.default, namespace.path) }
|
|
|
|
|
|
|
|
before { namespace.destroy }
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "removes its dirs when deleted" do
|
2016-06-22 17:04:51 -04:00
|
|
|
expect(File.exist?(path)).to be(false)
|
2012-11-20 23:14:05 -05:00
|
|
|
end
|
|
|
|
end
|
2015-03-03 02:06:59 -05:00
|
|
|
|
2016-07-11 18:12:31 -04:00
|
|
|
describe '.find_by_path_or_name' do
|
2015-03-03 02:06:59 -05:00
|
|
|
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
|