mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-19 23:00:22 -07:00
Ansible.Basic - fix when deserialising a json string of an array (#55691)
* Ansible.Basic - fix when deserialising a json string of an array * Added changelog fragment
This commit is contained in:
parent
b9af6847c2
commit
5228133d74
4 changed files with 36 additions and 3 deletions
|
@ -58,7 +58,7 @@ Function Assert-DictionaryEquals {
|
|||
|
||||
if ($actual_value -is [System.Collections.IDictionary]) {
|
||||
$actual_value | Assert-DictionaryEquals -Expected $expected_value
|
||||
} elseif ($actual_value -is [System.Collections.ArrayList]) {
|
||||
} elseif ($actual_value -is [System.Collections.ArrayList] -or $actual_value -is [Array]) {
|
||||
for ($i = 0; $i -lt $actual_value.Count; $i++) {
|
||||
$actual_entry = $actual_value[$i]
|
||||
$expected_entry = $expected_value[$i]
|
||||
|
@ -2347,6 +2347,23 @@ test_no_log - Invoked with:
|
|||
$actual.invocation | Assert-DictionaryEquals -Expected @{module_args = @{}}
|
||||
$actual.output | Assert-DictionaryEquals -Expected @{a = "a"; b = "b"}
|
||||
}
|
||||
|
||||
"String json array to object" = {
|
||||
$input_json = '["abc", "def"]'
|
||||
$actual = [Ansible.Basic.AnsibleModule]::FromJson($input_json)
|
||||
$actual -is [Array] | Assert-Equals -Expected $true
|
||||
$actual.Length | Assert-Equals -Expected 2
|
||||
$actual[0] | Assert-Equals -Expected "abc"
|
||||
$actual[1] | Assert-Equals -Expected "def"
|
||||
}
|
||||
|
||||
"String json array of dictionaries to object" = {
|
||||
$input_json = '[{"abc":"def"}]'
|
||||
$actual = [Ansible.Basic.AnsibleModule]::FromJson($input_json)
|
||||
$actual -is [Array] | Assert-Equals -Expected $true
|
||||
$actual.Length | Assert-Equals -Expected 1
|
||||
$actual[0] | Assert-DictionaryEquals -Expected @{"abc" = "def"}
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue