gitlabhq/spec/models/users_project_spec.rb

72 lines
2 KiB
Ruby
Raw Normal View History

2012-10-09 10:14:17 +02:00
# == Schema Information
#
# Table name: users_projects
#
2012-11-19 19:24:05 +01:00
# id :integer not null, primary key
# user_id :integer not null
# project_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
# project_access :integer default(0), not null
2012-10-09 10:14:17 +02:00
#
2011-10-08 23:36:38 +02:00
require 'spec_helper'
describe UsersProject do
describe "Associations" do
it { should belong_to(:project) }
it { should belong_to(:user) }
end
describe "Mass assignment" do
it { should_not allow_mass_assignment_of(:project_id) }
end
2011-10-08 23:36:38 +02:00
describe "Validation" do
let!(:users_project) { create(:users_project) }
2012-10-09 02:10:16 +02:00
it { should validate_presence_of(:user) }
2012-09-06 23:05:23 +02:00
it { should validate_uniqueness_of(:user_id).scoped_to(:project_id).with_message(/already exists/) }
2012-10-09 02:10:16 +02:00
it { should validate_presence_of(:project) }
2011-10-08 23:36:38 +02:00
end
describe "Delegate methods" do
2011-10-08 23:36:38 +02:00
it { should respond_to(:user_name) }
it { should respond_to(:user_email) }
end
describe :import_team do
before do
@abilities = Six.new
@abilities << Ability
@project_1 = create :project
@project_2 = create :project
@user_1 = create :user
@user_2 = create :user
@project_1.add_access @user_1, :write
@project_2.add_access @user_2, :read
@status = UsersProject.import_team(@project_1, @project_2)
end
it { @status.should be_true }
describe 'project 2 should get user 1 as developer. user_2 should not be changed' do
it { @project_2.users.should include(@user_1) }
it { @project_2.users.should include(@user_2) }
it { @abilities.allowed?(@user_1, :write_project, @project_2).should be_true }
it { @abilities.allowed?(@user_2, :read_project, @project_2).should be_true }
end
describe 'project 1 should not be changed' do
it { @project_1.users.should include(@user_1) }
it { @project_1.users.should_not include(@user_2) }
end
end
2011-10-08 23:36:38 +02:00
end