summaryrefslogtreecommitdiff
path: root/spec/migrations/steal_fill_store_upload_spec.rb
blob: ed809baf2b5458e7e91a4f3e2c56315d541ff7d7 (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
40
# frozen_string_literal: true

require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20181105201455_steal_fill_store_upload.rb')

describe StealFillStoreUpload, :migration do
  let(:uploads) { table(:uploads) }

  describe '#up' do
    it 'steals the FillStoreUpload background migration' do
      expect(Gitlab::BackgroundMigration).to receive(:steal).with('FillStoreUpload').and_call_original

      migrate!
    end

    it 'does not run migration if not needed' do
      uploads.create(size: 100.kilobytes,
                     uploader: 'AvatarUploader',
                     path: 'uploads/-/system/avatar.jpg',
                     store: 1)

      expect_any_instance_of(Gitlab::BackgroundMigration::FillStoreUpload).not_to receive(:perform)

      migrate!
    end

    it 'ensures all rows are migrated' do
      uploads.create(size: 100.kilobytes,
                     uploader: 'AvatarUploader',
                     path: 'uploads/-/system/avatar.jpg',
                     store: nil)

      expect_any_instance_of(Gitlab::BackgroundMigration::FillStoreUpload).to receive(:perform).and_call_original

      expect do
        migrate!
      end.to change { uploads.where(store: nil).count }.from(1).to(0)
    end
  end
end