summaryrefslogtreecommitdiff
path: root/spec/graphql/types/ci/job_type_spec.rb
blob: 655c36368832b9d581ea8f548c8fc7662ac84611 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Types::Ci::JobType do
  specify { expect(described_class.graphql_name).to eq('CiJob') }
  specify { expect(described_class).to expose_permissions_using(Types::PermissionTypes::Ci::Job) }

  it 'exposes the expected fields' do
    expected_fields = %i[
      active
      allow_failure
      artifacts
      cancelable
      commitPath
      coverage
      created_at
      created_by_tag
      detailedStatus
      duration
      downstreamPipeline
      finished_at
      id
      kind
      manual_job
      name
      needs
      pipeline
      playable
      previousStageJobsOrNeeds
      queued_at
      queued_duration
      refName
      refPath
      retryable
      scheduledAt
      schedulingType
      shortSha
      stage
      started_at
      status
      stuck
      tags
      triggered
      userPermissions
    ]

    expect(described_class).to have_graphql_fields(*expected_fields)
  end
end