-
-
Notifications
You must be signed in to change notification settings - Fork 818
[legacy-framework] Fixes field names being modified during model generation #708
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+26
−32
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c11fca1
fix: Generates models for pluralized property, making pluralized name…
toshi1127 4fa0ee3
fix: Prevent automatic conversion of field names
toshi1127 2350301
chore: delete pluralPascal and pluralCamel
toshi1127 974a7b1
fix: Prevent automatic conversion of field names
toshi1127 1dea9cc
Merge branch 'canary' into fix/issue-696
aem File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -6,20 +6,18 @@ describe("Field model", () => { | |
| expect(Field.parse("userId: int").toString()).toMatchInlineSnapshot(`"userId int"`) | ||
| }) | ||
|
|
||
| it("generates models for pluralized property, making pluralized name fields", () => { | ||
| expect(Field.parse("names:string").toString()).toMatchInlineSnapshot(`"names String"`) | ||
| expect(Field.parse("userIds: int").toString()).toMatchInlineSnapshot(`"userIds int"`) | ||
| }) | ||
|
|
||
| it("serializes optional types", () => { | ||
| expect(Field.parse("name:string?").toString()).toMatchInlineSnapshot(`"name String?"`) | ||
| }) | ||
|
|
||
| it("serializes list types, pluralizing fields", () => { | ||
| expect(Field.parse("users:int[]").toString()).toMatchInlineSnapshot(`"users Int[]"`) | ||
| expect(Field.parse("user:int[]").toString()).toMatchInlineSnapshot(`"users Int[]"`) | ||
| }) | ||
|
|
||
| it("pluralizes lists and makes single fields singular", () => { | ||
| expect(Field.parse("name:string").toString()).toEqual(Field.parse("names:string").toString()) | ||
| expect(Field.parse("userIds:string[]").toString()).toEqual( | ||
| Field.parse("userId:string[]").toString(), | ||
| ) | ||
| expect(Field.parse("user:int[]").toString()).toMatchInlineSnapshot(`"user Int[]"`) | ||
| }) | ||
|
|
||
| it("appends simple attributes", () => { | ||
|
|
@@ -62,21 +60,21 @@ describe("Field model", () => { | |
|
|
||
| it("handles hasOne relations", () => { | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Prevent automatic conversion of field name when creating a Field with relationships, such as |
||
| expect(Field.parse("hasOne:task").toString()).toMatchInlineSnapshot(`"task Task"`) | ||
| expect(Field.parse("hasOne:tasks").toString()).toMatchInlineSnapshot(`"task Task"`) | ||
| expect(Field.parse("hasOne:tasks").toString()).toMatchInlineSnapshot(`"tasks Task"`) | ||
| expect(Field.parse("hasOne:task?").toString()).toMatchInlineSnapshot(`"task Task?"`) | ||
| expect(Field.parse("hasOne:tasks?").toString()).toMatchInlineSnapshot(`"task Task?"`) | ||
| expect(Field.parse("hasOne:tasks?").toString()).toMatchInlineSnapshot(`"tasks Task?"`) | ||
| // list identifier should be ignored for singular relations | ||
| expect(Field.parse("hasOne:task[]").toString()).toMatchInlineSnapshot(`"task Task"`) | ||
| expect(Field.parse("hasOne:tasks[]").toString()).toMatchInlineSnapshot(`"task Task"`) | ||
| expect(Field.parse("hasOne:tasks[]").toString()).toMatchInlineSnapshot(`"tasks Task"`) | ||
| }) | ||
|
|
||
| it("handles hasMany relations", () => { | ||
| expect(Field.parse("hasMany:task").toString()).toMatchInlineSnapshot(`"tasks Task[]"`) | ||
| expect(Field.parse("hasMany:task").toString()).toMatchInlineSnapshot(`"task Task[]"`) | ||
| expect(Field.parse("hasMany:tasks").toString()).toMatchInlineSnapshot(`"tasks Task[]"`) | ||
| expect(Field.parse("hasMany:task[]").toString()).toMatchInlineSnapshot(`"tasks Task[]"`) | ||
| expect(Field.parse("hasMany:task[]").toString()).toMatchInlineSnapshot(`"task Task[]"`) | ||
| expect(Field.parse("hasMany:tasks[]").toString()).toMatchInlineSnapshot(`"tasks Task[]"`) | ||
| // can't have optional lists, should erase optional param | ||
| expect(Field.parse("hasMany:task?").toString()).toMatchInlineSnapshot(`"tasks Task[]"`) | ||
| expect(Field.parse("hasMany:task?").toString()).toMatchInlineSnapshot(`"task Task[]"`) | ||
| }) | ||
|
|
||
| it("handles belongsTo relations", () => { | ||
|
|
@@ -85,21 +83,21 @@ describe("Field model", () => { | |
| taskId Int" | ||
| `) | ||
| expect(Field.parse("belongsTo:tasks").join("\n")).toMatchInlineSnapshot(` | ||
| "task Task @relation(fields: [taskId], references: [id]) | ||
| taskId Int" | ||
| "tasks Task @relation(fields: [tasksId], references: [id]) | ||
| tasksId Int" | ||
| `) | ||
| expect(Field.parse("belongsTo:task?").join("\n")).toMatchInlineSnapshot(` | ||
| "task Task? @relation(fields: [taskId], references: [id]) | ||
| taskId Int?" | ||
| `) | ||
| expect(Field.parse("belongsTo:tasks?").join("\n")).toMatchInlineSnapshot(` | ||
| "task Task? @relation(fields: [taskId], references: [id]) | ||
| taskId Int?" | ||
| "tasks Task? @relation(fields: [tasksId], references: [id]) | ||
| tasksId Int?" | ||
| `) | ||
| // ignore list directives, not a valid relation type | ||
| expect(Field.parse("belongsTo:tasks[]").join("\n")).toMatchInlineSnapshot(` | ||
| "task Task @relation(fields: [taskId], references: [id]) | ||
| taskId Int" | ||
| "tasks Task @relation(fields: [tasksId], references: [id]) | ||
| tasksId Int" | ||
| `) | ||
| }) | ||
| }) | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prevent field name from being converted to plural forms when creating a Field with a list type property.