kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
174 lines
5.8 KiB
174 lines
5.8 KiB
require File.dirname(__FILE__) + '/../spec_helper'
|
|
|
|
describe User, "#destroy" do
|
|
let(:user) { FactoryGirl.create(:user) }
|
|
let(:user2) { FactoryGirl.create(:user) }
|
|
let(:substitute_user) { DeletedUser.first }
|
|
let(:project) { FactoryGirl.create(:valid_project) }
|
|
|
|
before do
|
|
user
|
|
user2
|
|
end
|
|
|
|
after do
|
|
User.current = nil
|
|
end
|
|
|
|
shared_examples_for "costs updated journalized associated object" do
|
|
before do
|
|
User.current = user2
|
|
associations.each do |association|
|
|
associated_instance.send(association.to_s + "=", user2)
|
|
end
|
|
associated_instance.save!
|
|
|
|
User.current = user # in order to have the content journal created by the user
|
|
associated_instance.reload
|
|
associations.each do |association|
|
|
associated_instance.send(association.to_s + "=", user)
|
|
end
|
|
associated_instance.save!
|
|
|
|
user.destroy
|
|
associated_instance.reload
|
|
end
|
|
|
|
it { associated_class.find_by_id(associated_instance.id).should == associated_instance }
|
|
it "should replace the user on all associations" do
|
|
associations.each do |association|
|
|
associated_instance.send(association).should == substitute_user
|
|
end
|
|
end
|
|
it { associated_instance.journals.first.user.should == user2 }
|
|
it "should update first journal changed_data" do
|
|
associations.each do |association|
|
|
associated_instance.journals.first.changed_data["#{association}_id".to_sym].last.should == user2.id
|
|
end
|
|
end
|
|
it { associated_instance.journals.last.user.should == substitute_user }
|
|
it "should update second journal changed_data" do
|
|
associations.each do |association|
|
|
associated_instance.journals.last.changed_data["#{association}_id".to_sym].last.should == substitute_user.id
|
|
end
|
|
end
|
|
end
|
|
|
|
shared_examples_for "costs created journalized associated object" do
|
|
before do
|
|
User.current = user # in order to have the content journal created by the user
|
|
associations.each do |association|
|
|
associated_instance.send(association.to_s + "=", user)
|
|
end
|
|
associated_instance.save!
|
|
|
|
User.current = user2
|
|
associated_instance.reload
|
|
associations.each do |association|
|
|
associated_instance.send(association.to_s + "=", user2)
|
|
end
|
|
associated_instance.save!
|
|
|
|
user.destroy
|
|
associated_instance.reload
|
|
end
|
|
|
|
it { associated_class.find_by_id(associated_instance.id).should == associated_instance }
|
|
it "should keep the current user on all associations" do
|
|
associations.each do |association|
|
|
associated_instance.send(association).should == user2
|
|
end
|
|
end
|
|
it { associated_instance.journals.first.user.should == substitute_user }
|
|
it "should update the first journal" do
|
|
associations.each do |association|
|
|
associated_instance.journals.first.changed_data["#{association}_id".to_sym].last.should == substitute_user.id
|
|
end
|
|
end
|
|
it { associated_instance.journals.last.user.should == user2 }
|
|
it "should update the last journal" do
|
|
associations.each do |association|
|
|
associated_instance.journals.last.changed_data["#{association}_id".to_sym].first.should == substitute_user.id
|
|
associated_instance.journals.last.changed_data["#{association}_id".to_sym].last.should == user2.id
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "WHEN the user updated a cost object" do
|
|
let(:associations) { [:author] }
|
|
let(:associated_instance) { FactoryGirl.build(:variable_cost_object) }
|
|
let(:associated_class) { CostObject }
|
|
|
|
it_should_behave_like "costs updated journalized associated object"
|
|
end
|
|
|
|
describe "WHEN the user created a cost object" do
|
|
let(:associations) { [:author] }
|
|
let(:associated_instance) { FactoryGirl.build(:variable_cost_object) }
|
|
let(:associated_class) { CostObject }
|
|
|
|
it_should_behave_like "costs created journalized associated object"
|
|
end
|
|
|
|
describe "WHEN the user has a labor_budget_item associated" do
|
|
let(:item) { FactoryGirl.build(:labor_budget_item, :user => user) }
|
|
|
|
before do
|
|
item.save!
|
|
|
|
user.destroy
|
|
end
|
|
|
|
it { LaborBudgetItem.find_by_id(item.id).should == item }
|
|
it { item.user_id.should == user.id }
|
|
end
|
|
|
|
describe "WHEN the user has a cost entry" do
|
|
let(:work_package) { FactoryGirl.create(:work_package) }
|
|
let(:entry) { FactoryGirl.build(:cost_entry, :user => user,
|
|
:project => work_package.project,
|
|
:units => 100.0,
|
|
:spent_on => Date.today,
|
|
:work_package => work_package,
|
|
:comments => "") }
|
|
|
|
before do
|
|
FactoryGirl.create(:member, :project => work_package.project,
|
|
:user => user,
|
|
:roles => [FactoryGirl.build(:role)])
|
|
entry.save!
|
|
|
|
user.destroy
|
|
|
|
entry.reload
|
|
end
|
|
|
|
it { entry.user_id.should == user.id }
|
|
end
|
|
|
|
describe "WHEN the user is assigned an hourly rate" do
|
|
let(:hourly_rate) { FactoryGirl.build(:hourly_rate, :user => user,
|
|
:project => project) }
|
|
|
|
before do
|
|
hourly_rate.save!
|
|
user.destroy
|
|
end
|
|
|
|
it { HourlyRate.find_by_id(hourly_rate.id).should == hourly_rate }
|
|
it { hourly_rate.reload.user_id.should == user.id }
|
|
end
|
|
|
|
describe "WHEN the user is assigned a default hourly rate" do
|
|
let(:default_hourly_rate) { FactoryGirl.build(:default_hourly_rate, :user => user,
|
|
:project => project) }
|
|
|
|
before do
|
|
default_hourly_rate.save!
|
|
user.destroy
|
|
end
|
|
|
|
it { DefaultHourlyRate.find_by_id(default_hourly_rate.id).should == default_hourly_rate }
|
|
it { default_hourly_rate.reload.user_id.should == user.id }
|
|
end
|
|
end
|
|
|