Sha256: a733e6d5d0bf2ec7a532367fa825806d8e50574a9996794e90e1653dc9258d12

Contents?: true

Size: 1.44 KB

Versions: 7

Compression:

Stored size: 1.44 KB

Contents

require 'spec_helper'

describe GraphQL::StaticValidation::ArgumentsAreDefined do
  let(:document) { GraphQL.parse("
    query getCheese {
      cheese(id: 1) { source }
      cheese(silly: false) { source }
      searchDairy(product: [{wacky: 1}])
    }

    fragment cheeseFields on Cheese {
      similarCheese(source: SHEEP, nonsense: 1)
      id @skip(something: 3.4)
    }
  ")}

  let(:validator) { GraphQL::StaticValidation::Validator.new(schema: DummySchema, rules: [GraphQL::StaticValidation::ArgumentsAreDefined]) }
  let(:errors) { validator.validate(document) }

  it 'finds undefined arguments to fields and directives' do
    assert_equal(4, errors.length)

    query_root_error = {
      "message"=>"Field 'cheese' doesn't accept argument 'silly'",
      "locations"=>[{"line"=>4, "column"=>7}]
    }
    assert_includes(errors, query_root_error)

    input_obj_record = {
      "message"=>"InputObject 'DairyProductInput' doesn't accept argument 'wacky'",
      "locations"=>[{"line"=>5, "column"=>30}]
    }
    assert_includes(errors, input_obj_record)

    fragment_error = {
      "message"=>"Field 'similarCheese' doesn't accept argument 'nonsense'",
      "locations"=>[{"line"=>9, "column"=>7}]
    }
    assert_includes(errors, fragment_error)

    directive_error = {
      "message"=>"Directive 'skip' doesn't accept argument 'something'",
      "locations"=>[{"line"=>10, "column"=>11}]
    }
    assert_includes(errors, directive_error)
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
graphql-0.11.1 spec/graphql/static_validation/rules/arguments_are_defined_spec.rb
graphql-0.11.0 spec/graphql/static_validation/rules/arguments_are_defined_spec.rb
graphql-0.10.9 spec/graphql/static_validation/rules/arguments_are_defined_spec.rb
graphql-0.10.8 spec/graphql/static_validation/rules/arguments_are_defined_spec.rb
graphql-0.10.7 spec/graphql/static_validation/rules/arguments_are_defined_spec.rb
graphql-0.10.6 spec/graphql/static_validation/rules/arguments_are_defined_spec.rb
graphql-0.10.5 spec/graphql/static_validation/rules/arguments_are_defined_spec.rb