mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
225 lines
6.4 KiB
TypeScript
225 lines
6.4 KiB
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
// Run this manually with:
|
|
//
|
|
// ./node_modules/.bin/ts-node --project tools/ts_library_builder/tsconfig.json tools/ts_library_builder/test.ts
|
|
|
|
import * as assert from "assert";
|
|
import { Project, ts } from "ts-simple-ast";
|
|
import { flatten, mergeGlobal } from "./build_library";
|
|
import { inlineFiles, loadDtsFiles } from "./ast_util";
|
|
|
|
const { ModuleKind, ModuleResolutionKind, ScriptTarget } = ts;
|
|
|
|
/** setups and returns the fixtures for testing */
|
|
function setupFixtures() {
|
|
const basePath = process.cwd();
|
|
const buildPath = `${basePath}/tools/ts_library_builder/testdata`;
|
|
const outputFile = `${buildPath}/lib.output.d.ts`;
|
|
const inputProject = new Project({
|
|
compilerOptions: {
|
|
baseUrl: basePath,
|
|
declaration: true,
|
|
emitDeclarationOnly: true,
|
|
module: ModuleKind.AMD,
|
|
moduleResolution: ModuleResolutionKind.NodeJs,
|
|
strict: true,
|
|
stripInternal: true,
|
|
target: ScriptTarget.ESNext
|
|
}
|
|
});
|
|
inputProject.addExistingSourceFiles([
|
|
`${buildPath}/globals.ts`,
|
|
`${buildPath}/api.ts`
|
|
]);
|
|
const declarationProject = new Project({
|
|
compilerOptions: {},
|
|
useVirtualFileSystem: true
|
|
});
|
|
loadDtsFiles(declarationProject);
|
|
for (const { filePath, text } of inputProject.emitToMemory().getFiles()) {
|
|
declarationProject.createSourceFile(filePath, text);
|
|
}
|
|
const outputProject = new Project({
|
|
compilerOptions: {},
|
|
useVirtualFileSystem: true
|
|
});
|
|
loadDtsFiles(outputProject);
|
|
const outputSourceFile = outputProject.createSourceFile(outputFile);
|
|
const debug = true;
|
|
|
|
return {
|
|
basePath,
|
|
buildPath,
|
|
inputProject,
|
|
outputFile,
|
|
declarationProject,
|
|
outputProject,
|
|
outputSourceFile,
|
|
debug
|
|
};
|
|
}
|
|
|
|
function buildLibraryFlatten() {
|
|
const {
|
|
basePath,
|
|
buildPath,
|
|
debug,
|
|
declarationProject,
|
|
outputSourceFile: targetSourceFile
|
|
} = setupFixtures();
|
|
|
|
flatten({
|
|
basePath,
|
|
customSources: {},
|
|
debug,
|
|
declarationProject,
|
|
filePath: `${buildPath}/api.d.ts`,
|
|
moduleName: `"api"`,
|
|
namespaceName: "Api",
|
|
targetSourceFile
|
|
});
|
|
|
|
assert(targetSourceFile.getNamespace(`"api"`) != null);
|
|
assert(targetSourceFile.getNamespace("Api") != null);
|
|
assert.equal(targetSourceFile.getNamespaces().length, 2);
|
|
const moduleApi = targetSourceFile.getNamespaceOrThrow(`"api"`);
|
|
const functions = moduleApi.getFunctions();
|
|
assert.equal(functions[0].getName(), "foo");
|
|
assert.equal(
|
|
functions[0]
|
|
.getJsDocs()
|
|
.map(jsdoc => jsdoc.getInnerText())
|
|
.join("\n"),
|
|
"jsdoc for foo"
|
|
);
|
|
assert.equal(functions[1].getName(), "bar");
|
|
assert.equal(
|
|
functions[1]
|
|
.getJsDocs()
|
|
.map(jsdoc => jsdoc.getInnerText())
|
|
.join("\n"),
|
|
""
|
|
);
|
|
assert.equal(functions.length, 2);
|
|
const classes = moduleApi.getClasses();
|
|
assert.equal(classes[0].getName(), "Foo");
|
|
assert.equal(classes.length, 1);
|
|
const variableDeclarations = moduleApi.getVariableDeclarations();
|
|
assert.equal(variableDeclarations[0].getName(), "arr");
|
|
assert.equal(variableDeclarations.length, 1);
|
|
|
|
const namespaceApi = targetSourceFile.getNamespaceOrThrow(`"api"`);
|
|
const functionsNs = namespaceApi.getFunctions();
|
|
assert.equal(functionsNs[0].getName(), "foo");
|
|
assert.equal(
|
|
functionsNs[0]
|
|
.getJsDocs()
|
|
.map(jsdoc => jsdoc.getInnerText())
|
|
.join("\n"),
|
|
"jsdoc for foo"
|
|
);
|
|
assert.equal(functionsNs[1].getName(), "bar");
|
|
assert.equal(
|
|
functionsNs[1]
|
|
.getJsDocs()
|
|
.map(jsdoc => jsdoc.getInnerText())
|
|
.join("\n"),
|
|
""
|
|
);
|
|
assert.equal(functionsNs.length, 2);
|
|
const classesNs = namespaceApi.getClasses();
|
|
assert.equal(classesNs[0].getName(), "Foo");
|
|
assert.equal(classesNs.length, 1);
|
|
const variableDeclarationsNs = namespaceApi.getVariableDeclarations();
|
|
assert.equal(variableDeclarationsNs[0].getName(), "arr");
|
|
assert.equal(variableDeclarationsNs.length, 1);
|
|
}
|
|
|
|
function buildLibraryMerge() {
|
|
const {
|
|
basePath,
|
|
buildPath,
|
|
declarationProject,
|
|
debug,
|
|
inputProject,
|
|
outputSourceFile: targetSourceFile
|
|
} = setupFixtures();
|
|
|
|
mergeGlobal({
|
|
basePath,
|
|
declarationProject,
|
|
debug,
|
|
globalVarName: "foobarbaz",
|
|
filePath: `${buildPath}/globals.ts`,
|
|
inputProject,
|
|
interfaceName: "FooBar",
|
|
targetSourceFile
|
|
});
|
|
|
|
assert(targetSourceFile.getNamespace("moduleC") != null);
|
|
assert(targetSourceFile.getNamespace("moduleD") != null);
|
|
assert(targetSourceFile.getNamespace("moduleE") != null);
|
|
assert(targetSourceFile.getNamespace("moduleF") != null);
|
|
assert.equal(targetSourceFile.getNamespaces().length, 4);
|
|
assert(targetSourceFile.getInterface("FooBar") != null);
|
|
assert.equal(targetSourceFile.getInterfaces().length, 1);
|
|
const variableDeclarations = targetSourceFile.getVariableDeclarations();
|
|
assert.equal(variableDeclarations[0].getType().getText(), `FooBar`);
|
|
assert.equal(variableDeclarations[1].getType().getText(), `FooBar`);
|
|
assert.equal(variableDeclarations[2].getType().getText(), `moduleC.Bar`);
|
|
assert.equal(
|
|
variableDeclarations[3].getType().getText(),
|
|
`typeof moduleC.qat`
|
|
);
|
|
assert.equal(
|
|
variableDeclarations[4].getType().getText(),
|
|
`typeof moduleE.process`
|
|
);
|
|
assert.equal(
|
|
variableDeclarations[5].getType().getText(),
|
|
`typeof moduleD.reprocess`
|
|
);
|
|
assert.equal(
|
|
variableDeclarations[6].getType().getText(),
|
|
`typeof moduleC.Bar`
|
|
);
|
|
assert.equal(variableDeclarations.length, 7);
|
|
const typeAliases = targetSourceFile.getTypeAliases();
|
|
assert.equal(typeAliases[0].getName(), "Bar");
|
|
assert.equal(typeAliases[0].getType().getText(), "moduleC.Bar");
|
|
assert.equal(typeAliases.length, 1);
|
|
}
|
|
|
|
function testInlineFiles() {
|
|
const {
|
|
basePath,
|
|
buildPath,
|
|
debug,
|
|
outputSourceFile: targetSourceFile
|
|
} = setupFixtures();
|
|
|
|
inlineFiles({
|
|
basePath,
|
|
debug,
|
|
inline: [`${buildPath}/lib.extra.d.ts`],
|
|
targetSourceFile
|
|
});
|
|
|
|
assert(targetSourceFile.getNamespace("Qat") != null);
|
|
const qatNamespace = targetSourceFile.getNamespaceOrThrow("Qat");
|
|
assert(qatNamespace.getClass("Foo") != null);
|
|
}
|
|
|
|
// TODO author unit tests for `ast_util.ts`
|
|
|
|
function main() {
|
|
console.log("ts_library_builder buildLibraryFlatten");
|
|
buildLibraryFlatten();
|
|
console.log("ts_library_builder buildLibraryMerge");
|
|
buildLibraryMerge();
|
|
console.log("ts_library_builder testInlineFiles");
|
|
testInlineFiles();
|
|
console.log("ts_library_builder ok");
|
|
}
|
|
|
|
main();
|