Sha256: 6e6623c31e79c14be931f1d204e650953a91d5a1bb30a5c8d1f6049876ff1a08
Contents?: true
Size: 1.38 KB
Versions: 2
Compression:
Stored size: 1.38 KB
Contents
require 'spec_helper' describe GraphQL::StaticValidation::FragmentSpreadsArePossible do let(:query_string) {%| query getCheese { cheese(id: 1) { ... milkFields ... cheeseFields ... on Milk { fatContent } ... on AnimalProduct { source } ... on DairyProduct { fatContent ... on Edible { fatContent } } } } fragment milkFields on Milk { fatContent } fragment cheeseFields on Cheese { fatContent ... milkFields } |} let(:validator) { GraphQL::StaticValidation::Validator.new(schema: DummySchema, rules: [GraphQL::StaticValidation::FragmentSpreadsArePossible]) } let(:query) { GraphQL::Query.new(DummySchema, query_string) } let(:errors) { validator.validate(query) } it "doesnt allow spreads where they'll never apply" do # TODO: more negative, abstract examples here, add stuff to the schema expected = [ { "message"=>"Fragment on Milk can't be spread inside Cheese", "locations"=>[{"line"=>6, "column"=>9}] }, { "message"=>"Fragment milkFields on Milk can't be spread inside Cheese", "locations"=>[{"line"=>4, "column"=>9}] }, { "message"=>"Fragment milkFields on Milk can't be spread inside Cheese", "locations"=>[{"line"=>18, "column"=>7}] } ] assert_equal(expected, errors) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
graphql-0.12.1 | spec/graphql/static_validation/rules/fragment_spreads_are_possible_spec.rb |
graphql-0.12.0 | spec/graphql/static_validation/rules/fragment_spreads_are_possible_spec.rb |