-
Notifications
You must be signed in to change notification settings - Fork 349
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
638 additions
and
9 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
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 @@ | ||
useExactTypes=false |
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,13 @@ | ||
import { UserRule, Nested_Function } from "./test-1110"; | ||
|
||
describe("test-1110", () => { | ||
it("Able to create a partial user rule with reserved word messages", () => { | ||
const simple: UserRule = UserRule.fromPartial({ UUID: "foo" }); | ||
expect(simple).toBeTruthy(); | ||
}); | ||
|
||
it("built in handling should only be done to top level", () => { | ||
const nestedFunction: Nested_Function = Nested_Function.fromPartial({}); | ||
expect(nestedFunction).toBeTruthy(); | ||
}); | ||
}); |
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,36 @@ | ||
syntax = "proto3"; | ||
|
||
message UserRule { | ||
// just some fake rule for testing | ||
string UUID = 1 [json_name = "uuid"]; | ||
} | ||
|
||
message Object { | ||
string namespace = 1; | ||
string name = 2; | ||
} | ||
|
||
message Boolean { | ||
string namespace = 1; | ||
string name = 2; | ||
} | ||
|
||
message Symbol { | ||
string namespace = 1; | ||
string name = 2; | ||
} | ||
|
||
message Function { | ||
string namespace = 1; | ||
string name = 2; | ||
} | ||
|
||
message Nested { | ||
message Function { | ||
string namespace = 1; | ||
string name = 2; | ||
} | ||
} | ||
|
||
service APIService { | ||
} |
Oops, something went wrong.