Sha256: 9e4be7e5b891faf03d0eb9ac38dbd2d5e3f85d852fd41df7b7e684238657ed05

Contents?: true

Size: 1.27 KB

Versions: 5

Compression:

Stored size: 1.27 KB

Contents

require "spec_helper"

describe GraphQL::StaticValidation::FieldsHaveAppropriateSelections do
  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 } }
    }
  "}

  let(:validator) { GraphQL::StaticValidation::Validator.new(schema: DummySchema, rules: [GraphQL::StaticValidation::FieldsHaveAppropriateSelections]) }
  let(:query) { GraphQL::Query.new(DummySchema, query_string) }
  let(:errors) { validator.validate(query)[:errors] }

  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}]
    }
    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}]
    }
    assert_includes(errors, selection_required_error, "finds objects without selections")
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
graphql-0.17.2 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-0.17.1 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-0.17.0 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-0.16.1 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-0.16.0 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb