-
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
219 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
...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,38 @@ | ||
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 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'})); | ||
}; | ||
|
||
afterAll(() => { | ||
cleanVirtualFileSystem(); | ||
}); | ||
|
||
it('should copy the local files referenced in the spec', async () => { | ||
const specFilePath = '../models/split-spec/split-spec.yaml'; | ||
const outputDirectory = './local-references'; | ||
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'); | ||
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); | ||
}); | ||
}); |
89 changes: 89 additions & 0 deletions
89
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,89 @@ | ||
import { existsSync } from 'node:fs'; | ||
import { copyFile, mkdir, readFile, rmdir } from 'node:fs/promises'; | ||
import { dirname, join, 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); | ||
const resolvedReferenceFilePath = resolve(referenceFilePath); | ||
if (!visited.has(resolvedFilePath)) { | ||
visited.add(resolvedFilePath); | ||
|
||
const specContent = await readFile(specFilePath, {encoding: 'utf8'}); | ||
const refPaths = extractRefPaths(specContent, relative(dirname(referenceFilePath), dirname(specFilePath))) | ||
.filter((ref) => resolve(dirname(referenceFilePath), ref) !== resolvedReferenceFilePath); | ||
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) { | ||
return specContent.replace(refMatcher, (match, ref: string) => | ||
match.replace(ref, join(newBaseRelativePath, ref))); | ||
} | ||
|
||
/** | ||
* 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 refPaths = await extractRefPathRecursive(specFilePath, specFilePath, new Set()); | ||
if (refPaths.length) { | ||
if (existsSync(outputDirectory)) { | ||
await rmdir(outputDirectory); | ||
} | ||
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" |