summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/mutations/clusters/agents/create_spec.rb
blob: 66e6c5cc629436469f8bdcc2532ac4796b49f1ce (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Create a new cluster agent', feature_category: :kubernetes_management do
  include GraphqlHelpers

  let(:project) { create(:project, :public, :repository) }
  let(:project_name) { 'agent-test' }
  let(:current_user) { create(:user) }

  let(:mutation) do
    graphql_mutation(
      :create_cluster_agent,
      { project_path: project.full_path, name: project_name }
    )
  end

  def mutation_response
    graphql_mutation_response(:create_cluster_agent)
  end

  context 'without project permissions' do
    it_behaves_like 'a mutation that returns a top-level access error'

    it 'does not create cluster agent' do
      expect { post_graphql_mutation(mutation, current_user: current_user) }.not_to change(Clusters::Agent, :count)
    end
  end

  context 'with user permissions' do
    before do
      project.add_maintainer(current_user)
    end

    it 'creates a new cluster agent', :aggregate_failures do
      expect { post_graphql_mutation(mutation, current_user: current_user) }.to change { Clusters::Agent.count }.by(1)
      expect(mutation_response.dig('clusterAgent', 'name')).to eq(project_name)
      expect(mutation_response['errors']).to eq([])
    end
  end
end