summaryrefslogtreecommitdiff
path: root/spec/graphql/types/packages/package_details_type_spec.rb
blob: ceeb000ff85b7f0fd477117fb1f36eee8f49ecf9 (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
# 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
      npm_url maven_url conan_url nuget_url pypi_url pypi_setup_url
      composer_url composer_config_repository_url
    ]

    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