Sha256: 543612be524ad87d3af7143a41b1db805e00144612f2d87c5f9900f5de017955

Contents?: true

Size: 1.2 KB

Versions: 6

Compression:

Stored size: 1.2 KB

Contents

# frozen_string_literal: true
require "spec_helper"

describe GraphQL::StaticValidation::FieldsHaveAppropriateSelections do
  include StaticValidationHelpers
  let(:query_string) {"
    query getCheese {
      okCheese: cheese(id: 1) { fatContent, similarCheese(source: YAK) { source } }
      missingFieldsCheese: cheese(id: 1)
      illegalSelectionCheese: cheese(id: 1) { id { something, ... someFields } }
    }
  "}

  it "adds errors for selections on scalars" do
    assert_equal(2, errors.length)

    illegal_selection_error = {
      "message"=>"Selections can't be made on scalars (field 'id' returns Int but has selections [something, someFields])",
      "locations"=>[{"line"=>5, "column"=>47}],
      "fields"=>["query getCheese", "illegalSelectionCheese", "id"],
    }
    assert_includes(errors, illegal_selection_error, "finds illegal selections on scalarss")

    selection_required_error = {
      "message"=>"Objects must have selections (field 'cheese' returns Cheese but has no selections)",
      "locations"=>[{"line"=>4, "column"=>7}],
      "fields"=>["query getCheese", "missingFieldsCheese"],
    }
    assert_includes(errors, selection_required_error, "finds objects without selections")
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
graphql-1.4.4 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-1.4.3 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-1.4.2 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-1.4.1 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-1.4.0 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-1.3.0 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb