|
|
@ -56,6 +56,25 @@ def test_parse_clixml_multiple_streams():
|
|
|
|
assert actual == expected
|
|
|
|
assert actual == expected
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_parse_clixml_multiple_elements():
|
|
|
|
|
|
|
|
multiple_elements = b'#< CLIXML\r\n#< CLIXML\r\n<Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04">' \
|
|
|
|
|
|
|
|
b'<Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS>' \
|
|
|
|
|
|
|
|
b'<I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil />' \
|
|
|
|
|
|
|
|
b'<PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj>' \
|
|
|
|
|
|
|
|
b'<S S="Error">Error 1</S></Objs>' \
|
|
|
|
|
|
|
|
b'<Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0">' \
|
|
|
|
|
|
|
|
b'<TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS>' \
|
|
|
|
|
|
|
|
b'<I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil />' \
|
|
|
|
|
|
|
|
b'<PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj>' \
|
|
|
|
|
|
|
|
b'<Obj S="progress" RefId="1"><TNRef RefId="0" /><MS><I64 N="SourceId">2</I64>' \
|
|
|
|
|
|
|
|
b'<PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil />' \
|
|
|
|
|
|
|
|
b'<PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj>' \
|
|
|
|
|
|
|
|
b'<S S="Error">Error 2</S></Objs>'
|
|
|
|
|
|
|
|
expected = b"Error 1\r\nError 2"
|
|
|
|
|
|
|
|
actual = _parse_clixml(multiple_elements)
|
|
|
|
|
|
|
|
assert actual == expected
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_join_path_unc():
|
|
|
|
def test_join_path_unc():
|
|
|
|
pwsh = ShellModule()
|
|
|
|
pwsh = ShellModule()
|
|
|
|
unc_path_parts = ['\\\\host\\share\\dir1\\\\dir2\\', '\\dir3/dir4', 'dir5', 'dir6\\']
|
|
|
|
unc_path_parts = ['\\\\host\\share\\dir1\\\\dir2\\', '\\dir3/dir4', 'dir5', 'dir6\\']
|
|
|
|