Sha256: bbe970f3c232ede489a663a1bdb45e482485e044fc856790ad229bf76bd960fe

Contents?: true

Size: 1.09 KB

Versions: 5

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true
require "spec_helper"

describe GraphQL::StaticValidation::FragmentsAreUsed do
  include StaticValidationHelpers
  let(:query_string) {"
    query getCheese {
      name
      ...cheeseFields
      ...undefinedFields
    }
    fragment cheeseFields on Cheese { fatContent }
    fragment unusedFields on Cheese { is, not, used }
  "}

  it "adds errors for unused fragment definitions" do
    assert_includes(errors, {
      "message"=>"Fragment unusedFields was defined, but not used",
      "locations"=>[{"line"=>8, "column"=>5}],
      "fields"=>[],
    })
  end

  it "adds errors for undefined fragment spreads" do
    assert_includes(errors, {
      "message"=>"Fragment undefinedFields was used, but not defined",
      "locations"=>[{"line"=>5, "column"=>7}],
      "fields"=>["query getCheese", "... undefinedFields"]
    })
  end

  describe "queries that are comments" do
    let(:query_string) {%|
      # I am a comment.
    |}
    let(:result) { Dummy::Schema.execute(query_string) }
    it "handles them gracefully" do
      assert_equal({}, result)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
graphql-1.4.5 spec/graphql/static_validation/rules/fragments_are_used_spec.rb
graphql-1.4.4 spec/graphql/static_validation/rules/fragments_are_used_spec.rb
graphql-1.4.3 spec/graphql/static_validation/rules/fragments_are_used_spec.rb
graphql-1.4.2 spec/graphql/static_validation/rules/fragments_are_used_spec.rb
graphql-1.4.1 spec/graphql/static_validation/rules/fragments_are_used_spec.rb