Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fill_file_store_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 732fdc2a0bb3e90ac0f4fc3e69e82270093c21b3 (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
41
42
43
44
45
# frozen_string_literal: true

require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20180424151928_fill_file_store')

describe FillFileStore do
  let(:namespaces) { table(:namespaces) }
  let(:projects) { table(:projects) }
  let(:builds) { table(:ci_builds) }
  let(:job_artifacts) { table(:ci_job_artifacts) }
  let(:lfs_objects) { table(:lfs_objects) }
  let(:uploads) { table(:uploads) }

  before do
    namespaces.create!(id: 123, name: 'gitlab1', path: 'gitlab1')
    projects.create!(id: 123, name: 'gitlab1', path: 'gitlab1', namespace_id: 123)
    builds.create!(id: 1)

    ##
    # Create rows that have nullfied `file_store` column
    job_artifacts.create!(project_id: 123, job_id: 1, file_type: 1, file_store: nil)
    lfs_objects.create!(oid: 123, size: 10, file: 'file_name', file_store: nil)
    uploads.create!(size: 10, path: 'path', uploader: 'uploader', mount_point: 'file_name', store: nil)
  end

  it 'correctly migrates nullified file_store/store column', :sidekiq_might_not_need_inline do
    expect(job_artifacts.where(file_store: nil).count).to eq(1)
    expect(lfs_objects.where(file_store: nil).count).to eq(1)
    expect(uploads.where(store: nil).count).to eq(1)

    expect(job_artifacts.where(file_store: 1).count).to eq(0)
    expect(lfs_objects.where(file_store: 1).count).to eq(0)
    expect(uploads.where(store: 1).count).to eq(0)

    migrate!

    expect(job_artifacts.where(file_store: nil).count).to eq(0)
    expect(lfs_objects.where(file_store: nil).count).to eq(0)
    expect(uploads.where(store: nil).count).to eq(0)

    expect(job_artifacts.where(file_store: 1).count).to eq(1)
    expect(lfs_objects.where(file_store: 1).count).to eq(1)
    expect(uploads.where(store: 1).count).to eq(1)
  end
end