project_type_spec.rb 1.2 KB
Newer Older
1 2 3
require 'spec_helper'

describe GitlabSchema.types['Project'] do
4 5
  it { expect(described_class).to expose_permissions_using(Types::PermissionTypes::Project) }

6
  it { expect(described_class.graphql_name).to eq('Project') }
7

L
Luke Duncalfe 已提交
8 9
  it { expect(described_class).to require_graphql_authorizations(:read_project) }

B
Bob Van Landuyt 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
  it 'has the expected fields' do
    expected_fields = %w[
      user_permissions id full_path path name_with_namespace
      name description description_html tag_list ssh_url_to_repo
      http_url_to_repo web_url star_count forks_count
      created_at last_activity_at archived visibility
      container_registry_enabled shared_runners_enabled
      lfs_enabled merge_requests_ff_only_enabled avatar_url
      issues_enabled merge_requests_enabled wiki_enabled
      snippets_enabled jobs_enabled public_jobs open_issues_count import_status
      only_allow_merge_if_pipeline_succeeds request_access_enabled
      only_allow_merge_if_all_discussions_are_resolved printing_merge_request_link_enabled
      namespace group statistics repository merge_requests merge_request issues
      issue pipelines
    ]

    is_expected.to have_graphql_fields(*expected_fields)
27
  end
28
end