summaryrefslogtreecommitdiff
path: root/spec/support/services/migrate_to_ghost_user_service_shared_examples.rb
blob: 0eac587e9730a56a40744ae256451b22076dd1c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
require "spec_helper"

shared_examples "migrating a deleted user's associated records to the ghost user" do |record_class|
  record_class_name = record_class.to_s.titleize.downcase

  let(:project) { create(:project) }

  before do
    project.add_developer(user)
  end

  context "for a #{record_class_name} the user has created" do
    let!(:record) { created_record }

    it "does not delete the #{record_class_name}" do
      service.execute

      expect(record_class.find_by_id(record.id)).to be_present
    end

    it "migrates the #{record_class_name} so that the 'Ghost User' is the #{record_class_name} owner" do
      service.execute

      migrated_record = record_class.find_by_id(record.id)

      if migrated_record.respond_to?(:author)
        expect(migrated_record.author).to eq(User.ghost)
      else
        expect(migrated_record.send(author_alias)).to eq(User.ghost)
      end
    end

    it "blocks the user before migrating #{record_class_name}s to the 'Ghost User'" do
      service.execute

      expect(user).to be_blocked
    end
  end
end