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

remove_records_without_group_from_webhooks_table_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a28ca12a10da3df3ac4582c50494d63b1fb275c4 (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
# frozen_string_literal: true

require 'spec_helper'

require_migration!
require Rails.root.join('db', 'migrate', '20210325092215_add_not_valid_foreign_key_to_group_hooks.rb')

RSpec.describe RemoveRecordsWithoutGroupFromWebhooksTable, schema: 20210330091751 do
  let(:web_hooks) { table(:web_hooks) }
  let(:groups) { table(:namespaces) }

  before do
    group = groups.create!(name: 'gitlab', path: 'gitlab-org')
    web_hooks.create!(group_id: group.id, type: 'GroupHook')
    web_hooks.create!(group_id: nil)

    AddNotValidForeignKeyToGroupHooks.new.down
    web_hooks.create!(group_id: non_existing_record_id, type: 'GroupHook')
    AddNotValidForeignKeyToGroupHooks.new.up
  end

  it 'removes group hooks where the referenced group does not exist', :aggregate_failures do
    expect { RemoveRecordsWithoutGroupFromWebhooksTable.new.up }.to change { web_hooks.count }.by(-1)
    expect(web_hooks.where.not(group_id: groups.select(:id)).count).to eq(0)
    expect(web_hooks.where.not(group_id: nil).count).to eq(1)
  end
end