|
| 1 | +/** |
| 2 | + * @flow |
| 3 | + * @format |
| 4 | + */ |
| 5 | + |
| 6 | +'use strict'; |
| 7 | + |
| 8 | +const print = require('../printGraphQL'); |
| 9 | + |
| 10 | +const { parse } = require('graphql'); |
| 11 | +const path = require('path'); |
| 12 | +const fs = require('fs'); |
| 13 | + |
| 14 | +type OutputFixture = { name: string, input: string, output: string }; |
| 15 | +type ErrorFixture = { name: string, input: string, error: string }; |
| 16 | +type PrinterFixture = OutputFixture | ErrorFixture; |
| 17 | + |
| 18 | +describe('printGraphQL', () => { |
| 19 | + const outputFixtures = loadPrinterFixtures() |
| 20 | + .filter(fixture => fixture.output) |
| 21 | + // object key format doesn't work |
| 22 | + .map(fixture => [fixture.name, fixture.input, fixture.output]); |
| 23 | + |
| 24 | + it.each(outputFixtures)('tests printer idempotence: %s', (_name, input, expected) => { |
| 25 | + expect(print(parse(input))).toEqual(expected); |
| 26 | + }); |
| 27 | +}); |
| 28 | + |
| 29 | +function loadPrinterFixtures(): PrinterFixture[] { |
| 30 | + const fixturesPath = path.join( |
| 31 | + __dirname, |
| 32 | + '../../../compiler/crates/graphql-text-printer/tests/print_ast/fixtures', |
| 33 | + ); |
| 34 | + const fixtures = []; |
| 35 | + for (const file of fs.readdirSync(fixturesPath)) { |
| 36 | + if (!file.endsWith('.expected')) { |
| 37 | + continue; |
| 38 | + } |
| 39 | + const content = fs.readFileSync(path.join(fixturesPath, file), 'utf8'); |
| 40 | + try { |
| 41 | + const fixture = parsePrintFixture(file, content); |
| 42 | + fixtures.push(fixture); |
| 43 | + } catch (err) { |
| 44 | + console.error(err, `\n\nFailed to parse ${file}`); |
| 45 | + } |
| 46 | + } |
| 47 | + return fixtures; |
| 48 | +} |
| 49 | + |
| 50 | +function parsePrintFixture(name: string, content: string): PrinterFixture { |
| 51 | + const successPatttern = /^=+ INPUT =+\n(?<input>[\s\S]*)\n=+ OUTPUT =+\n(?<output>[\s\S]*)$/; |
| 52 | + const failurePattern = /^=+ INPUT =+\n(?<input>[\s\S]*)\n=+ ERROR =+\n(?<error>[\s\S]*)$/; |
| 53 | + |
| 54 | + const match = content.match(successPatttern) ?? content.match(failurePattern); |
| 55 | + if (!match) { |
| 56 | + throw new Error('Unknown fixture format from the graphql-text-printer crate!'); |
| 57 | + } |
| 58 | + return { name, ...match.groups } as PrinterFixture; |
| 59 | +} |
0 commit comments