Skip to content

Commit

Permalink
Implement compareResultsUsingQuery helper function (#10237)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamn authored and alessbell committed Dec 8, 2022
1 parent 4f73c5c commit 7755708
Show file tree
Hide file tree
Showing 2 changed files with 509 additions and 0 deletions.
360 changes: 360 additions & 0 deletions src/react/hooks/__tests__/compareResults.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,360 @@
import { gql } from "../../../core";
import { compareResultsUsingQuery } from "../compareResults";

describe("compareResultsUsingQuery", () => {
it("is importable and a function", () => {
expect(typeof compareResultsUsingQuery).toBe("function");
});

it("works with a basic single-field query", () => {
const query = gql`
query {
hello
}
`;

expect(compareResultsUsingQuery(
query,
{ hello: "hi" },
{ hello: "hi" },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ hello: "hi", unrelated: 1 },
{ hello: "hi", unrelated: 100 },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ hello: "hi" },
{ hello: "hey" },
)).toBe(false);

expect(compareResultsUsingQuery(
query,
{},
{ hello: "hi" },
)).toBe(false);

expect(compareResultsUsingQuery(
query,
{ hello: "hi" },
{},
)).toBe(false);

expect(compareResultsUsingQuery(
query,
{ hello: "hi" },
null,
)).toBe(false);

expect(compareResultsUsingQuery(
query,
null,
{ hello: "hi" },
)).toBe(false);

expect(compareResultsUsingQuery(
query,
null,
null,
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{},
{},
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ unrelated: "whatever" },
{ unrelated: "no matter" },
)).toBe(true);
});

it("is not confused by properties in different orders", () => {
const query = gql`
query {
a
b
c
}
`;

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ b: 2, c: 3, a: 1 },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ d: "bogus", a: 1, b: 2, c: 3 },
{ b: 2, c: 3, a: 1, d: "also bogus" },
)).toBe(true);
});

it("respects the @nonreactive directive on fields", () => {
const query = gql`
query {
a
b
c @nonreactive
}
`;

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 1, b: 2, c: "different" },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: "different", b: 2, c: 4 },
)).toBe(false);
});

it("respects the @nonreactive directive on inline fragments", () => {
const query = gql`
query {
a
... @nonreactive {
b
c
}
}
`;

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 1, b: 20, c: 30 },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 10, b: 20, c: 30 },
)).toBe(false);
});

it("respects the @nonreactive directive on named fragment ...spreads", () => {
const query = gql`
query {
a
...BCFragment @nonreactive
}
fragment BCFragment on Query {
b
c
}
`;

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 1, b: 2, c: 30 },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 1, b: 20, c: 3 },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 1, b: 20, c: 30 },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 10, b: 20, c: 30 },
)).toBe(false);
});

it("respects the @nonreactive directive on named fragment definitions", () => {
const query = gql`
query {
a
...BCFragment
}
fragment BCFragment on Query @nonreactive {
b
c
}
`;

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 1, b: 2, c: 30 },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 1, b: 20, c: 3 },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 1, b: 20, c: 30 },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 10, b: 20, c: 30 },
)).toBe(false);
});

it("traverses fragments without @nonreactive", () => {
const query = gql`
query {
a
...BCFragment
}
fragment BCFragment on Query {
b
c
}
`;

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 1, b: 2, c: 3 },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ c: 3, a: 1, b: 2 },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 1, b: 2, c: 30 },
)).toBe(false);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 1, b: 20, c: 3 },
)).toBe(false);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 1, b: 20, c: 30 },
)).toBe(false);

expect(compareResultsUsingQuery(
query,
{ a: 1, b: 2, c: 3 },
{ a: 10, b: 20, c: 30 },
)).toBe(false);
});

it("iterates over array-valued result fields", () => {
const query = gql`
query {
things {
__typename
id
...ThingDetails
}
}
fragment ThingDetails on Thing {
stable
volatile @nonreactive
}
`;

const makeThing = (id: string, stable = 1234) => ({
__typename: "Thing",
id,
stable,
volatile: Math.random(),
});

expect(compareResultsUsingQuery(
query,
{ things: "abc".split("").map(id => makeThing(id)) },
{ things: [makeThing("a"), makeThing("b"), makeThing("c")] },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ things: "abc".split("").map(id => makeThing(id)) },
{ things: "not an array" },
)).toBe(false);

expect(compareResultsUsingQuery(
query,
{ things: {} },
{ things: [] },
)).toBe(false);

expect(compareResultsUsingQuery(
query,
{ things: [] },
{ things: {} },
)).toBe(false);

expect(compareResultsUsingQuery(
query,
{ things: [] },
{ things: [] },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ things: {} },
{ things: {} },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ things: "ab".split("").map(id => makeThing(id)) },
{ things: [makeThing("a"), makeThing("b")] },
)).toBe(true);

expect(compareResultsUsingQuery(
query,
{ things: "ab".split("").map(id => makeThing(id)) },
{ things: [makeThing("b"), makeThing("a")] },
)).toBe(false);

expect(compareResultsUsingQuery(
query,
{ things: "ab".split("").map(id => makeThing(id)) },
{ things: [makeThing("a"), makeThing("b", 2345)] },
)).toBe(false);

expect(compareResultsUsingQuery(
query,
{ things: "ab".split("").map(id => makeThing(id)) },
{ things: [makeThing("a", 3456), makeThing("b")] },
)).toBe(false);

expect(compareResultsUsingQuery(
query,
{ things: "ab".split("").map(id => makeThing(id)) },
{ things: [makeThing("b"), makeThing("a")] },
)).toBe(false);
});
});

0 comments on commit 7755708

Please sign in to comment.