mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
win basic - fix issue when serializing PSObjects in result (#48860)
This commit is contained in:
parent
e0af9b2ce0
commit
098b18e846
2 changed files with 38 additions and 5 deletions
|
@ -338,6 +338,16 @@ namespace Ansible.Basic
|
|||
|
||||
public static string ToJson(object obj)
|
||||
{
|
||||
// Using PowerShell to serialize the JSON is preferable over the native .NET libraries as it handles
|
||||
// PS Objects a lot better than the alternatives. In case we are debugging in Visual Studio we have a
|
||||
// fallback to the other libraries as we won't be dealing with PowerShell objects there.
|
||||
if (Runspace.DefaultRunspace != null)
|
||||
{
|
||||
PSObject rawOut = ScriptBlock.Create("ConvertTo-Json -InputObject $args[0] -Depth 99 -Compress").Invoke(obj)[0];
|
||||
return rawOut.BaseObject as string;
|
||||
}
|
||||
else
|
||||
{
|
||||
#if CORECLR
|
||||
return JsonConvert.SerializeObject(obj);
|
||||
#else
|
||||
|
@ -347,6 +357,7 @@ namespace Ansible.Basic
|
|||
return jss.Serialize(obj);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
public static IDictionary GetParams(string[] args)
|
||||
{
|
||||
|
|
|
@ -1927,6 +1927,28 @@ test_no_log - Invoked with:
|
|||
$actual.changed | Assert-Equals -Expected $false
|
||||
$actual.invocation | Assert-DictionaryEquals -Expected @{module_args = $complex_args}
|
||||
}
|
||||
|
||||
"PS Object in return result" = {
|
||||
$m = [Ansible.Basic.AnsibleModule]::Create(@(), @{})
|
||||
|
||||
# JavaScriptSerializer struggles with PS Object like PSCustomObject due to circular references, this test makes
|
||||
# sure we can handle these types of objects without bombing
|
||||
$m.Result.output = [PSCustomObject]@{a = "a"; b = "b"}
|
||||
$failed = $true
|
||||
try {
|
||||
$m.ExitJson()
|
||||
} catch [System.Management.Automation.RuntimeException] {
|
||||
$failed = $true
|
||||
$_.Exception.Message | Assert-Equals -Expected "exit: 0"
|
||||
$actual = [Ansible.Basic.AnsibleModule]::FromJson($_test_out)
|
||||
}
|
||||
$failed | Assert-Equals -Expected $true
|
||||
|
||||
$actual.Keys.Count | Assert-Equals -Expected 3
|
||||
$actual.changed | Assert-Equals -Expected $false
|
||||
$actual.invocation | Assert-DictionaryEquals -Expected @{module_args = @{}}
|
||||
$actual.output | Assert-DictionaryEquals -Expected @{a = "a"; b = "b"}
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue