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

require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20210610102413_migrate_protected_attribute_to_pending_builds.rb')

RSpec.describe MigrateProtectedAttributeToPendingBuilds do
  let(:namespaces) { table(:namespaces) }
  let(:projects) { table(:projects) }
  let(:queue) { table(:ci_pending_builds) }
  let(:builds) { table(:ci_builds) }

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

    builds.create!(id: 1, project_id: 123, status: 'pending', protected: false, type: 'Ci::Build')
    builds.create!(id: 2, project_id: 123, status: 'pending', protected: true, type: 'Ci::Build')
    builds.create!(id: 3, project_id: 123, status: 'pending', protected: false, type: 'Ci::Build')
    builds.create!(id: 4, project_id: 123, status: 'pending', protected: true, type: 'Ci::Bridge')
    builds.create!(id: 5, project_id: 123, status: 'success', protected: true, type: 'Ci::Build')

    queue.create!(id: 1, project_id: 123, build_id: 1)
    queue.create!(id: 2, project_id: 123, build_id: 2)
    queue.create!(id: 3, project_id: 123, build_id: 3)
  end

  it 'updates entries that should be protected' do
    migrate!

    expect(queue.where(protected: true).count).to eq 1
    expect(queue.find_by(protected: true).id).to eq 2
  end
end