debian-mirror-gitlab/spec/lib/gitlab/checks/project_created_spec.rb

54 lines
1.5 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2019-12-04 20:38:33 +05:30
require 'spec_helper'
2018-03-17 18:26:18 +05:30
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::Checks::ProjectCreated, :clean_gitlab_redis_shared_state do
2020-04-08 14:13:33 +05:30
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-03-17 18:26:18 +05:30
describe '.fetch_message' do
context 'with a project created message queue' do
before do
2020-04-08 14:13:33 +05:30
subject.add_message
2018-03-17 18:26:18 +05:30
end
it 'returns project created message' do
2020-04-08 14:13:33 +05:30
expect(described_class.fetch_message(user.id, project.id)).to eq(subject.message)
2018-03-17 18:26:18 +05:30
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-04-08 14:13:33 +05:30
2018-03-17 18:26:18 +05:30
described_class.fetch_message(user.id, project.id)
2020-04-08 14:13:33 +05:30
2018-03-17 18:26:18 +05:30
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
expect(described_class.fetch_message(1, 2)).to be_nil
end
end
end
describe '#add_message' do
it 'queues a project created message' do
2020-04-08 14:13:33 +05:30
expect(subject.add_message).to eq('OK')
2018-03-17 18:26:18 +05:30
end
2020-04-08 14:13:33 +05:30
context 'when user is nil' do
let(:git_user) { nil }
2018-03-17 18:26:18 +05:30
2020-04-08 14:13:33 +05:30
it 'handles anonymous push' do
expect(subject.add_message).to be_nil
end
2018-03-17 18:26:18 +05:30
end
end
end