-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
232 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
...ages/@ama-sdk/schematics/schematics/typescript/core/helpers/copy-referenced-files.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { cleanVirtualFileSystem, useVirtualFileSystem } from '@o3r/test-helpers'; | ||
import { readFile } from 'node:fs/promises'; | ||
import { dirname, join } from 'node:path'; | ||
|
||
describe('Copy Referenced Files', () => { | ||
const virtualFileSystem = useVirtualFileSystem(); | ||
const copyReferencedFiles = require('./copy-referenced-files').copyReferencedFiles; | ||
|
||
const migrationScriptMocksPath = join(__dirname, '../../../../testing/mocks'); | ||
const specFilePath = '../models/split-spec/split-spec.yaml'; | ||
const outputDirectory = './local-references'; | ||
|
||
const copyMockFile = async (virtualPath: string, realPath: string) => { | ||
if (!virtualFileSystem.existsSync(dirname(virtualPath))) { | ||
await virtualFileSystem.promises.mkdir(dirname(virtualPath), {recursive: true}); | ||
} | ||
await virtualFileSystem.promises.writeFile(virtualPath, await readFile(join(migrationScriptMocksPath, realPath), {encoding: 'utf8'})); | ||
}; | ||
|
||
beforeAll(async () => { | ||
await virtualFileSystem.promises.mkdir(dirname(specFilePath), {recursive: true}); | ||
await copyMockFile(specFilePath, 'split-spec/split-spec.yaml'); | ||
await copyMockFile('../models/split-spec/spec-chunk1.yaml', 'split-spec/spec-chunk1.yaml'); | ||
await copyMockFile('../models/spec-chunk2.yaml', 'spec-chunk2.yaml'); | ||
await copyMockFile('../models/spec-chunk3/spec-chunk3.yaml', 'spec-chunk3/spec-chunk3.yaml'); | ||
await copyMockFile('../models/spec-chunk4/spec-chunk4.yaml', 'spec-chunk4/spec-chunk4.yaml'); | ||
}); | ||
|
||
afterAll(() => { | ||
cleanVirtualFileSystem(); | ||
}); | ||
|
||
it('should copy the local files referenced in the spec', async () => { | ||
const baseRelativePath = await copyReferencedFiles(specFilePath, outputDirectory); | ||
expect(baseRelativePath).toMatch(/^local-references[\\/]split-spec$/); | ||
expect(virtualFileSystem.existsSync(join(outputDirectory, 'split-spec/spec-chunk1.yaml'))).toBe(true); | ||
expect(virtualFileSystem.existsSync(join(outputDirectory, 'spec-chunk2.yaml'))).toBe(true); | ||
expect(virtualFileSystem.existsSync(join(outputDirectory, 'spec-chunk3/spec-chunk3.yaml'))).toBe(true); | ||
expect(virtualFileSystem.existsSync(join(outputDirectory, 'spec-chunk4/spec-chunk4.yaml'))).toBe(true); | ||
}); | ||
}); |
97 changes: 97 additions & 0 deletions
97
packages/@ama-sdk/schematics/schematics/typescript/core/helpers/copy-referenced-files.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
import { existsSync } from 'node:fs'; | ||
import { copyFile, mkdir, readFile, rm } from 'node:fs/promises'; | ||
import { dirname, join, normalize, posix, relative, resolve } from 'node:path'; | ||
|
||
const refMatcher = /\B['"]?[$]ref['"]?\s*:\s*([^#\n]+)/g; | ||
|
||
/** | ||
* Extract the list of local references from a single spec file content | ||
* @param specContent | ||
* @param basePath | ||
*/ | ||
function extractRefPaths(specContent: string, basePath: string): string[] { | ||
const refs = specContent.match(refMatcher); | ||
return refs ? | ||
refs | ||
.map((capture) => capture.replace(refMatcher, '$1').replace(/['"]/g, '')) | ||
.filter((refPath) => refPath.startsWith('.')) | ||
.map((refPath) => join(basePath, refPath)) | ||
: []; | ||
} | ||
|
||
/** | ||
* Recursively extract the list of local references starting from the input spec file | ||
* @param specFilePath | ||
* @param referenceFilePath | ||
* @param visited | ||
*/ | ||
async function extractRefPathRecursive(specFilePath: string, referenceFilePath: string, visited: Set<string>): Promise<string[]> { | ||
const resolvedFilePath = resolve(specFilePath); | ||
if (!visited.has(resolvedFilePath)) { | ||
visited.add(resolvedFilePath); | ||
|
||
const specContent = await readFile(specFilePath, {encoding: 'utf8'}); | ||
const refPaths = extractRefPaths(specContent, relative(dirname(referenceFilePath), dirname(specFilePath))); | ||
const recursiveRefPaths = await Promise.all( | ||
refPaths.map((refPath) => extractRefPathRecursive(join(dirname(referenceFilePath), refPath), referenceFilePath, visited)) | ||
); | ||
return [ | ||
...refPaths, | ||
...recursiveRefPaths.flat() | ||
]; | ||
} | ||
return []; | ||
} | ||
|
||
/** | ||
* Replace all the local relative references using the new base relative path | ||
* @param specContent | ||
* @param newBaseRelativePath | ||
*/ | ||
export function updateLocalRelativeRefs(specContent: string, newBaseRelativePath: string) { | ||
const formatPath = (inputPath:string) => (inputPath.startsWith('.') ? inputPath : `./${inputPath}`).replace(/\\+/g, '/'); | ||
return specContent.replace(refMatcher, (match, ref: string) => { | ||
const refPath = ref.replace(/['"]/g, ''); | ||
return refPath.startsWith('.') ? | ||
match.replace(refPath, formatPath(normalize(posix.join(newBaseRelativePath, refPath)))) | ||
: match; | ||
}); | ||
} | ||
|
||
/** | ||
* Copy the local files referenced in the input spec file to the output directory | ||
* @param specFilePath | ||
* @param outputDirectory | ||
*/ | ||
export async function copyReferencedFiles(specFilePath: string, outputDirectory: string) { | ||
const dedupe = (paths: string[]) => | ||
paths.filter((refPath, index) => { | ||
const actualPath = join(dirname(specFilePath), refPath); | ||
return paths.findIndex((otherRefPath) => join(dirname(specFilePath), otherRefPath) === actualPath) === index; | ||
}); | ||
const refPaths = dedupe(await extractRefPathRecursive(specFilePath, specFilePath, new Set())); | ||
if (refPaths.length) { | ||
if (existsSync(outputDirectory)) { | ||
await rm(outputDirectory, { recursive: true }); | ||
} | ||
await mkdir(outputDirectory, { recursive: true }); | ||
|
||
// Calculate the lowest level base path to keep the same directory structure | ||
const maxDepth = Math.max(...refPaths.map((refPath) => refPath.split('..').length)); | ||
const basePath = join(specFilePath, '../'.repeat(maxDepth)); | ||
const baseRelativePath = relative(basePath, dirname(specFilePath)); | ||
|
||
// Copy the files | ||
await Promise.all(refPaths.map(async (refPath) => { | ||
const sourcePath = join(dirname(specFilePath), refPath); | ||
const destPath = join(outputDirectory, baseRelativePath, refPath); | ||
if (!existsSync(dirname(destPath))) { | ||
await mkdir(dirname(destPath), { recursive: true }); | ||
} | ||
await copyFile(sourcePath, destPath); | ||
})); | ||
|
||
return join(outputDirectory, baseRelativePath); | ||
} | ||
return ''; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
title: Pet | ||
type: object | ||
properties: | ||
id: | ||
type: integer | ||
format: int64 | ||
example: 10 | ||
category: | ||
$ref: './split-spec/split-spec.yaml#/components/schemas/Category' |
9 changes: 9 additions & 0 deletions
9
packages/@ama-sdk/schematics/testing/mocks/spec-chunk3/spec-chunk3.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
title: Pet | ||
type: object | ||
properties: | ||
id: | ||
type: integer | ||
format: int64 | ||
example: 10 | ||
category: | ||
$ref: '../spec-chunk4/spec-chunk4.yaml#/components/schemas/Category' |
12 changes: 12 additions & 0 deletions
12
packages/@ama-sdk/schematics/testing/mocks/spec-chunk4/spec-chunk4.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
components: | ||
schemas: | ||
Category: | ||
type: object | ||
properties: | ||
id: | ||
type: integer | ||
format: int64 | ||
example: 10 | ||
name: | ||
type: string | ||
example: "test" |
9 changes: 9 additions & 0 deletions
9
packages/@ama-sdk/schematics/testing/mocks/split-spec/spec-chunk1.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
title: Pet | ||
type: object | ||
properties: | ||
id: | ||
type: integer | ||
format: int64 | ||
example: 10 | ||
category: | ||
$ref: './split-spec.yaml#/components/schemas/Category' |
45 changes: 45 additions & 0 deletions
45
packages/@ama-sdk/schematics/testing/mocks/split-spec/split-spec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
openapi: 3.0.2 | ||
info: | ||
description: test | ||
title: test | ||
version: 0.0.0 | ||
paths: | ||
/test: | ||
get: | ||
responses: | ||
'200': | ||
description: test | ||
content: | ||
application/json: | ||
schema: | ||
$ref: './spec-chunk1.yaml' | ||
/test2: | ||
get: | ||
responses: | ||
'200': | ||
description: test | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '../spec-chunk2.yaml' | ||
/test3: | ||
get: | ||
responses: | ||
'200': | ||
description: test | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '../spec-chunk3/spec-chunk3.yaml' | ||
components: | ||
schemas: | ||
Category: | ||
type: object | ||
properties: | ||
id: | ||
type: integer | ||
format: int64 | ||
example: 10 | ||
name: | ||
type: string | ||
example: "test" |