2022-11-25 23:54:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2023-03-17 16:20:25 +05:30
|
|
|
RSpec.describe ::PagesDomains::DeleteService, feature_category: :pages do
|
2022-11-25 23:54:43 +05:30
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:pages_domain) { create(:pages_domain, :with_project) }
|
|
|
|
|
|
|
|
let(:params) do
|
|
|
|
attributes_for(:pages_domain, :with_trusted_chain).slice(:key, :certificate).tap do |params|
|
|
|
|
params[:user_provided_key] = params.delete(:key)
|
|
|
|
params[:user_provided_certificate] = params.delete(:certificate)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
subject(:service) { described_class.new(pages_domain.project, user, params) }
|
|
|
|
|
|
|
|
context 'when the user does not have the required permissions' do
|
|
|
|
it 'does not delete the pages domain and does not publish a PagesDomainDeletedEvent' do
|
|
|
|
result_match = -> { expect(service.execute(pages_domain)).to be_nil }
|
|
|
|
|
|
|
|
expect(&result_match)
|
|
|
|
.to not_publish_event(PagesDomains::PagesDomainDeletedEvent)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the user has the required permissions' do
|
|
|
|
before do
|
|
|
|
pages_domain.project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when it updates the domain successfully' do
|
|
|
|
it 'deletes the domain and publishes a PagesDomainDeletedEvent' do
|
|
|
|
result_match = -> { expect(service.execute(pages_domain)).not_to be_nil }
|
|
|
|
|
|
|
|
expect(&result_match)
|
|
|
|
.to publish_event(PagesDomains::PagesDomainDeletedEvent)
|
|
|
|
.with(
|
|
|
|
project_id: pages_domain.project.id,
|
|
|
|
namespace_id: pages_domain.project.namespace.id,
|
|
|
|
root_namespace_id: pages_domain.project.root_namespace.id,
|
2023-03-17 16:20:25 +05:30
|
|
|
domain_id: pages_domain.id,
|
2022-11-25 23:54:43 +05:30
|
|
|
domain: pages_domain.domain
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|