1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
use crate::parser::types::Field; use crate::validation::visitor::{Visitor, VisitorContext}; use crate::Positioned; #[derive(Default)] pub struct ScalarLeafs; impl<'a> Visitor<'a> for ScalarLeafs { fn enter_field(&mut self, ctx: &mut VisitorContext<'a>, field: &'a Positioned<Field>) { if let Some(ty) = ctx.parent_type() { if let Some(schema_field) = ty.field_by_name(&field.node.name.node) { if let Some(ty) = ctx.registry.concrete_type_by_name(&schema_field.ty) { if ty.is_leaf() && !field.node.selection_set.node.items.is_empty() { ctx.report_error(vec![field.pos], format!( "Field \"{}\" must not have a selection since type \"{}\" has no subfields", field.node.name, ty.name() )) } else if !ty.is_leaf() && field.node.selection_set.node.items.is_empty() { ctx.report_error( vec![field.pos], format!( "Field \"{}\" of type \"{}\" must have a selection of subfields", field.node.name, ty.name() ), ) } } } } } } #[cfg(test)] mod tests { use super::*; pub fn factory() -> ScalarLeafs { ScalarLeafs } #[test] fn valid_scalar_selection() { expect_passes_rule!( factory, r#" fragment scalarSelection on Dog { barks } { __typename } "#, ); } #[test] fn object_type_missing_selection() { expect_fails_rule!( factory, r#" query directQueryOnObjectWithoutSubFields { human } "#, ); } #[test] fn interface_type_missing_selection() { expect_fails_rule!( factory, r#" { human { pets } } "#, ); } #[test] fn valid_scalar_selection_with_args() { expect_passes_rule!( factory, r#" fragment scalarSelectionWithArgs on Dog { doesKnowCommand(dogCommand: SIT) } { __typename } "#, ); } #[test] fn scalar_selection_not_allowed_on_boolean() { expect_fails_rule!( factory, r#" fragment scalarSelectionsNotAllowedOnBoolean on Dog { barks { sinceWhen } } { __typename } "#, ); } #[test] fn scalar_selection_not_allowed_on_enum() { expect_fails_rule!( factory, r#" fragment scalarSelectionsNotAllowedOnEnum on Cat { furColor { inHexdec } } { __typename } "#, ); } #[test] fn scalar_selection_not_allowed_with_args() { expect_fails_rule!( factory, r#" fragment scalarSelectionsNotAllowedWithArgs on Dog { doesKnowCommand(dogCommand: SIT) { sinceWhen } } { __typename } "#, ); } #[test] fn scalar_selection_not_allowed_with_directives() { expect_fails_rule!( factory, r#" fragment scalarSelectionsNotAllowedWithDirectives on Dog { name @include(if: true) { isAlsoHumanName } } { __typename } "#, ); } #[test] fn scalar_selection_not_allowed_with_directives_and_args() { expect_fails_rule!( factory, r#" fragment scalarSelectionsNotAllowedWithDirectivesAndArgs on Dog { doesKnowCommand(dogCommand: SIT) @include(if: true) { sinceWhen } } { __typename } "#, ); } }