Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_service_spec.rb « organizations « customer_relations « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4764f6b97a36bf7a96505931051da8112ac6ee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe CustomerRelations::Organizations::CreateService do
  describe '#execute' do
    let_it_be(:user) { create(:user) }

    let(:group) { create(:group) }
    let(:params) { attributes_for(:organization, group: group) }

    subject(:response) { described_class.new(group: group, current_user: user, params: params).execute }

    it 'creates an organization' do
      group.add_reporter(user)

      expect(response).to be_success
    end

    it 'returns an error when user does not have permission' do
      expect(response).to be_error
      expect(response.message).to eq('You have insufficient permissions to create an organization for this group')
    end

    it 'returns an error when the organization is not persisted' do
      group.add_reporter(user)
      params[:name] = nil

      expect(response).to be_error
      expect(response.message).to eq(["Name can't be blank"])
    end
  end
end