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

upload_spec.rb « design_management « mutations « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2189ae3c51995fdb1162ab76fe9b13bec9ae8f68 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# frozen_string_literal: true
require "spec_helper"

RSpec.describe "uploading designs" do
  include GraphqlHelpers
  include DesignManagementTestHelpers
  include WorkhorseHelpers

  let(:current_user) { create(:user) }
  let(:issue) { create(:issue) }
  let(:project) { issue.project }
  let(:files) { [fixture_file_upload("spec/fixtures/dk.png")] }
  let(:variables) { {} }

  def mutation
    input = {
      project_path: project.full_path,
      iid: issue.iid,
      files: files.dup
    }.merge(variables)
    graphql_mutation(:design_management_upload, input)
  end

  let(:mutation_response) { graphql_mutation_response(:design_management_upload) }

  before do
    enable_design_management

    project.add_developer(current_user)
  end

  it "returns an error if the user is not allowed to upload designs" do
    post_graphql_mutation_with_uploads(mutation, current_user: create(:user))

    expect(graphql_errors).to be_present
  end

  it "succeeds, and responds with the created designs" do
    post_graphql_mutation_with_uploads(mutation, current_user: current_user)

    expect(graphql_errors).not_to be_present

    expect(mutation_response).to include(
      "designs" => a_collection_containing_exactly(
        a_hash_including("filename" => "dk.png")
      )
    )
  end

  it "can respond with skipped designs" do
    2.times do
      post_graphql_mutation_with_uploads(mutation, current_user: current_user)
      files.each(&:rewind)
    end

    expect(mutation_response).to include(
      "skippedDesigns" => a_collection_containing_exactly(
        a_hash_including("filename" => "dk.png")
      )
    )
  end

  context "when the issue does not exist" do
    let(:variables) { { iid: "123" } }

    it "returns an error" do
      post_graphql_mutation_with_uploads(mutation, current_user: create(:user))

      expect(graphql_errors).not_to be_empty
    end
  end

  context "when saving the designs raises an error" do
    it "responds with errors" do
      expect_next_instance_of(::DesignManagement::SaveDesignsService) do |service|
        expect(service).to receive(:execute).and_return({ status: :error, message: "Something went wrong" })
      end

      post_graphql_mutation_with_uploads(mutation, current_user: current_user)
      expect(mutation_response["errors"].first).to eq("Something went wrong")
    end
  end
end