Validate variables are used
This commit is contained in:
parent
3e393004ae
commit
e9a94147fb
@ -45,6 +45,7 @@ and this project adheres to
|
|||||||
- `variablesAreInputTypesRule`
|
- `variablesAreInputTypesRule`
|
||||||
- `noUndefinedVariablesRule`
|
- `noUndefinedVariablesRule`
|
||||||
- `noUndefinedVariablesRule`
|
- `noUndefinedVariablesRule`
|
||||||
|
- `noUnusedVariablesRule`
|
||||||
- `AST.Document.Field`.
|
- `AST.Document.Field`.
|
||||||
- `AST.Document.FragmentSpread`.
|
- `AST.Document.FragmentSpread`.
|
||||||
- `AST.Document.InlineFragment`.
|
- `AST.Document.InlineFragment`.
|
||||||
|
@ -17,6 +17,7 @@ module Language.GraphQL.Validate.Rules
|
|||||||
, noFragmentCyclesRule
|
, noFragmentCyclesRule
|
||||||
, noUndefinedVariablesRule
|
, noUndefinedVariablesRule
|
||||||
, noUnusedFragmentsRule
|
, noUnusedFragmentsRule
|
||||||
|
, noUnusedVariablesRule
|
||||||
, singleFieldSubscriptionsRule
|
, singleFieldSubscriptionsRule
|
||||||
, specifiedRules
|
, specifiedRules
|
||||||
, uniqueArgumentNamesRule
|
, uniqueArgumentNamesRule
|
||||||
@ -76,6 +77,7 @@ specifiedRules =
|
|||||||
, uniqueVariableNamesRule
|
, uniqueVariableNamesRule
|
||||||
, variablesAreInputTypesRule
|
, variablesAreInputTypesRule
|
||||||
, noUndefinedVariablesRule
|
, noUndefinedVariablesRule
|
||||||
|
, noUnusedVariablesRule
|
||||||
]
|
]
|
||||||
|
|
||||||
-- | Definition must be OperationDefinition or FragmentDefinition.
|
-- | Definition must be OperationDefinition or FragmentDefinition.
|
||||||
@ -560,7 +562,27 @@ variablesAreInputTypesRule = VariablesRule
|
|||||||
-- used within the context of an operation must be defined at the top level of
|
-- used within the context of an operation must be defined at the top level of
|
||||||
-- that operation.
|
-- that operation.
|
||||||
noUndefinedVariablesRule :: forall m. Rule m
|
noUndefinedVariablesRule :: forall m. Rule m
|
||||||
noUndefinedVariablesRule = OperationDefinitionRule $ \case
|
noUndefinedVariablesRule =
|
||||||
|
variableUsageDifference (flip HashMap.difference) errorMessage
|
||||||
|
where
|
||||||
|
errorMessage Nothing variableName = concat
|
||||||
|
[ "Variable \"$"
|
||||||
|
, Text.unpack variableName
|
||||||
|
, "\" is not defined."
|
||||||
|
]
|
||||||
|
errorMessage (Just operationName) variableName = concat
|
||||||
|
[ "Variable \"$"
|
||||||
|
, Text.unpack variableName
|
||||||
|
, "\" is not defined by operation \""
|
||||||
|
, Text.unpack operationName
|
||||||
|
, "\"."
|
||||||
|
]
|
||||||
|
|
||||||
|
variableUsageDifference :: forall m
|
||||||
|
. (HashMap Name [Location] -> HashMap Name [Location] -> HashMap Name [Location])
|
||||||
|
-> (Maybe Name -> Name -> String)
|
||||||
|
-> Rule m
|
||||||
|
variableUsageDifference difference errorMessage = OperationDefinitionRule $ \case
|
||||||
SelectionSet _ _ -> lift mempty
|
SelectionSet _ _ -> lift mempty
|
||||||
OperationDefinition _ operationName variables _ selections _ ->
|
OperationDefinition _ operationName variables _ selections _ ->
|
||||||
let variableNames = HashMap.fromList $ getVariableName <$> variables
|
let variableNames = HashMap.fromList $ getVariableName <$> variables
|
||||||
@ -572,10 +594,11 @@ noUndefinedVariablesRule = OperationDefinitionRule $ \case
|
|||||||
readerMapper operationName variableNames' = Seq.fromList
|
readerMapper operationName variableNames' = Seq.fromList
|
||||||
. fmap (makeError operationName)
|
. fmap (makeError operationName)
|
||||||
. HashMap.toList
|
. HashMap.toList
|
||||||
. flip HashMap.difference variableNames'
|
. difference variableNames'
|
||||||
. HashMap.fromListWith (++)
|
. HashMap.fromListWith (++)
|
||||||
. toList
|
. toList
|
||||||
getVariableName (VariableDefinition variableName _ _ _) = (variableName, [])
|
getVariableName (VariableDefinition variableName _ _ location) =
|
||||||
|
(variableName, [location])
|
||||||
filterSelections' :: Foldable t
|
filterSelections' :: Foldable t
|
||||||
=> t Selection
|
=> t Selection
|
||||||
-> ValidationState m (Name, [Location])
|
-> ValidationState m (Name, [Location])
|
||||||
@ -609,15 +632,22 @@ noUndefinedVariablesRule = OperationDefinitionRule $ \case
|
|||||||
{ message = errorMessage operationName variableName
|
{ message = errorMessage operationName variableName
|
||||||
, locations = locations'
|
, locations = locations'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- | All variables defined by an operation must be used in that operation or a
|
||||||
|
-- fragment transitively included by that operation. Unused variables cause a
|
||||||
|
-- validation error.
|
||||||
|
noUnusedVariablesRule :: forall m. Rule m
|
||||||
|
noUnusedVariablesRule = variableUsageDifference HashMap.difference errorMessage
|
||||||
|
where
|
||||||
errorMessage Nothing variableName = concat
|
errorMessage Nothing variableName = concat
|
||||||
[ "Variable \"$"
|
[ "Variable \"$"
|
||||||
, Text.unpack variableName
|
, Text.unpack variableName
|
||||||
, "\" is not defined."
|
, "\" is never used."
|
||||||
]
|
]
|
||||||
errorMessage (Just operationName) variableName = concat
|
errorMessage (Just operationName) variableName = concat
|
||||||
[ "Variable \"$"
|
[ "Variable \"$"
|
||||||
, Text.unpack variableName
|
, Text.unpack variableName
|
||||||
, "\" is not defined by operation \""
|
, "\" is never used in operation \""
|
||||||
, Text.unpack operationName
|
, Text.unpack operationName
|
||||||
, "\"."
|
, "\"."
|
||||||
]
|
]
|
||||||
|
@ -492,3 +492,19 @@ spec =
|
|||||||
, locations = [AST.Location 9 46]
|
, locations = [AST.Location 9 46]
|
||||||
}
|
}
|
||||||
in validate queryString `shouldBe` Seq.singleton expected
|
in validate queryString `shouldBe` Seq.singleton expected
|
||||||
|
|
||||||
|
it "rejects unused variables" $
|
||||||
|
let queryString = [r|
|
||||||
|
query variableUnused($atOtherHomes: Boolean) {
|
||||||
|
dog {
|
||||||
|
isHousetrained
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|]
|
||||||
|
expected = Error
|
||||||
|
{ message =
|
||||||
|
"Variable \"$atOtherHomes\" is never used in operation \
|
||||||
|
\\"variableUnused\"."
|
||||||
|
, locations = [AST.Location 2 36]
|
||||||
|
}
|
||||||
|
in validate queryString `shouldBe` Seq.singleton expected
|
||||||
|
Loading…
Reference in New Issue
Block a user