debian-mirror-gitlab/spec/services/user_project_access_changed_service_spec.rb

35 lines
973 B
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe UserProjectAccessChangedService do
2017-08-17 22:00:37 +05:30
describe '#execute' do
it 'schedules the user IDs' do
2017-09-10 17:25:29 +05:30
expect(AuthorizedProjectsWorker).to receive(:bulk_perform_and_wait)
.with([[1], [2]])
2017-08-17 22:00:37 +05:30
described_class.new([1, 2]).execute
end
2018-03-17 18:26:18 +05:30
it 'permits non-blocking operation' do
expect(AuthorizedProjectsWorker).to receive(:bulk_perform_async)
.with([[1], [2]])
described_class.new([1, 2]).execute(blocking: false)
end
2020-05-24 23:13:21 +05:30
it 'permits low-priority operation' do
expect(AuthorizedProjectUpdate::UserRefreshWithLowUrgencyWorker).to(
2020-06-23 00:09:42 +05:30
receive(:bulk_perform_in).with(
described_class::DELAY,
[[1], [2]],
{ batch_delay: 30.seconds, batch_size: 100 }
)
2020-05-24 23:13:21 +05:30
)
described_class.new([1, 2]).execute(blocking: false,
priority: described_class::LOW_PRIORITY)
end
2017-08-17 22:00:37 +05:30
end
end