summaryrefslogtreecommitdiff
path: root/spec/graphql/types/packages/package_details_type_spec.rb
blob: f0b684d6b0771d8cdf7af0878d7614b7bcfc4ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['PackageDetailsType'] do
  it 'includes all the package fields' do
    expected_fields = %w[
      id name version created_at updated_at package_type tags project pipelines versions package_files dependency_links
    ]

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

  it 'overrides the pipelines field' do
    field = described_class.fields['pipelines']

    expect(field).to have_graphql_type(Types::Ci::PipelineType.connection_type)
    expect(field).to have_graphql_extension(Gitlab::Graphql::Extensions::ExternallyPaginatedArrayExtension)
    expect(field).to have_graphql_resolver(Resolvers::PackagePipelinesResolver)
    expect(field).not_to be_connection
  end
end