Server IP : 85.214.239.14 / Your IP : 3.129.20.112 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/root/proc/2/task/2/root/proc/2/task/2/root/lib/python3/dist-packages/winrm/tests/ |
Upload File : |
# coding=utf-8 import re import pytest xfail = pytest.mark.xfail def test_unicode_roundtrip(protocol_real): shell_id = protocol_real.open_shell(codepage=65001) command_id = protocol_real.run_command( shell_id, u'PowerShell', arguments=['-Command', 'Write-Host', u'こんにちは']) try: std_out, std_err, status_code = protocol_real.get_command_output( shell_id, command_id) assert status_code == 0 assert len(std_err) == 0 # std_out will be returned as UTF-8, but PEP8 won't let us store a # UTF-8 string literal, so we'll convert it on the fly assert std_out == (u'こんにちは\n'.encode('utf-8')) finally: protocol_real.cleanup_command(shell_id, command_id) protocol_real.close_shell(shell_id) def test_open_shell_and_close_shell(protocol_real): shell_id = protocol_real.open_shell() assert re.match('^\w{8}-\w{4}-\w{4}-\w{4}-\w{12}$', shell_id) protocol_real.close_shell(shell_id) def test_run_command_with_arguments_and_cleanup_command(protocol_real): shell_id = protocol_real.open_shell() command_id = protocol_real.run_command(shell_id, 'ipconfig', ['/all']) assert re.match('^\w{8}-\w{4}-\w{4}-\w{4}-\w{12}$', command_id) protocol_real.cleanup_command(shell_id, command_id) protocol_real.close_shell(shell_id) def test_run_command_without_arguments_and_cleanup_command(protocol_real): shell_id = protocol_real.open_shell() command_id = protocol_real.run_command(shell_id, 'hostname') assert re.match('^\w{8}-\w{4}-\w{4}-\w{4}-\w{12}$', command_id) protocol_real.cleanup_command(shell_id, command_id) protocol_real.close_shell(shell_id) def test_get_command_output(protocol_real): shell_id = protocol_real.open_shell() command_id = protocol_real.run_command(shell_id, 'ipconfig', ['/all']) std_out, std_err, status_code = protocol_real.get_command_output( shell_id, command_id) assert status_code == 0 assert b'Windows IP Configuration' in std_out assert len(std_err) == 0 protocol_real.cleanup_command(shell_id, command_id) protocol_real.close_shell(shell_id) def test_run_command_taking_more_than_operation_timeout_sec(protocol_real): shell_id = protocol_real.open_shell() command_id = protocol_real.run_command( shell_id, 'PowerShell -Command Start-Sleep -s {0}'.format(protocol_real.operation_timeout_sec * 2)) assert re.match('^\w{8}-\w{4}-\w{4}-\w{4}-\w{12}$', command_id) std_out, std_err, status_code = protocol_real.get_command_output( shell_id, command_id) assert status_code == 0 assert len(std_err) == 0 protocol_real.cleanup_command(shell_id, command_id) protocol_real.close_shell(shell_id) @xfail() def test_set_timeout(protocol_real): raise NotImplementedError() @xfail() def test_set_max_env_size(protocol_real): raise NotImplementedError() @xfail() def test_set_locale(protocol_real): raise NotImplementedError()