Sha256: d161045430ec7fc9b8aec32bab3a8af493327dca55bf6e2e640f8bcd9313ad9c

Contents?: true

Size: 1.27 KB

Versions: 8

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) }

  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

8 entries across 8 versions & 1 rubygems

Version Path
graphql-0.15.3 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-0.15.2 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-0.14.2 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-0.15.1 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-0.15.0 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-0.14.1 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-0.14.0 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
graphql-0.13.0 spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb