File tree 2 files changed +26
-0
lines changed
packages/serialization/json/test/common
2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -211,6 +211,11 @@ describe("JsonParseNode", () => {
211
211
} ,
212
212
} ,
213
213
} ,
214
+ table : [
215
+ [ 1 , 2 , 3 ] ,
216
+ [ 4 , 5 , 6 ] ,
217
+ [ 7 , 8 , 9 ] ,
218
+ ] ,
214
219
} ;
215
220
216
221
const result = new JsonParseNode ( jsonObject ) . getObjectValue (
@@ -237,5 +242,19 @@ describe("JsonParseNode", () => {
237
242
locationProperties [ "displayName" ] . getValue ( ) ,
238
243
"Microsoft Building 25" ,
239
244
) ;
245
+ const table = result . table as UntypedNode ;
246
+ if ( isUntypedArray ( table ) ) {
247
+ table . getValue ( ) . forEach ( ( row ) => {
248
+ if ( isUntypedArray ( row ) ) {
249
+ row . getValue ( ) . forEach ( ( cell ) => {
250
+ assert . isTrue ( isUntypedNumber ( cell ) ) ;
251
+ } ) ;
252
+ } else {
253
+ assert . fail ( "Expected row to be an array" ) ;
254
+ }
255
+ } ) ;
256
+ } else {
257
+ assert . fail ( "Expected table to be an array" ) ;
258
+ }
240
259
} ) ;
241
260
} ) ;
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ export interface UntypedTestEntity {
11
11
location ?: UntypedNode | undefined ;
12
12
keywords ?: UntypedNode | undefined ;
13
13
detail ?: UntypedNode | undefined ;
14
+ table ?: UntypedNode | undefined ;
14
15
additionalData ?: Record < string , unknown > ;
15
16
}
16
17
@@ -46,6 +47,11 @@ export function deserializeUntypedTestEntity(
46
47
createUntypedNodeFromDiscriminatorValue ,
47
48
) ;
48
49
} ,
50
+ table : ( n ) => {
51
+ untypedTestEntity . table = n . getObjectValue < UntypedNode > (
52
+ createUntypedNodeFromDiscriminatorValue ,
53
+ ) ;
54
+ } ,
49
55
} ;
50
56
}
51
57
@@ -58,5 +64,6 @@ export function serializeUntypedTestEntity(
58
64
writer . writeObjectValue ( "location" , untypedTestEntity . location ) ;
59
65
writer . writeObjectValue ( "keywords" , untypedTestEntity . keywords ) ;
60
66
writer . writeObjectValue ( "detail" , untypedTestEntity . detail ) ;
67
+ writer . writeObjectValue ( "table" , untypedTestEntity . table ) ;
61
68
writer . writeAdditionalData ( untypedTestEntity . additionalData ) ;
62
69
}
You can’t perform that action at this time.
0 commit comments