Sha256: 454533f10d66a50656b2a862745e7887a221f4e6ebde36d500d9d08b03cca30b

Contents?: true

Size: 1.25 KB

Versions: 8

Compression:

Stored size: 1.25 KB

Contents

require "spec_helper"

describe GraphQL::StaticValidation::RequiredArgumentsArePresent do
  let(:query_string) {"
    query getCheese {
      cheese(id: 1) { source }
      cheese { source }
    }

    fragment cheeseFields on Cheese {
      similarCheese(id: 1)
      flavor @include(if: true)
      id @skip
    }
  "}

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

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

    query_root_error = {
      "message"=>"Field 'cheese' is missing required arguments: id",
      "locations"=>[{"line"=>4, "column"=>7}]
    }
    assert_includes(errors, query_root_error)

    fragment_error = {
      "message"=>"Field 'similarCheese' is missing required arguments: source",
      "locations"=>[{"line"=>8, "column"=>7}]
    }
    assert_includes(errors, fragment_error)

    directive_error = {
      "message"=>"Directive 'skip' is missing required arguments: if",
      "locations"=>[{"line"=>10, "column"=>10}]
    }
    assert_includes(errors, directive_error)
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

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