summaryrefslogtreecommitdiff
path: root/spec/migrations/remove_records_without_group_from_webhooks_table_spec.rb
blob: eabf6271dedfa298f1d7772d2c9c7233f37b962d (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_migration!('add_not_valid_foreign_key_to_group_hooks')

RSpec.describe RemoveRecordsWithoutGroupFromWebhooksTable, schema: 20210330091751, feature_category: :integrations 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