Skip to content

Commit d05233a

Browse files
authored
Merge pull request #1166 from microsoft/andrueastman/multiDimensionArrays
Validates multidimensional collections scenarios using UntypedNode
2 parents 7782053 + ddfdfed commit d05233a

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

packages/serialization/json/test/common/JsonParseNode.ts

+19
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,11 @@ describe("JsonParseNode", () => {
211211
},
212212
},
213213
},
214+
table: [
215+
[1, 2, 3],
216+
[4, 5, 6],
217+
[7, 8, 9],
218+
],
214219
};
215220

216221
const result = new JsonParseNode(jsonObject).getObjectValue(
@@ -237,5 +242,19 @@ describe("JsonParseNode", () => {
237242
locationProperties["displayName"].getValue(),
238243
"Microsoft Building 25",
239244
);
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+
}
240259
});
241260
});

packages/serialization/json/test/common/untypedTestEntiy.ts

+7
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export interface UntypedTestEntity {
1111
location?: UntypedNode | undefined;
1212
keywords?: UntypedNode | undefined;
1313
detail?: UntypedNode | undefined;
14+
table?: UntypedNode | undefined;
1415
additionalData?: Record<string, unknown>;
1516
}
1617

@@ -46,6 +47,11 @@ export function deserializeUntypedTestEntity(
4647
createUntypedNodeFromDiscriminatorValue,
4748
);
4849
},
50+
table: (n) => {
51+
untypedTestEntity.table = n.getObjectValue<UntypedNode>(
52+
createUntypedNodeFromDiscriminatorValue,
53+
);
54+
},
4955
};
5056
}
5157

@@ -58,5 +64,6 @@ export function serializeUntypedTestEntity(
5864
writer.writeObjectValue("location", untypedTestEntity.location);
5965
writer.writeObjectValue("keywords", untypedTestEntity.keywords);
6066
writer.writeObjectValue("detail", untypedTestEntity.detail);
67+
writer.writeObjectValue("table", untypedTestEntity.table);
6168
writer.writeAdditionalData(untypedTestEntity.additionalData);
6269
}

0 commit comments

Comments
 (0)