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

update_service_spec.rb « achievements « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6168d60450b6c0853b1e8b2bc966c07314402f7b (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Achievements::UpdateService, feature_category: :user_profile do
  describe '#execute' do
    let_it_be(:user) { create(:user) }

    let(:params) { attributes_for(:achievement, namespace: group) }

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

    context 'when user does not have permission' do
      let_it_be(:group) { create(:group) }
      let_it_be(:achievement) { create(:achievement, namespace: group) }

      before_all do
        group.add_developer(user)
      end

      it 'returns an error' do
        expect(response).to be_error
        expect(response.message).to match_array(
          ['You have insufficient permission to update this achievement'])
      end
    end

    context 'when user has permission' do
      let_it_be(:group) { create(:group) }
      let_it_be(:achievement) { create(:achievement, namespace: group) }

      before_all do
        group.add_maintainer(user)
      end

      it 'updates an achievement' do
        expect(response).to be_success
      end

      it 'returns an error when the achievement cannot be updated' do
        params[:name] = nil

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