-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
1 parent
5e23b4f
commit 898dced
Showing
18 changed files
with
597 additions
and
396 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -11,3 +11,4 @@ deno/lib/playground.ts | |
.eslintcache | ||
workspace.code-workspace | ||
.netlify | ||
bun.lockb |
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,6 @@ | ||
module.exports = { | ||
presets: [ | ||
["@babel/preset-env", { targets: { node: "current" } }], | ||
"@babel/preset-typescript", | ||
], | ||
}; |
File renamed without changes.
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
File renamed without changes.
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,76 @@ | ||
import * as z from "../index.ts"; | ||
|
||
export const filePath = __filename; | ||
|
||
// z.object() | ||
|
||
export const Test = z.object({ | ||
f1: z.number(), | ||
}); | ||
|
||
export type Test = z.infer<typeof Test>; | ||
|
||
export const instanceOfTest: Test = { | ||
f1: 1, | ||
}; | ||
|
||
// z.object().merge() | ||
|
||
export const TestMerge = z | ||
.object({ | ||
f2: z.string().optional(), | ||
}) | ||
.merge(Test); | ||
|
||
export type TestMerge = z.infer<typeof TestMerge>; | ||
|
||
export const instanceOfTestMerge: TestMerge = { | ||
f1: 1, | ||
f2: "string", | ||
}; | ||
|
||
// z.union() | ||
|
||
export const TestUnion = z.union([ | ||
z.object({ | ||
f2: z.string().optional(), | ||
}), | ||
Test, | ||
]); | ||
|
||
export type TestUnion = z.infer<typeof TestUnion>; | ||
|
||
export const instanceOfTestUnion: TestUnion = { | ||
f1: 1, | ||
f2: "string", | ||
}; | ||
|
||
// z.object().partial() | ||
|
||
export const TestPartial = Test.partial(); | ||
|
||
export type TestPartial = z.infer<typeof TestPartial>; | ||
|
||
export const instanceOfTestPartial: TestPartial = { | ||
f1: 1, | ||
}; | ||
|
||
// z.object().pick() | ||
|
||
export const TestPick = TestMerge.pick({ f1: true }); | ||
|
||
export type TestPick = z.infer<typeof TestPick>; | ||
|
||
export const instanceOfTestPick: TestPick = { | ||
f1: 1, | ||
}; | ||
|
||
// z.object().omit() | ||
|
||
export const TestOmit = TestMerge.omit({ f2: true }); | ||
|
||
export type TestOmit = z.infer<typeof TestOmit>; | ||
|
||
export const instanceOfTestOmit: TestOmit = { | ||
f1: 1, | ||
}; |
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,209 @@ | ||
// @ts-ignore TS6133 | ||
import { expect } from "https://deno.land/x/expect@v0.2.6/mod.ts"; | ||
const test = Deno.test; | ||
// import path from "path"; | ||
// import { Node, Project, SyntaxKind } from "ts-morph"; | ||
|
||
// import { filePath } from "./language-server.source"; | ||
|
||
// The following tool is helpful for understanding the TypeScript AST associated with these tests: | ||
// https://ts-ast-viewer.com/ (just copy the contents of languageServerFeatures.source into the viewer) | ||
|
||
test("", () => {}); | ||
// describe("Executing Go To Definition (and therefore Find Usages and Rename Refactoring) using an IDE works on inferred object properties", () => { | ||
// // Compile file developmentEnvironment.source | ||
// const project = new Project({ | ||
// tsConfigFilePath: path.join(__dirname, "..", "..", "tsconfig.json"), | ||
// skipAddingFilesFromTsConfig: true, | ||
// }); | ||
// const sourceFile = project.addSourceFileAtPath(filePath); | ||
|
||
// test("works for object properties inferred from z.object()", () => { | ||
// // Find usage of Test.f1 property | ||
// const instanceVariable = | ||
// sourceFile.getVariableDeclarationOrThrow("instanceOfTest"); | ||
// const propertyBeingAssigned = getPropertyBeingAssigned( | ||
// instanceVariable, | ||
// "f1" | ||
// ); | ||
|
||
// // Find definition of Test.f1 property | ||
// const definitionOfProperty = propertyBeingAssigned?.getDefinitionNodes()[0]; | ||
// const parentOfProperty = definitionOfProperty?.getFirstAncestorByKind( | ||
// SyntaxKind.VariableDeclaration | ||
// ); | ||
|
||
// // Assert that find definition returned the Zod definition of Test | ||
// expect(definitionOfProperty?.getText()).toEqual("f1: z.number()"); | ||
// expect(parentOfProperty?.getName()).toEqual("Test"); | ||
// }); | ||
|
||
// // test("works for first object properties inferred from z.object().merge()", () => { | ||
// // // Find usage of TestMerge.f1 property | ||
// // const instanceVariable = sourceFile.getVariableDeclarationOrThrow( | ||
// // "instanceOfTestMerge" | ||
// // ); | ||
// // const propertyBeingAssigned = getPropertyBeingAssigned( | ||
// // instanceVariable, | ||
// // "f1" | ||
// // ); | ||
|
||
// // // Find definition of TestMerge.f1 property | ||
// // const definitionOfProperty = propertyBeingAssigned?.getDefinitionNodes()[0]; | ||
// // const parentOfProperty = definitionOfProperty?.getFirstAncestorByKind( | ||
// // SyntaxKind.VariableDeclaration | ||
// // ); | ||
|
||
// // // Assert that find definition returned the Zod definition of Test | ||
// // expect(definitionOfProperty?.getText()).toEqual("f1: z.number()"); | ||
// // expect(parentOfProperty?.getName()).toEqual("Test"); | ||
// // }); | ||
|
||
// // test("works for second object properties inferred from z.object().merge()", () => { | ||
// // // Find usage of TestMerge.f2 property | ||
// // const instanceVariable = sourceFile.getVariableDeclarationOrThrow( | ||
// // "instanceOfTestMerge" | ||
// // ); | ||
// // const propertyBeingAssigned = getPropertyBeingAssigned( | ||
// // instanceVariable, | ||
// // "f2" | ||
// // ); | ||
|
||
// // // Find definition of TestMerge.f2 property | ||
// // const definitionOfProperty = propertyBeingAssigned?.getDefinitionNodes()[0]; | ||
// // const parentOfProperty = definitionOfProperty?.getFirstAncestorByKind( | ||
// // SyntaxKind.VariableDeclaration | ||
// // ); | ||
|
||
// // // Assert that find definition returned the Zod definition of TestMerge | ||
// // expect(definitionOfProperty?.getText()).toEqual( | ||
// // "f2: z.string().optional()" | ||
// // ); | ||
// // expect(parentOfProperty?.getName()).toEqual("TestMerge"); | ||
// // }); | ||
|
||
// test("works for first object properties inferred from z.union()", () => { | ||
// // Find usage of TestUnion.f1 property | ||
// const instanceVariable = sourceFile.getVariableDeclarationOrThrow( | ||
// "instanceOfTestUnion" | ||
// ); | ||
// const propertyBeingAssigned = getPropertyBeingAssigned( | ||
// instanceVariable, | ||
// "f1" | ||
// ); | ||
|
||
// // Find definition of TestUnion.f1 property | ||
// const definitionOfProperty = propertyBeingAssigned?.getDefinitionNodes()[0]; | ||
// const parentOfProperty = definitionOfProperty?.getFirstAncestorByKind( | ||
// SyntaxKind.VariableDeclaration | ||
// ); | ||
|
||
// // Assert that find definition returned the Zod definition of Test | ||
// expect(definitionOfProperty?.getText()).toEqual("f1: z.number()"); | ||
// expect(parentOfProperty?.getName()).toEqual("Test"); | ||
// }); | ||
|
||
// test("works for second object properties inferred from z.union()", () => { | ||
// // Find usage of TestUnion.f2 property | ||
// const instanceVariable = sourceFile.getVariableDeclarationOrThrow( | ||
// "instanceOfTestUnion" | ||
// ); | ||
// const propertyBeingAssigned = getPropertyBeingAssigned( | ||
// instanceVariable, | ||
// "f2" | ||
// ); | ||
|
||
// // Find definition of TestUnion.f2 property | ||
// const definitionOfProperty = propertyBeingAssigned?.getDefinitionNodes()[0]; | ||
// const parentOfProperty = definitionOfProperty?.getFirstAncestorByKind( | ||
// SyntaxKind.VariableDeclaration | ||
// ); | ||
|
||
// // Assert that find definition returned the Zod definition of TestUnion | ||
// expect(definitionOfProperty?.getText()).toEqual( | ||
// "f2: z.string().optional()" | ||
// ); | ||
// expect(parentOfProperty?.getName()).toEqual("TestUnion"); | ||
// }); | ||
|
||
// test("works for object properties inferred from z.object().partial()", () => { | ||
// // Find usage of TestPartial.f1 property | ||
// const instanceVariable = sourceFile.getVariableDeclarationOrThrow( | ||
// "instanceOfTestPartial" | ||
// ); | ||
// const propertyBeingAssigned = getPropertyBeingAssigned( | ||
// instanceVariable, | ||
// "f1" | ||
// ); | ||
|
||
// // Find definition of TestPartial.f1 property | ||
// const definitionOfProperty = propertyBeingAssigned?.getDefinitionNodes()[0]; | ||
// const parentOfProperty = definitionOfProperty?.getFirstAncestorByKind( | ||
// SyntaxKind.VariableDeclaration | ||
// ); | ||
|
||
// // Assert that find definition returned the Zod definition of Test | ||
// expect(definitionOfProperty?.getText()).toEqual("f1: z.number()"); | ||
// expect(parentOfProperty?.getName()).toEqual("Test"); | ||
// }); | ||
|
||
// test("works for object properties inferred from z.object().pick()", () => { | ||
// // Find usage of TestPick.f1 property | ||
// const instanceVariable = | ||
// sourceFile.getVariableDeclarationOrThrow("instanceOfTestPick"); | ||
// const propertyBeingAssigned = getPropertyBeingAssigned( | ||
// instanceVariable, | ||
// "f1" | ||
// ); | ||
|
||
// // Find definition of TestPick.f1 property | ||
// const definitionOfProperty = propertyBeingAssigned?.getDefinitionNodes()[0]; | ||
// const parentOfProperty = definitionOfProperty?.getFirstAncestorByKind( | ||
// SyntaxKind.VariableDeclaration | ||
// ); | ||
|
||
// // Assert that find definition returned the Zod definition of Test | ||
// expect(definitionOfProperty?.getText()).toEqual("f1: z.number()"); | ||
// expect(parentOfProperty?.getName()).toEqual("Test"); | ||
// }); | ||
|
||
// test("works for object properties inferred from z.object().omit()", () => { | ||
// // Find usage of TestOmit.f1 property | ||
// const instanceVariable = | ||
// sourceFile.getVariableDeclarationOrThrow("instanceOfTestOmit"); | ||
// const propertyBeingAssigned = getPropertyBeingAssigned( | ||
// instanceVariable, | ||
// "f1" | ||
// ); | ||
|
||
// // Find definition of TestOmit.f1 property | ||
// const definitionOfProperty = propertyBeingAssigned?.getDefinitionNodes()[0]; | ||
// const parentOfProperty = definitionOfProperty?.getFirstAncestorByKind( | ||
// SyntaxKind.VariableDeclaration | ||
// ); | ||
|
||
// // Assert that find definition returned the Zod definition of Test | ||
// expect(definitionOfProperty?.getText()).toEqual("f1: z.number()"); | ||
// expect(parentOfProperty?.getName()).toEqual("Test"); | ||
// }); | ||
// }); | ||
|
||
// const getPropertyBeingAssigned = (node: Node, name: string) => { | ||
// const propertyAssignment = node.forEachDescendant((descendent) => | ||
// Node.isPropertyAssignment(descendent) && descendent.getName() == name | ||
// ? descendent | ||
// : undefined | ||
// ); | ||
|
||
// if (propertyAssignment == null) | ||
// fail(`Could not find property assignment with name ${name}`); | ||
|
||
// const propertyLiteral = propertyAssignment.getFirstDescendantByKind( | ||
// SyntaxKind.Identifier | ||
// ); | ||
|
||
// if (propertyLiteral == null) | ||
// fail(`Could not find property literal with name ${name}`); | ||
|
||
// return propertyLiteral; | ||
// }; |
Oops, something went wrong.