2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-03-11 16:08:41 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Repository do
|
2013-04-24 11:41:43 +01:00
|
|
|
before { stub_symlink_methods }
|
|
|
|
|
|
|
|
context 'ensures that validations and associations exist' do
|
|
|
|
before do
|
|
|
|
# Need for validate_uniqueness_of check
|
|
|
|
FactoryGirl.create(:repository)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { should belong_to(:platform) }
|
|
|
|
it { should have_many(:project_to_repositories).validate(true) }
|
|
|
|
it { should have_many(:projects).through(:project_to_repositories) }
|
|
|
|
|
|
|
|
it { should validate_presence_of(:name) }
|
|
|
|
it { should validate_uniqueness_of(:name).case_insensitive.scoped_to(:platform_id) }
|
|
|
|
it { should allow_value('basic_repository-name-1234').for(:name) }
|
|
|
|
it { should_not allow_value('.!').for(:name) }
|
|
|
|
it { should_not allow_value('Main').for(:name) }
|
|
|
|
it { should_not allow_value("!!\nbang_bang\n!!").for(:name) }
|
|
|
|
it { should validate_presence_of(:description) }
|
|
|
|
|
|
|
|
it { should have_readonly_attribute(:name) }
|
|
|
|
it { should have_readonly_attribute(:platform_id) }
|
|
|
|
|
|
|
|
it { should_not allow_mass_assignment_of(:platform) }
|
|
|
|
it { should_not allow_mass_assignment_of(:platform_id) }
|
|
|
|
|
|
|
|
end
|
2011-12-08 14:03:56 +00:00
|
|
|
|
|
|
|
context 'when create with same owner that platform' do
|
2013-04-24 11:41:43 +01:00
|
|
|
before do
|
2012-03-29 21:34:22 +01:00
|
|
|
@platform = FactoryGirl.create(:platform)
|
2011-12-08 14:03:56 +00:00
|
|
|
@params = {:name => 'tst_platform', :description => 'test platform'}
|
|
|
|
end
|
|
|
|
|
2012-02-20 23:13:05 +00:00
|
|
|
it 'it should increase Repository.count by 1' do
|
|
|
|
rep = Repository.create(@params) {|r| r.platform = @platform}
|
|
|
|
@platform.repositories.count.should eql(1)
|
2011-12-08 14:03:56 +00:00
|
|
|
end
|
|
|
|
end
|
2012-11-07 10:20:24 +00:00
|
|
|
|
2013-04-24 11:41:43 +01:00
|
|
|
context 'ensures that folder of repository will be removed after destroy' do
|
|
|
|
let(:arch) { FactoryGirl.create(:arch) }
|
|
|
|
let(:types) { ['SRPM', arch.name] }
|
|
|
|
|
|
|
|
it "repository of main platform" do
|
|
|
|
FactoryGirl.create(:arch)
|
|
|
|
r = FactoryGirl.create(:repository)
|
|
|
|
paths = types.
|
|
|
|
map{ |type| "#{r.platform.path}/repository/#{type}/#{r.name}" }.
|
|
|
|
each{ |path| FileUtils.mkdir_p path }
|
|
|
|
r.destroy
|
|
|
|
paths.each{ |path| Dir.exists?(path).should be_false }
|
|
|
|
end
|
|
|
|
|
|
|
|
it "repository of personal platform" do
|
|
|
|
FactoryGirl.create(:arch)
|
|
|
|
main_platform = FactoryGirl.create(:platform)
|
|
|
|
r = FactoryGirl.create(:personal_repository)
|
|
|
|
paths = types.
|
|
|
|
map{ |type| "#{r.platform.path}/repository/#{main_platform.name}/#{type}/#{r.name}" }.
|
|
|
|
each{ |path| FileUtils.mkdir_p path }
|
|
|
|
r.destroy
|
|
|
|
paths.each{ |path| Dir.exists?(path).should be_false }
|
|
|
|
end
|
2012-11-07 10:20:24 +00:00
|
|
|
|
2012-04-02 16:43:59 +01:00
|
|
|
end
|
2012-11-07 10:20:24 +00:00
|
|
|
|
2011-03-11 16:08:41 +00:00
|
|
|
end
|