Skip to content

Commit e54508c

Browse files
Merge pull request #186 from gabriel-samfira/fix-psobject-serialization
Pass non mapping to base serializer
2 parents c4a5e9b + 680b726 commit e54508c

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

Tests/powershell-yaml.Tests.ps1

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2016-2024 Cloudbase Solutions Srl
1+
# Copyright 2016-2024 Cloudbase Solutions Srl
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License"); you may
44
# not use this file except in compliance with the License. You may obtain
@@ -190,6 +190,22 @@ children:
190190
}
191191

192192
Describe "Test PSCustomObject wrapped values are serialized correctly" {
193+
Context "A PSCustomObject that contains an array of PSObjects" {
194+
It "Should serialize correctly" {
195+
$expected = @"
196+
yamlList:
197+
- item1
198+
- item2
199+
200+
"@
201+
$data = ConvertFrom-YAml "yamlList: []" | ConvertTo-JSON -Depth 3 | ConvertFrom-Json
202+
$jsData = '["item1", "item2"]'
203+
$data.yamlList = $jsData | ConvertFrom-Json
204+
205+
$asYaml = ConvertTo-Yaml $data
206+
Assert-Equivalent -Options $compareStrictly -Expected $expected -Actual $asYaml
207+
}
208+
}
193209
Context "A PSCustomObject containing nested PSCustomObjects" {
194210
It "Should serialize correctly" {
195211
$expectBigInt = [System.Numerics.BigInteger]::Parse("9999999999999999999999999999999999999999999999999")
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

src/PowerShellYamlSerializer.cs

+4
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,10 @@ public object ReadYaml(IParser parser, Type type, ObjectDeserializer rootDeseria
124124

125125
public void WriteYaml(IEmitter emitter, object value, Type type, ObjectSerializer serializer) {
126126
var psObj = (PSObject)value;
127+
if (!typeof(IDictionary).IsAssignableFrom(psObj.BaseObject.GetType()) && !typeof(PSCustomObject).IsAssignableFrom(psObj.BaseObject.GetType())) {
128+
serializer(psObj.BaseObject, psObj.BaseObject.GetType());
129+
return;
130+
}
127131
var mappingStyle = this.useFlowStyle ? MappingStyle.Flow : MappingStyle.Block;
128132
emitter.Emit(new MappingStart(AnchorName.Empty, TagName.Empty, true, mappingStyle));
129133
foreach (var prop in psObj.Properties) {

0 commit comments

Comments
 (0)