Skip to content

Commit

Permalink
Backport "Prevent Infinite Loop in OverlappingFieldsCanBeMergedRule" …
Browse files Browse the repository at this point in the history
…to v15 (#4000)

fix from #3442
  • Loading branch information
benjie committed Jun 21, 2024
1 parent 12e30ad commit 48d5cbe
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
45 changes: 45 additions & 0 deletions src/validation/__tests__/OverlappingFieldsCanBeMergedRule-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1011,18 +1011,63 @@ describe('Validate: Overlapping fields can be merged', () => {

it('does not infinite loop on recursive fragment', () => {
expectValid(`
{
...fragA
}
fragment fragA on Human { name, relatives { name, ...fragA } }
`);
});

it('does not infinite loop on immediately recursive fragment', () => {
expectValid(`
{
...fragA
}
fragment fragA on Human { name, ...fragA }
`);
});

it('does not infinite loop on recursive fragment with a field named after fragment', () => {
expectValid(`
{
...fragA
fragA
}
fragment fragA on Query { ...fragA }
`);
});

it('finds invalid cases even with field named after fragment', () => {
expectErrors(`
{
fragA
...fragA
}
fragment fragA on Type {
fragA: b
}
`).to.deep.equal([
{
message:
'Fields "fragA" conflict because "fragA" and "b" are different fields. Use different aliases on the fields to fetch both if this was intentional.',
locations: [
{ line: 3, column: 9 },
{ line: 8, column: 9 },
],
},
]);
});

it('does not infinite loop on transitively recursive fragment', () => {
expectValid(`
{
...fragA
fragB
}
fragment fragA on Human { name, ...fragB }
fragment fragB on Human { name, ...fragC }
fragment fragC on Human { name, ...fragA }
Expand Down
18 changes: 18 additions & 0 deletions src/validation/rules/OverlappingFieldsCanBeMergedRule.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,24 @@ function collectConflictsBetweenFieldsAndFragment(
// (E) Then collect any conflicts between the provided collection of fields
// and any fragment names found in the given fragment.
for (let i = 0; i < fragmentNames2.length; i++) {
const referencedFragmentName = fragmentNames2[i];

// Memoize so two fragments are not compared for conflicts more than once.
if (
comparedFragmentPairs.has(
referencedFragmentName,
fragmentName,
areMutuallyExclusive,
)
) {
continue;
}
comparedFragmentPairs.add(
referencedFragmentName,
fragmentName,
areMutuallyExclusive,
);

collectConflictsBetweenFieldsAndFragment(
context,
conflicts,
Expand Down

0 comments on commit 48d5cbe

Please sign in to comment.