summaryrefslogtreecommitdiff
path: root/spec/migrations/populate_audit_event_streaming_verification_token_spec.rb
blob: e2c117903d45330f5335ab228cf538b080bc5bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe PopulateAuditEventStreamingVerificationToken, feature_category: :audit_events do
  let(:groups) { table(:namespaces) }
  let(:destinations) { table(:audit_events_external_audit_event_destinations) }
  let(:migration) { described_class.new }

  let!(:group) { groups.create!(name: 'test-group', path: 'test-group') }
  let!(:destination) { destinations.create!(namespace_id: group.id, destination_url: 'https://example.com/destination', verification_token: nil) }

  describe '#up' do
    it 'adds verification tokens to records created before the migration' do
      expect do
        migrate!
        destination.reload
      end.to change { destination.verification_token }.from(nil).to(a_string_matching(/\w{24}/))
    end
  end
end