OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/spec/models/user_deletion_spec.rb

422 lines
15 KiB

#-- copyright
# OpenProject is a project management system.
#
# Copyright (C) 2012-2013 the OpenProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# See doc/COPYRIGHT.rdoc for more details.
#++
require 'spec_helper'
describe User, 'deletion' do
let(:project) { FactoryGirl.create(:project_with_trackers) }
let(:user) { FactoryGirl.build(:user, :member_in_project => project) }
let(:user2) { FactoryGirl.build(:user) }
let(:member) { project.members.first }
let(:role) { member.roles.first }
let(:issue_status) { FactoryGirl.create(:issue_status) }
let(:issue) { FactoryGirl.create(:issue, :tracker => project.trackers.first,
:author => user,
:project => project,
:status => issue_status,
:assigned_to => user) }
let(:issue2) { FactoryGirl.create(:issue, :tracker => project.trackers.first,
:author => user2,
:project => project,
:status => issue_status,
:assigned_to => user2) }
let(:substitute_user) { DeletedUser.first }
before do
# for some reason there seem to be users in the db
User.delete_all
user.save!
user2.save!
end
describe "WHEN there is the user" do
before do
user.destroy
end
it { User.find_by_id(user.id).should be_nil }
end
shared_examples_for "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 changes" do
associations.each do |association|
associated_instance.journals.first.changed_data[association.to_s + "_id"].last.should == user2.id
end
end
it { associated_instance.journals.last.user.should == substitute_user }
it "should update second journal changes" do
associations.each do |association|
associated_instance.journals.last.changed_data[association.to_s + "_id"].last.should == substitute_user.id
end
end
end
shared_examples_for "created associated object" do
before do
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
end
shared_examples_for "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.to_s + "_id"].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.to_s + "_id"].first.should == substitute_user.id
associated_instance.journals.last.changed_data[association.to_s + "_id"].last.should == user2.id
end
end
end
describe "WHEN the user has created one attachment" do
let(:associated_instance) { FactoryGirl.build(:attachment) }
let(:associated_class) { Attachment }
let(:associations) { [:author] }
it_should_behave_like "created journalized associated object"
end
describe "WHEN the user has updated one attachment" do
let(:associated_instance) { FactoryGirl.build(:attachment) }
let(:associated_class) { Attachment }
let(:associations) { [:author] }
it_should_behave_like "updated journalized associated object"
end
describe "WHEN the user has an issue created and assigned" do
let(:associated_instance) { FactoryGirl.build(:issue, :tracker => project.trackers.first,
:project => project,
:status => issue_status) }
let(:associated_class) { Issue }
let(:associations) { [:author, :assigned_to] }
it_should_behave_like "created journalized associated object"
end
describe "WHEN the user has an issue updated and assigned" do
let(:associated_instance) { FactoryGirl.build(:issue, :tracker => project.trackers.first,
:project => project,
:status => issue_status) }
let(:associated_class) { Issue }
let(:associations) { [:author, :assigned_to] }
before do
User.current = user2
associated_instance.author = user2
associated_instance.assigned_to = user2
associated_instance.save!
User.current = user # in order to have the content journal created by the user
associated_instance.reload
associated_instance.author = user
associated_instance.assigned_to = user
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
associated_instance.author.should == substitute_user
associated_instance.assigned_to.should be_nil
end
it { associated_instance.journals.first.user.should == user2 }
it "should update first journal changes" do
associations.each do |association|
associated_instance.journals.first.changed_data[association.to_s + "_id"].last.should == user2.id
end
end
it { associated_instance.journals.last.user.should == substitute_user }
it "should update second journal changes" do
associations.each do |association|
associated_instance.journals.last.changed_data[association.to_s + "_id"].last.should == substitute_user.id
end
end
end
describe "WHEN the user has updated a wiki content" do
let(:associated_instance) { FactoryGirl.build(:wiki_content) }
let(:associated_class) { WikiContent}
let(:associations) { [:author] }
it_should_behave_like "updated journalized associated object"
end
describe "WHEN the user has created a wiki content" do
let(:associated_instance) { FactoryGirl.build(:wiki_content) }
let(:associated_class) { WikiContent }
let(:associations) { [:author] }
it_should_behave_like "created journalized associated object"
end
describe "WHEN the user has created a news" do
let(:associated_instance) { FactoryGirl.build(:news) }
let(:associated_class) { News }
let(:associations) { [:author] }
it_should_behave_like "created journalized associated object"
end
describe "WHEN the user has worked on news" do
let(:associated_instance) { FactoryGirl.build(:news) }
let(:associated_class) { News }
let(:associations) { [:author] }
it_should_behave_like "updated journalized associated object"
end
describe "WHEN the user has created a message" do
let(:associated_instance) { FactoryGirl.build(:message) }
let(:associated_class) { Message }
let(:associations) { [:author] }
it_should_behave_like "created journalized associated object"
end
describe "WHEN the user has worked on message" do
let(:associated_instance) { FactoryGirl.build(:message) }
let(:associated_class) { Message }
let(:associations) { [:author] }
it_should_behave_like "updated journalized associated object"
end
describe "WHEN the user has created a time entry" do
let(:associated_instance) { FactoryGirl.build(:time_entry, :project => project,
:work_package => issue,
:hours => 2,
:activity => FactoryGirl.create(:time_entry_activity)) }
let(:associated_class) { TimeEntry }
let(:associations) { [:user] }
it_should_behave_like "created journalized associated object"
end
describe "WHEN the user has worked on time_entry" do
let(:associated_instance) { FactoryGirl.build(:time_entry, :project => project,
:work_package => issue,
:hours => 2,
:activity => FactoryGirl.create(:time_entry_activity)) }
let(:associated_class) { TimeEntry }
let(:associations) { [:user] }
it_should_behave_like "updated journalized associated object"
end
describe "WHEN the user has commented" do
let(:news) { FactoryGirl.create(:news, :author => user) }
let(:associated_instance) { Comment.new(:commented => news,
:comments => "lorem") }
let(:associated_class) { Comment }
let(:associations) { [:author] }
it_should_behave_like "created associated object"
end
describe "WHEN the user is a member of a project" do
before do
member #saving
user.destroy
end
it { Member.find_by_id(member.id).should be_nil }
it { Role.find_by_id(role.id).should == role }
it { Project.find_by_id(project.id).should == project }
end
describe "WHEN the user is watching something" do
let(:watched) { FactoryGirl.create(:issue, :project => project) }
let(:watch) { Watcher.new(:user => user,
:watchable => watched) }
before do
watch.save!
user.destroy
end
it { Watcher.find_by_id(watch.id).should be_nil }
end
describe "WHEN the user has a token created" do
let(:token) { Token.new(:user => user,
:action => "feeds",
:value => "loremipsum") }
before do
token.save!
user.destroy
end
it { Token.find_by_id(token.id).should be_nil }
end
describe "WHEN the user has created a private query" do
let(:query) { FactoryGirl.build(:private_query, :user => user) }
before do
query.save!
user.destroy
end
it { Query.find_by_id(query.id).should be_nil }
end
describe "WHEN the user has created a public query" do
let(:associated_instance) { FactoryGirl.build(:public_query) }
let(:associated_class) { Query }
let(:associations) { [:user] }
it_should_behave_like "created associated object"
end
describe "WHEN the user has created a changeset" do
let(:repository) { FactoryGirl.create(:repository) }
let(:associated_instance) { FactoryGirl.build(:changeset, :repository_id => repository.id,
:committer => user.login) }
let(:associated_class) { Changeset }
let(:associations) { [:user] }
before do
Setting.enabled_scm = Setting.enabled_scm << "Filesystem"
end
it_should_behave_like "created journalized associated object"
end
describe "WHEN the user has updated a changeset" do
let(:repository) { FactoryGirl.create(:repository) }
let(:associated_instance) { FactoryGirl.build(:changeset, :repository_id => repository.id,
:committer => user2.login) }
let(:associated_class) { Changeset }
let(:associations) { [:user] }
before do
Setting.enabled_scm = Setting.enabled_scm << "Filesystem"
User.current = user2
associated_instance.user = user2
associated_instance.save!
User.current = user # in order to have the content journal created by the user
associated_instance.reload
associated_instance.user = user
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
associated_instance.user.should be_nil
end
it { associated_instance.journals.first.user.should == user2 }
it "should update first journal changes" do
associated_instance.journals.first.changed_data["user_id"].last.should == user2.id
end
it { associated_instance.journals.last.user.should == substitute_user }
it "should update second journal changes" do
associated_instance.journals.last.changed_data["user_id"].last.should == substitute_user.id
end
end
describe "WHEN the user is assigned an issue category" do
let(:issue_category) { FactoryGirl.build(:issue_category, :assigned_to => user,
:project => project) }
before do
issue_category.save!
user.destroy
issue_category.reload
end
it { IssueCategory.find_by_id(issue_category.id).should == issue_category }
it { issue_category.assigned_to.should be_nil }
end
end