Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Federation Compatibility Test Suite #120

Merged
merged 7 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ on:
branches:
- main
pull_request:
branches:
- main

jobs:
format:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
branches:
- main
pull_request:
branches:
- main

jobs:
unit:
Expand Down
Empty file modified .yarn/releases/yarn-4.5.1.cjs
100755 → 100644
Empty file.
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ yarnPath: .yarn/releases/yarn-4.5.1.cjs # TODO: corepack does not work in github
nodeLinker: node-modules
npmPublishRegistry: https://registry.npmjs.org
npmAuthToken: ${NPM_TOKEN:-}
checksumBehavior: ignore
3 changes: 2 additions & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ const rootDir = __dirname;
const tsconfigPath = resolve(rootDir, 'tsconfig.json');
const tsconfigContents = readFileSync(tsconfigPath, 'utf8');
const tsconfig = JSON5.parse(tsconfigContents);
const ESM_PACKAGES = ['graphql-federation-gateway-audit'];

export default {
testEnvironment: 'node',
rootDir,
restoreMocks: true,
reporters: ['default'],
verbose: isCI,
modulePathIgnorePatterns: ['dist'],
collectCoverage: false,
cacheDirectory: resolve(rootDir, `${isCI ? '' : 'node_modules/'}.cache/jest`),
Expand All @@ -31,5 +31,6 @@ export default {
useESM: true,
}),
},
transformIgnorePatterns: [`node_modules/(?!(${ESM_PACKAGES.join('|')})/)`],
testMatch: ['**/*.(test|spec).ts'],
} satisfies Config;
1 change: 1 addition & 0 deletions packages/federation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"@apollo/subgraph": "^2.5.4",
"@types/lodash.pick": "4.4.9",
"graphql": "^16.9.0",
"graphql-federation-gateway-audit": "the-guild-org/graphql-federation-gateway-audit#expose-server-logic",
"pkgroll": "2.5.1"
},
"sideEffects": false,
Expand Down
152 changes: 72 additions & 80 deletions packages/federation/tests/federation-compatibility.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { existsSync, readdirSync, readFileSync } from 'fs';
import { readdirSync, readFileSync } from 'fs';
import { join } from 'path';
import { ApolloGateway } from '@apollo/gateway';
import { normalizedExecutor } from '@graphql-tools/executor';
import {
ExecutionResult,
Expand All @@ -9,6 +8,7 @@ import {
MapperKind,
mapSchema,
} from '@graphql-tools/utils';
import { assertSingleExecutionValue } from '@internal/testing';
import {
buildSchema,
getNamedType,
Expand All @@ -19,86 +19,76 @@ import {
printSchema,
validate,
} from 'graphql';
import { afterAll, beforeAll, describe, expect, it } from 'vitest';
import { createRouter } from 'graphql-federation-gateway-audit';
import { beforeAll, describe, expect, it } from 'vitest';
import { getStitchedSchemaFromSupergraphSdl } from '../src/supergraph';

describe('Federation Compatibility', () => {
if (!existsSync(join(__dirname, 'fixtures', 'federation-compatibility'))) {
console.warn('Make sure you fetched the fixtures from the API first');
it.skip('skipping tests', () => {});
return;
}
const fixturesDir = join(__dirname, 'fixtures', 'federation-compatibility');
readdirSync(fixturesDir).forEach((supergraphName) => {
const supergraphFixturesDir = join(fixturesDir, supergraphName);
const supergraphSdlPath = join(supergraphFixturesDir, 'supergraph.graphql');
if (!existsSync(supergraphSdlPath)) {
return;
const auditRouter = createRouter();
const supergraphList = readdirSync(
join(
__dirname,
'../../../node_modules/graphql-federation-gateway-audit/src/test-suites',
),
);
const supergraphSdlMap = new Map<string, string>();
const supergraphTestMap = new Map<string, any>();
beforeAll(async () => {
const supergraphPathListRes = await auditRouter.fetch(
'http://localhost/supergraphs',
);
if (!supergraphPathListRes.ok) {
const error = await supergraphPathListRes.text();
throw new Error(`Failed to fetch supergraph list: ${error}`);
}
const supergraphPathList = await supergraphPathListRes.json();
for (const supergraphPath of supergraphPathList) {
if (supergraphPath) {
const supergraphRes = await auditRouter.fetch(supergraphPath);
const supergraphPathParts = supergraphPath.split('/');
const supergraphName =
supergraphPathParts[supergraphPathParts.length - 2];
const supergraphSdl = await supergraphRes.text();
supergraphSdlMap.set(supergraphName, supergraphSdl);
const testsPath = supergraphPath.replace('/supergraph', '/tests');
const testsRes = await auditRouter.fetch(testsPath);
const testsContent = await testsRes.json();
supergraphTestMap.set(supergraphName, testsContent);
}
}
});

for (const supergraphName of supergraphList) {
describe(supergraphName, () => {
const supergraphSdl = readFileSync(supergraphSdlPath, 'utf-8');
let stitchedSchema: GraphQLSchema;
// let apolloExecutor: Executor;
// let apolloSubgraphCalls: Record<string, number> = {};
let stitchingSubgraphCalls: Record<string, number> = {};
let apolloGW: ApolloGateway;
beforeAll(async () => {
let supergraphSdl: string;
const testFile = readFileSync(
join(
__dirname,
'../../../node_modules/graphql-federation-gateway-audit/src/test-suites',
supergraphName,
'test.ts',
),
'utf-8',
);
let tests: { query: string; expected: any }[] = new Array<{
query: string;
expected: any;
}>(testFile.match(/createTest\(/g)?.length ?? 0).fill({
query: '',
expected: {},
});
beforeAll(() => {
supergraphSdl = supergraphSdlMap.get(supergraphName)!;
tests = supergraphTestMap.get(supergraphName)!;
stitchedSchema = getStitchedSchemaFromSupergraphSdl({
supergraphSdl,
onSubschemaConfig(subschemaConfig) {
const actualExecutor = subschemaConfig.executor;
subschemaConfig.executor = function tracedExecutor(execReq) {
stitchingSubgraphCalls[subschemaConfig.name.toLowerCase()] =
(stitchingSubgraphCalls[subschemaConfig.name] || 0) + 1;
return actualExecutor(execReq);
};
httpExecutorOpts: {
fetch: auditRouter.fetch,
},
batch: true,
});
/* apolloGW = new ApolloGateway({
supergraphSdl,
buildService({ name, url }) {
const subgraphName = name;
const actualService = new RemoteGraphQLDataSource({ url });
return {
process(options) {
apolloSubgraphCalls[subgraphName.toLowerCase()] =
(apolloSubgraphCalls[subgraphName.toLowerCase()] || 0) + 1;
return actualService.process(options);
},
};
},
});
const loadedGw = await apolloGW.load();
apolloExecutor = function apolloExecutor(execReq) {
const operationAST = getOperationAST(execReq.document, execReq.operationName);
if (!operationAST) {
throw new Error('Operation not found');
}
const printedDoc = print(execReq.document);
return loadedGw.executor({
request: {},
logger: console,
schema: loadedGw.schema,
schemaHash: 'hash' as any,
context: execReq.context as any,
cache: new Map() as any,
queryHash: 'hash' as any,
document: execReq.document,
source: printedDoc,
operationName: execReq.operationName || null,
operation: operationAST,
metrics: {},
overallCachePolicy: {},
}) as ExecutionResult;
}; */
});
afterAll(async () => {
await apolloGW?.stop?.();
});
const tests: { query: string; expected: any }[] = JSON.parse(
readFileSync(join(supergraphFixturesDir, 'tests.json'), 'utf-8'),
);
it('generates the expected schema', () => {
const inputSchema = buildSchema(supergraphSdl, {
noLocation: true,
Expand Down Expand Up @@ -153,26 +143,28 @@ describe('Federation Compatibility', () => {
printSchema(sortedInputSchema).trim(),
);
});
tests.forEach((test, i) => {
tests.forEach((_, i) => {
describe(`test-query-${i}`, () => {
let result: ExecutionResult;
beforeAll(async () => {
// apolloSubgraphCalls = {};
stitchingSubgraphCalls = {};
it('gives the correct result', async () => {
const test = tests[i];
if (!test) {
throw new Error(`Test ${i} not found`);
}
const document = parse(test.query, { noLocation: true });
const validationErrors = validate(stitchedSchema, document);
let result: ExecutionResult;
if (validationErrors.length > 0) {
result = {
errors: validationErrors,
};
} else {
result = (await normalizedExecutor({
const execRes = await normalizedExecutor({
schema: stitchedSchema,
document,
})) as ExecutionResult;
});
assertSingleExecutionValue(execRes);
result = execRes;
}
});
it('gives the correct result', () => {
const received = {
data: result.data ?? null,
errors: !!result.errors?.length,
Expand All @@ -195,5 +187,5 @@ describe('Federation Compatibility', () => {
});
});
});
});
}
});
11 changes: 0 additions & 11 deletions vitest.projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,4 @@ export default defineWorkspace([
testTimeout,
},
},
{
extends: './vitest.config.ts',
test: {
name: 'e2e:bench',
hookTimeout: testTimeout,
testTimeout,
benchmark: {
include: ['e2e/**/*.bench.ts'],
},
},
},
]);
Loading
Loading