2019-07-25 01:21:37 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-29 03:56:52 -04:00
|
|
|
require 'spec_helper'
|
2018-01-25 07:26:52 -05:00
|
|
|
|
2020-06-24 05:08:32 -04:00
|
|
|
RSpec.describe Gitlab::Checks::ProjectCreated, :clean_gitlab_redis_shared_state do
|
2020-03-17 08:09:52 -04:00
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:project) { create(:project, :repository, namespace: user.namespace) }
|
|
|
|
let(:protocol) { 'http' }
|
|
|
|
let(:git_user) { user }
|
|
|
|
let(:repository) { project.repository }
|
|
|
|
|
|
|
|
subject { described_class.new(repository, git_user, 'http') }
|
2018-01-25 07:26:52 -05:00
|
|
|
|
2018-01-26 09:28:08 -05:00
|
|
|
describe '.fetch_message' do
|
2018-01-25 07:26:52 -05:00
|
|
|
context 'with a project created message queue' do
|
|
|
|
before do
|
2020-03-17 08:09:52 -04:00
|
|
|
subject.add_message
|
2018-01-25 07:26:52 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns project created message' do
|
2020-03-17 08:09:52 -04:00
|
|
|
expect(described_class.fetch_message(user.id, project.id)).to eq(subject.message)
|
2018-01-25 07:26:52 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'deletes the project created message from redis' do
|
|
|
|
expect(Gitlab::Redis::SharedState.with { |redis| redis.get("project_created:#{user.id}:#{project.id}") }).not_to be_nil
|
2020-03-17 08:09:52 -04:00
|
|
|
|
2018-01-26 09:28:08 -05:00
|
|
|
described_class.fetch_message(user.id, project.id)
|
2020-03-17 08:09:52 -04:00
|
|
|
|
2018-01-25 07:26:52 -05:00
|
|
|
expect(Gitlab::Redis::SharedState.with { |redis| redis.get("project_created:#{user.id}:#{project.id}") }).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with no project created message queue' do
|
|
|
|
it 'returns nil' do
|
2018-01-26 09:28:08 -05:00
|
|
|
expect(described_class.fetch_message(1, 2)).to be_nil
|
2018-01-25 07:26:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-26 09:28:08 -05:00
|
|
|
describe '#add_message' do
|
2018-01-25 07:26:52 -05:00
|
|
|
it 'queues a project created message' do
|
2020-03-17 08:09:52 -04:00
|
|
|
expect(subject.add_message).to eq('OK')
|
2018-01-25 07:26:52 -05:00
|
|
|
end
|
|
|
|
|
2020-03-17 08:09:52 -04:00
|
|
|
context 'when user is nil' do
|
|
|
|
let(:git_user) { nil }
|
2018-01-25 07:26:52 -05:00
|
|
|
|
2020-03-17 08:09:52 -04:00
|
|
|
it 'handles anonymous push' do
|
|
|
|
expect(subject.add_message).to be_nil
|
|
|
|
end
|
2018-01-25 07:26:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|