debian-mirror-gitlab/spec/migrations/populate_audit_event_streaming_verification_token_spec.rb
2023-03-04 22:38:38 +05:30

23 lines
824 B
Ruby

# 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