Sha256: 1defb6438e3d64e30c9e180bd5389d9a7ed33de34d3daac1e7dd4655ad988b34
Contents?: true
Size: 1.42 KB
Versions: 26
Compression:
Stored size: 1.42 KB
Contents
require 'spec_helper' describe GraphQL::StaticValidation::VariableDefaultValuesAreCorrectlyTyped do let(:document) { GraphQL.parse(' query getCheese( $id: Int = 1, $bool: Boolean = 3.4e24, # can be coerced $str: String!, $badFloat: Float = true, $badInt: Int = "abc", $input: DairyProductInput = {source: YAK, fatContent: 1}, $badInput: DairyProductInput = {source: YAK, fatContent: true}, $nonNull: Int! = 1, ) { cheese(id: $id) { source } } ')} let(:validator) { GraphQL::StaticValidation::Validator.new(schema: DummySchema, rules: [GraphQL::StaticValidation::VariableDefaultValuesAreCorrectlyTyped]) } let(:errors) { validator.validate(document) } it "finds default values that don't match their types" do expected = [ { "message"=>"Default value for $badFloat doesn't match type Float", "locations"=>[{"line"=>6, "column"=>8}] }, { "message"=>"Default value for $badInt doesn't match type Int", "locations"=>[{"line"=>7, "column"=>8}] }, { "message"=>"Default value for $badInput doesn't match type DairyProductInput", "locations"=>[{"line"=>9, "column"=>8}] }, { "message"=>"Non-null variable $nonNull can't have a default value", "locations"=>[{"line"=>10, "column"=>8}] } ] assert_equal(expected, errors) end end
Version data entries
26 entries across 26 versions & 1 rubygems