Skip to content

Commit 46a80b8

Browse files
authored
* Add failing test case for YousefED#341 * Fix user defined schema overrides for type aliases Closes YousefED#341
1 parent 052a320 commit 46a80b8

File tree

4 files changed

+60
-0
lines changed

4 files changed

+60
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
interface All {}
2+
3+
type Some = Partial<All>;
4+
5+
interface MyObject {
6+
some?: Some;
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"definitions": {
4+
"Some": {
5+
"type": "string"
6+
}
7+
},
8+
"properties": {
9+
"some": {
10+
"$ref": "#/definitions/Some"
11+
}
12+
},
13+
"type": "object"
14+
}

test/schema.test.ts

+26
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,32 @@ describe("interfaces", () => {
108108
assert.deepEqual(schema.definitions!["MySubObject"], schemaOverride);
109109
}
110110
});
111+
it("should ignore type aliases that have schema overrides", () => {
112+
const program = TJS.getProgramFromFiles([resolve(BASE + "type-alias-schema-override/main.ts")]);
113+
const generator = TJS.buildGenerator(program);
114+
assert(generator !== null);
115+
if (generator !== null) {
116+
const schemaOverride: TJS.Definition = { type: "string" };
117+
118+
generator.setSchemaOverride("Some", schemaOverride);
119+
const schema = generator.getSchemaForSymbol("MyObject");
120+
121+
assert.deepEqual(schema, {
122+
$schema: "http://json-schema.org/draft-07/schema#",
123+
definitions: {
124+
Some: {
125+
type: "string"
126+
}
127+
},
128+
properties: {
129+
some: {
130+
$ref: "#/definitions/Some"
131+
}
132+
},
133+
type: "object"
134+
});
135+
}
136+
});
111137
});
112138

113139
describe("schema", () => {

typescript-json-schema.ts

+13
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,18 @@ export class JsonSchemaGenerator {
358358
*/
359359
private inheritingTypes: { [baseName: string]: string[] };
360360

361+
/**
362+
* This map holds references to all reffed definition., including schema
363+
* overrides and generateddefinitions.
364+
*/
361365
private reffedDefinitions: { [key: string]: Definition } = {};
362366

367+
/**
368+
* This map only holds explicit schema overrides. This helps differentiate between
369+
* user defined schema overrides and generated definitions.
370+
*/
371+
private schemaOverrides = new Map<string, Definition>();
372+
363373
/**
364374
* This is a set of all the user-defined validation keywords.
365375
*/
@@ -1007,6 +1017,8 @@ export class JsonSchemaGenerator {
10071017
const sourceFile = getSourceFile(sym);
10081018
const relativePath = path.relative(process.cwd(), sourceFile.fileName);
10091019
fullTypeName = `${this.getTypeName(typ)}.${generateHashOfNode(getCanonicalDeclaration(sym), relativePath)}`;
1020+
} else if (reffedType && this.schemaOverrides.has(reffedType.escapedName as string)) {
1021+
fullTypeName = reffedType.escapedName as string;
10101022
} else {
10111023
fullTypeName = this.getTypeName(typ);
10121024
}
@@ -1096,6 +1108,7 @@ export class JsonSchemaGenerator {
10961108

10971109
public setSchemaOverride(symbolName: string, schema: Definition) {
10981110
this.reffedDefinitions[symbolName] = schema;
1111+
this.schemaOverrides.set(symbolName, schema);
10991112
}
11001113

11011114
public getSchemaForSymbol(symbolName: string, includeReffedDefinitions: boolean = true): Definition {

0 commit comments

Comments
 (0)