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

blob_type_spec.rb « snippets « types « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bfac08f40d3a58f7ac72bbf497f95eb442a0520b (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['SnippetBlob'] do
  it 'has the correct fields' do
    expected_fields = [:rich_data, :plain_data,
                       :raw_path, :size, :binary, :name, :path,
                       :simple_viewer, :rich_viewer, :mode, :external_storage,
                       :rendered_as_text]

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

  specify { expect(described_class.fields['richData'].type).not_to be_non_null }
  specify { expect(described_class.fields['plainData'].type).not_to be_non_null }
  specify { expect(described_class.fields['rawPath'].type).to be_non_null }
  specify { expect(described_class.fields['size'].type).to be_non_null }
  specify { expect(described_class.fields['binary'].type).to be_non_null }
  specify { expect(described_class.fields['name'].type).not_to be_non_null }
  specify { expect(described_class.fields['path'].type).not_to be_non_null }
  specify { expect(described_class.fields['simpleViewer'].type).to be_non_null }
  specify { expect(described_class.fields['richViewer'].type).not_to be_non_null }
  specify { expect(described_class.fields['mode'].type).not_to be_non_null }
  specify { expect(described_class.fields['externalStorage'].type).not_to be_non_null }
  specify { expect(described_class.fields['renderedAsText'].type).to be_non_null }
end