mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-03 16:04:30 +00:00
84 lines
2.2 KiB
Ruby
84 lines
2.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Gitlab::Seeder, feature_category: :shared do
|
|
describe Namespace do
|
|
subject { described_class }
|
|
|
|
it 'has not_mass_generated scope', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/444919' do
|
|
expect { described_class.not_mass_generated }.to raise_error(NoMethodError)
|
|
|
|
Gitlab::Seeder.quiet do
|
|
expect { Namespace.not_mass_generated }.not_to raise_error
|
|
end
|
|
end
|
|
|
|
it 'includes NamespaceSeed module' do
|
|
Gitlab::Seeder.quiet do
|
|
is_expected.to include_module(Gitlab::Seeder::NamespaceSeed)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '.quiet' do
|
|
let(:database_base_models) do
|
|
{
|
|
main: ActiveRecord::Base,
|
|
ci: Ci::ApplicationRecord,
|
|
sec: SecApplicationRecord
|
|
}
|
|
end
|
|
|
|
it 'disables database logging' do
|
|
allow(Gitlab::Database).to receive(:database_base_models)
|
|
.and_return(database_base_models.with_indifferent_access)
|
|
|
|
described_class.quiet do
|
|
database_base_models.each do |name, model|
|
|
expect(model.logger).to be_nil if database_exists?(name)
|
|
end
|
|
end
|
|
|
|
database_base_models.each do |name, model|
|
|
expect(model.logger).not_to be_nil if database_exists?(name)
|
|
end
|
|
end
|
|
|
|
it 'disables mail deliveries' do
|
|
expect(ActionMailer::Base.perform_deliveries).to eq(true)
|
|
|
|
described_class.quiet do
|
|
expect(ActionMailer::Base.perform_deliveries).to eq(false)
|
|
end
|
|
|
|
expect(ActionMailer::Base.perform_deliveries).to eq(true)
|
|
end
|
|
|
|
it 'disables new note notifications' do
|
|
note = create(:note_on_issue)
|
|
|
|
notification_service = NotificationService.new
|
|
|
|
expect(notification_service).to receive(:send_new_note_notifications).twice
|
|
|
|
notification_service.new_note(note)
|
|
|
|
described_class.quiet do
|
|
expect(notification_service.new_note(note)).to eq(nil)
|
|
end
|
|
|
|
notification_service.new_note(note)
|
|
end
|
|
end
|
|
|
|
describe '.log_message' do
|
|
it 'prepends timestamp to the logged message' do
|
|
freeze_time do
|
|
message = "some message."
|
|
expect { described_class.log_message(message) }.to output(/#{Time.current}: #{message}/).to_stdout
|
|
end
|
|
end
|
|
end
|
|
end
|